df = pd.read_csv("data/results.csv")::: {.cell _cell_guid=‘b1076dfc-b9ad-4769-8c92-a6c4dae69d19’ _uuid=‘8f2839f25d086af736a60e9eeb907d3b93b6e0e5’ execution=‘{“iopub.execute_input”:“2022-11-15T20:56:12.986388Z”,“iopub.status.busy”:“2022-11-15T20:56:12.985409Z”,“iopub.status.idle”:“2022-11-15T20:56:13.010933Z”,“shell.execute_reply”:“2022-11-15T20:56:13.009703Z”}’ papermill=‘{“duration”:0.057886,“end_time”:“2022-11-15T20:56:13.013715”,“exception”:false,“start_time”:“2022-11-15T20:56:12.955829”,“status”:“completed”}’ tags=‘[]’ execution_count=1}
import numpy as np
import pandas as pd
import re :::
The Project
The idea here is to simulate the FIFA 2022 World Cup games with machine learning, in order to predict the competition’s winner. The project uses two datasets: International football results from 1872 to 2022 and FIFA World Ranking 1992-2022
I’ve used the same logic that was used in the Soccer World Cup 2018 Winner notebook, that models the problem as binary classification one. I used this to make more easy to analyze model’s results, so the model predicts between win from home team and draw/win from away team. Then, to remove the advantage of away team, I predicted the results changing teams from away and home (because there is not home advantage in World Cup), and used as probabilities the mean of the two predictions.
Data Preparation
Here, I’ll prepare the data to apply feature engineering methods that will create the database in order to apply Machine Learning algorithms.
df.head()| date | home_team | away_team | home_score | away_score | tournament | city | country | neutral | |
|---|---|---|---|---|---|---|---|---|---|
| 0 | 1872-11-30 | Scotland | England | 0.0 | 0.0 | Friendly | Glasgow | Scotland | False |
| 1 | 1873-03-08 | England | Scotland | 4.0 | 2.0 | Friendly | London | England | False |
| 2 | 1874-03-07 | Scotland | England | 2.0 | 1.0 | Friendly | Glasgow | Scotland | False |
| 3 | 1875-03-06 | England | Scotland | 2.0 | 2.0 | Friendly | London | England | False |
| 4 | 1876-03-04 | Scotland | England | 3.0 | 0.0 | Friendly | Glasgow | Scotland | False |
df.dtypesdate object
home_team object
away_team object
home_score float64
away_score float64
tournament object
city object
country object
neutral bool
dtype: object
df["date"] = pd.to_datetime(df["date"])df.isna().sum()date 0
home_team 0
away_team 0
home_score 1
away_score 1
tournament 0
city 0
country 0
neutral 0
dtype: int64
df = df.dropna()The dataset used will be the FIFA Games between 2018, from after the 2018 World Cup to the last games before the 2022 World Cup. The idea is to analyze just the games played at the preparation and classification to WC.
df[(df["date"] >= "2018-6-14")].reset_index(drop=True)['date'].min()Timestamp('2018-06-14 00:00:00')
df = df.query("date >= '2018-6-14'").reset_index(drop=True)df.home_team.value_counts()United States 45
Mexico 41
Japan 39
Brazil 39
South Korea 38
..
Bhutan 1
Tonga 1
Alderney 1
Saint Helena 1
Chameria 1
Name: home_team, Length: 247, dtype: int64
rank = pd.read_csv("data/fifa_ranking-2022-10-06.csv")rank.head()| rank | country_full | country_abrv | total_points | previous_points | rank_change | confederation | rank_date | |
|---|---|---|---|---|---|---|---|---|
| 0 | 1 | Germany | GER | 57.0 | 0.0 | 0 | UEFA | 1992-12-31 |
| 1 | 96 | Syria | SYR | 11.0 | 0.0 | 0 | AFC | 1992-12-31 |
| 2 | 97 | Burkina Faso | BFA | 11.0 | 0.0 | 0 | CAF | 1992-12-31 |
| 3 | 99 | Latvia | LVA | 10.0 | 0.0 | 0 | UEFA | 1992-12-31 |
| 4 | 100 | Burundi | BDI | 10.0 | 0.0 | 0 | CAF | 1992-12-31 |
rank["rank_date"] = pd.to_datetime(rank["rank_date"])
rank = rank.query("rank_date >= '2018-6-14'").reset_index(drop=True)Some teams in the World Cup have different names in the ranking’s dataset. So, it’s needed to adjust.
rank["country_full"] = rank["country_full"].str.replace("IR Iran", "Iran").str.replace("Korea Republic", "South Korea").str.replace("USA", "United States")The merge is made in order to get a dataset FIFA games and its rankings.
O método ffill propaga a última informação até a próxima informação válida
rank = rank.set_index(['rank_date']).groupby(['country_full'], group_keys=False).resample('D').first().fillna(method='ffill').reset_index()rank.head()| rank_date | rank | country_full | country_abrv | total_points | previous_points | rank_change | confederation | |
|---|---|---|---|---|---|---|---|---|
| 0 | 2018-07-01 | 146.0 | Afghanistan | AFG | 1161.0 | 1161.0 | 0.0 | AFC |
| 1 | 2018-07-02 | 146.0 | Afghanistan | AFG | 1161.0 | 1161.0 | 0.0 | AFC |
| 2 | 2018-07-03 | 146.0 | Afghanistan | AFG | 1161.0 | 1161.0 | 0.0 | AFC |
| 3 | 2018-07-04 | 146.0 | Afghanistan | AFG | 1161.0 | 1161.0 | 0.0 | AFC |
| 4 | 2018-07-05 | 146.0 | Afghanistan | AFG | 1161.0 | 1161.0 | 0.0 | AFC |
Little feature engineering
Categorizando os times no ranking da FIFA de acordo com sua pontuação, assim a pontuação se torna menos importante, mas sim o nível global da seleção.
Os níveis serão:
- Classe S => Mais de 1700 pontos
- Classe S- => Entre 1600 e 1700 pontos
- Classe A => Entre 1400 e 1600 pontos
- Classe B => Entre 1200 e 1400 pontos
- Classe C => Entre 1000 e 1200 pontos
- Classe D => Entre 0 e 1000 pontos
conditions = [
(rank['total_points'].le(1000)),
(rank['total_points'].gt(1000) & rank['total_points'].le(1200)),
(rank['total_points'].gt(1200) & rank['total_points'].le(1400)),
(rank['total_points'].gt(1400) & rank['total_points'].le(1600)),
(rank['total_points'].gt(1600) & rank['total_points'].le(1700)),
(rank['total_points'].gt(1700)),
]
choices = ['Classe D', 'Classe C', 'Classe B', 'Classe A', 'Classe S-', 'Classe S',]
rank['country_classification'] = np.select(conditions, choices)df_wc_ranked = df.merge(rank[["country_full", "total_points", "previous_points", "rank", "rank_change", "rank_date", "country_classification"]], left_on=["date", "home_team"], right_on=["rank_date", "country_full"]).drop(["rank_date", "country_full"], axis=1)
df_wc_ranked = df_wc_ranked.merge(rank[["country_full", "total_points", "previous_points", "rank", "rank_change", "rank_date", "country_classification"]], left_on=["date", "away_team"], right_on=["rank_date", "country_full"], suffixes=("_home", "_away")).drop(["rank_date", "country_full"], axis=1)df_wc_ranked[(df_wc_ranked.home_team == "Brazil") | (df_wc_ranked.away_team == "Brazil")].tail(10)| date | home_team | away_team | home_score | away_score | tournament | city | country | neutral | total_points_home | previous_points_home | rank_home | rank_change_home | country_classification_home | total_points_away | previous_points_away | rank_away | rank_change_away | country_classification_away | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2557 | 2021-11-11 | Brazil | Colombia | 1.0 | 0.0 | FIFA World Cup qualification | São Paulo | Brazil | False | 1820.36 | 1811.73 | 2.0 | 0.0 | Classe S | 1618.76 | 1618.40 | 16.0 | 0.0 | Classe S- |
| 2658 | 2021-11-16 | Argentina | Brazil | 0.0 | 0.0 | FIFA World Cup qualification | San Juan | Argentina | False | 1738.79 | 1725.31 | 6.0 | 0.0 | Classe S | 1820.36 | 1811.73 | 2.0 | 0.0 | Classe S |
| 2766 | 2022-01-27 | Ecuador | Brazil | 1.0 | 1.0 | FIFA World Cup qualification | Quito | Ecuador | False | 1448.27 | 1448.74 | 46.0 | 0.0 | Classe A | 1826.35 | 1826.35 | 2.0 | 0.0 | Classe S |
| 2799 | 2022-02-01 | Brazil | Paraguay | 4.0 | 0.0 | FIFA World Cup qualification | Belo Horizonte | Brazil | False | 1826.35 | 1826.35 | 2.0 | 0.0 | Classe S | 1454.52 | 1454.52 | 43.0 | 0.0 | Classe A |
| 2840 | 2022-03-24 | Brazil | Chile | 4.0 | 0.0 | FIFA World Cup qualification | Rio de Janeiro | Brazil | False | 1823.42 | 1826.35 | 2.0 | 0.0 | Classe S | 1543.16 | 1543.42 | 26.0 | 2.0 | Classe A |
| 2923 | 2022-03-29 | Bolivia | Brazil | 0.0 | 4.0 | FIFA World Cup qualification | La Paz | Bolivia | False | 1308.12 | 1324.21 | 76.0 | -1.0 | Classe B | 1823.42 | 1826.35 | 2.0 | 0.0 | Classe S |
| 3015 | 2022-06-02 | South Korea | Brazil | 1.0 | 5.0 | Friendly | Seoul | South Korea | False | 1519.54 | 1522.85 | 29.0 | 0.0 | Classe A | 1832.69 | 1823.42 | 1.0 | -1.0 | Classe S |
| 3083 | 2022-06-06 | Japan | Brazil | 0.0 | 1.0 | Friendly | Tokyo | Japan | False | 1553.44 | 1549.82 | 23.0 | 0.0 | Classe A | 1832.69 | 1823.42 | 1.0 | -1.0 | Classe S |
| 3260 | 2022-09-23 | Brazil | Ghana | 3.0 | 0.0 | Friendly | Le Havre | France | True | 1837.56 | 1837.56 | 1.0 | 0.0 | Classe S | 1393.47 | 1389.68 | 60.0 | 0.0 | Classe B |
| 3329 | 2022-09-27 | Brazil | Tunisia | 5.0 | 1.0 | Friendly | Paris | France | True | 1837.56 | 1837.56 | 1.0 | 0.0 | Classe S | 1507.86 | 1507.86 | 30.0 | 0.0 | Classe A |
Agora, nós temos os dados para criar as variáveis independentes baseadas nos resultados dos jogos e ranking da FIFA, sendo as principais variáveis: o número de gols das equipes, sua colocação no ranking da FIFA e o tipo do jogo.
Feature Engineering
Com a definição central do DataFrame vamos criar algumas variáveis que tem impacto na predição dos jogos:
- Pontos feitos em jogos anteriores
- Gols marcados e sofridos em partidas anterioees
- Importância da partida (amistoso ou não)
- Posição dos times no ranking da FIFA
- Evolução do ranking das seleções
- Gols sofridos e marcados pelo ranking da equipe
Começaremos definindo os vencedores e perdedores, assim como seus pontos, em cada partida.
df = df_wc_rankeddef result_finder(home, away):
if home > away:
return pd.Series([0, 3, 0])
if home < away:
return pd.Series([1, 0, 3])
else:
return pd.Series([2, 1, 1])
results = df.apply(lambda x: result_finder(x["home_score"], x["away_score"]), axis=1)df[["result", "home_team_points", "away_team_points"]] = resultsO padrão do futebol atual é utilizar 3 pontos para vitória, 1 ponto para empate e 0 para derrota. O ranking da FIFA é construído com essa base, no entanto a FIFA utiliza pontuações específicas para cada nível de partida e o adversário enfrentado. Assim a pontuação da seleção no ranking com sua posição deve ser negativamente correlacionado.
import seaborn as sns
import matplotlib.pyplot as plt
plt.figure(figsize=(15, 10))
sns.heatmap(df[["total_points_home", "rank_home", "total_points_away", "rank_away"]].corr(), annot=True)
plt.show()
Começaremos criando variáveis que iram ajudar a criar outras variáveis: Diferença de Ranking, Diferença de Gols, pontos ganho no jogo pelo ranking do time (quanto maior o ranking, mais vale os pontos). Precisaremos criar as mesmas variáveis para os times da casa, quanto para o time de fora.
df["rank_dif"] = df["rank_home"] - df["rank_away"]
df["sg"] = df["home_score"] - df["away_score"]
df["points_home_by_rank"] = df["home_team_points"]/df["rank_away"]
df["points_away_by_rank"] = df["away_team_points"]/df["rank_home"]Para melhorar a criação das features, vamos separar o dataset em dois: time de casa e timede fora, para podermos mensurar o valor dos jogos. Depois disso vamos juntá-los novamente, obtendo o dataset original. Somente para otimizar o processo de criação das features/variáveis.
home_team = df[["date", "home_team", "home_score", "away_score", "rank_home", "rank_away","rank_change_home", "total_points_home", "result", "rank_dif", "points_home_by_rank", "home_team_points", "country_classification_home"]]
away_team = df[["date", "away_team", "away_score", "home_score", "rank_away", "rank_home","rank_change_away", "total_points_away", "result", "rank_dif", "points_away_by_rank", "away_team_points", "country_classification_away"]]home_team.columns = [h.replace("home_", "").replace("_home", "").replace("away_", "suf_").replace("_away", "_suf") for h in home_team.columns]
away_team.columns = [a.replace("away_", "").replace("_away", "").replace("home_", "suf_").replace("_home", "_suf") for a in away_team.columns]home_team.head()| date | team | score | suf_score | rank | rank_suf | rank_change | total_points | result | rank_dif | points_by_rank | team_points | country_classification | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 2018-07-01 | Russia | 1.0 | 1.0 | 49.0 | 6.0 | -12.0 | 1758.0 | 2 | 43.0 | 0.166667 | 1 | Classe S |
| 1 | 2018-07-01 | Croatia | 1.0 | 1.0 | 12.0 | 15.0 | -6.0 | 2036.0 | 2 | -3.0 | 0.066667 | 1 | Classe S |
| 2 | 2018-07-02 | Brazil | 2.0 | 0.0 | 4.0 | 10.0 | 1.0 | 2160.0 | 0 | -6.0 | 0.300000 | 3 | Classe S |
| 3 | 2018-07-02 | Belgium | 3.0 | 2.0 | 5.0 | 41.0 | -1.0 | 2124.0 | 0 | -36.0 | 0.073171 | 3 | Classe S |
| 4 | 2018-07-03 | Sweden | 1.0 | 0.0 | 21.0 | 8.0 | -1.0 | 1955.0 | 0 | 13.0 | 0.375000 | 3 | Classe S |
team_stats = home_team.append(away_team)#.sort_values("date")C:\Users\user\AppData\Local\Temp\ipykernel_7456\275322566.py:1: FutureWarning: The frame.append method is deprecated and will be removed from pandas in a future version. Use pandas.concat instead.
team_stats = home_team.append(away_team)#.sort_values("date")
team_stats.head()| date | team | score | suf_score | rank | rank_suf | rank_change | total_points | result | rank_dif | points_by_rank | team_points | country_classification | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 2018-07-01 | Russia | 1.0 | 1.0 | 49.0 | 6.0 | -12.0 | 1758.0 | 2 | 43.0 | 0.166667 | 1 | Classe S |
| 1 | 2018-07-01 | Croatia | 1.0 | 1.0 | 12.0 | 15.0 | -6.0 | 2036.0 | 2 | -3.0 | 0.066667 | 1 | Classe S |
| 2 | 2018-07-02 | Brazil | 2.0 | 0.0 | 4.0 | 10.0 | 1.0 | 2160.0 | 0 | -6.0 | 0.300000 | 3 | Classe S |
| 3 | 2018-07-02 | Belgium | 3.0 | 2.0 | 5.0 | 41.0 | -1.0 | 2124.0 | 0 | -36.0 | 0.073171 | 3 | Classe S |
| 4 | 2018-07-03 | Sweden | 1.0 | 0.0 | 21.0 | 8.0 | -1.0 | 1955.0 | 0 | 13.0 | 0.375000 | 3 | Classe S |
print(f'Para o feature engineering ficar mais simples, tinhamos um dataframe das partidas com {home_team.shape[0]} linhas e agora temos um dataframe com {team_stats.shape[0]}, sendo cada seleção uma linha, sem ser as partidas.')Para o feature engineering ficar mais simples, tinhamos um dataframe das partidas com 3364 linhas e agora temos um dataframe com 6728, sendo cada seleção uma linha, sem ser as partidas.
#this column will be used to calculate features for simulation
team_stats_raw = team_stats.copy()Agora, podemos criar algumas variáveis independentes, como:
- Média de gols da seleção no Ciclo da Copa do Mundo.
- Média de gols no time nos últimos 5 jogos.
- Média de gols sofridos do time nos últimos 5 jogos.
- Média de gols sofridos do time no Ciclo da Copa do Mundo.
- Média do Ranking da Fifa dos times enfrentados no Ciclo da Copa do Mundo.
- Média do Ranking da Fifa dos times adversários nos últimos 5 jogos.
- Pontuação FIFA conquistada no Ranking
- Pontuação FIFA conquistada no Ranking nos últimos jogos.
- Média de pontuação conquistada no ciclo da copa
- Média de pontuação conquistada nos últimos 5 jogos
- Média de pontos conquistados pelo ranking do time adversário no ciclo da copa
- Média de pontos conquistados pelo ranking do time adversário nos últimos 5 jogos
team_stats| date | team | score | suf_score | rank | rank_suf | rank_change | total_points | result | rank_dif | points_by_rank | team_points | country_classification | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 2018-07-01 | Russia | 1.0 | 1.0 | 49.0 | 6.0 | -12.0 | 1758.00 | 2 | 43.0 | 0.166667 | 1 | Classe S |
| 1 | 2018-07-01 | Croatia | 1.0 | 1.0 | 12.0 | 15.0 | -6.0 | 2036.00 | 2 | -3.0 | 0.066667 | 1 | Classe S |
| 2 | 2018-07-02 | Brazil | 2.0 | 0.0 | 4.0 | 10.0 | 1.0 | 2160.00 | 0 | -6.0 | 0.300000 | 3 | Classe S |
| 3 | 2018-07-02 | Belgium | 3.0 | 2.0 | 5.0 | 41.0 | -1.0 | 2124.00 | 0 | -36.0 | 0.073171 | 3 | Classe S |
| 4 | 2018-07-03 | Sweden | 1.0 | 0.0 | 21.0 | 8.0 | -1.0 | 1955.00 | 0 | 13.0 | 0.375000 | 3 | Classe S |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 3359 | 2022-09-27 | Iceland | 1.0 | 1.0 | 63.0 | 66.0 | 0.0 | 1379.61 | 2 | 3.0 | 0.015152 | 1 | Classe B |
| 3360 | 2022-09-27 | Serbia | 2.0 | 0.0 | 25.0 | 36.0 | 0.0 | 1549.53 | 1 | 11.0 | 0.083333 | 3 | Classe A |
| 3361 | 2022-09-27 | Slovenia | 1.0 | 1.0 | 65.0 | 20.0 | 0.0 | 1372.48 | 2 | -45.0 | 0.050000 | 1 | Classe B |
| 3362 | 2022-09-27 | Cyprus | 1.0 | 5.0 | 108.0 | 106.0 | 1.0 | 1180.52 | 0 | -2.0 | 0.000000 | 0 | Classe C |
| 3363 | 2022-09-27 | Northern Ireland | 1.0 | 3.0 | 58.0 | 49.0 | 0.0 | 1399.10 | 0 | -9.0 | 0.000000 | 0 | Classe B |
6728 rows × 13 columns
team_stats.shape[0]/23364.0
team_stats.iloc[int(team_stats.shape[0]/2)]date 2018-07-01 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 6.0
rank_suf 49.0
rank_change -2.0
total_points 2104.0
result 2
rank_dif 43.0
points_by_rank 0.020408
team_points 1
country_classification Classe S
Name: 0, dtype: object
team_stats.head<bound method NDFrame.head of date team score suf_score rank rank_suf \
0 2018-07-01 Russia 1.0 1.0 49.0 6.0
1 2018-07-01 Croatia 1.0 1.0 12.0 15.0
2 2018-07-02 Brazil 2.0 0.0 4.0 10.0
3 2018-07-02 Belgium 3.0 2.0 5.0 41.0
4 2018-07-03 Sweden 1.0 0.0 21.0 8.0
... ... ... ... ... ... ...
3359 2022-09-27 Iceland 1.0 1.0 63.0 66.0
3360 2022-09-27 Serbia 2.0 0.0 25.0 36.0
3361 2022-09-27 Slovenia 1.0 1.0 65.0 20.0
3362 2022-09-27 Cyprus 1.0 5.0 108.0 106.0
3363 2022-09-27 Northern Ireland 1.0 3.0 58.0 49.0
rank_change total_points result rank_dif points_by_rank \
0 -12.0 1758.00 2 43.0 0.166667
1 -6.0 2036.00 2 -3.0 0.066667
2 1.0 2160.00 0 -6.0 0.300000
3 -1.0 2124.00 0 -36.0 0.073171
4 -1.0 1955.00 0 13.0 0.375000
... ... ... ... ... ...
3359 0.0 1379.61 2 3.0 0.015152
3360 0.0 1549.53 1 11.0 0.083333
3361 0.0 1372.48 2 -45.0 0.050000
3362 1.0 1180.52 0 -2.0 0.000000
3363 0.0 1399.10 0 -9.0 0.000000
team_points country_classification
0 1 Classe S
1 1 Classe S
2 3 Classe S
3 3 Classe S
4 3 Classe S
... ... ...
3359 1 Classe B
3360 3 Classe A
3361 1 Classe B
3362 0 Classe C
3363 0 Classe B
[6728 rows x 13 columns]>
for index, row in team_stats.iterrows():
print(row)date 2018-07-01 00:00:00
team Russia
score 1.0
suf_score 1.0
rank 49.0
rank_suf 6.0
rank_change -12.0
total_points 1758.0
result 2
rank_dif 43.0
points_by_rank 0.166667
team_points 1
country_classification Classe S
Name: 0, dtype: object
date 2018-07-01 00:00:00
team Croatia
score 1.0
suf_score 1.0
rank 12.0
rank_suf 15.0
rank_change -6.0
total_points 2036.0
result 2
rank_dif -3.0
points_by_rank 0.066667
team_points 1
country_classification Classe S
Name: 1, dtype: object
date 2018-07-02 00:00:00
team Brazil
score 2.0
suf_score 0.0
rank 4.0
rank_suf 10.0
rank_change 1.0
total_points 2160.0
result 0
rank_dif -6.0
points_by_rank 0.3
team_points 3
country_classification Classe S
Name: 2, dtype: object
date 2018-07-02 00:00:00
team Belgium
score 3.0
suf_score 2.0
rank 5.0
rank_suf 41.0
rank_change -1.0
total_points 2124.0
result 0
rank_dif -36.0
points_by_rank 0.073171
team_points 3
country_classification Classe S
Name: 3, dtype: object
date 2018-07-03 00:00:00
team Sweden
score 1.0
suf_score 0.0
rank 21.0
rank_suf 8.0
rank_change -1.0
total_points 1955.0
result 0
rank_dif 13.0
points_by_rank 0.375
team_points 3
country_classification Classe S
Name: 4, dtype: object
date 2018-07-03 00:00:00
team Colombia
score 1.0
suf_score 1.0
rank 17.0
rank_suf 7.0
rank_change 3.0
total_points 1998.0
result 2
rank_dif 10.0
points_by_rank 0.142857
team_points 1
country_classification Classe S
Name: 5, dtype: object
date 2018-07-05 00:00:00
team Malaysia
score 1.0
suf_score 0.0
rank 171.0
rank_suf 167.0
rank_change 0.0
total_points 1004.0
result 0
rank_dif 4.0
points_by_rank 0.017964
team_points 3
country_classification Classe C
Name: 6, dtype: object
date 2018-07-06 00:00:00
team Uruguay
score 0.0
suf_score 2.0
rank 14.0
rank_suf 2.0
rank_change -3.0
total_points 2017.0
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 7, dtype: object
date 2018-07-06 00:00:00
team Brazil
score 1.0
suf_score 2.0
rank 4.0
rank_suf 5.0
rank_change 1.0
total_points 2160.0
result 1
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 8, dtype: object
date 2018-07-07 00:00:00
team Sweden
score 0.0
suf_score 2.0
rank 21.0
rank_suf 7.0
rank_change -1.0
total_points 1955.0
result 1
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 9, dtype: object
date 2018-07-07 00:00:00
team Russia
score 2.0
suf_score 2.0
rank 49.0
rank_suf 12.0
rank_change -12.0
total_points 1758.0
result 2
rank_dif 37.0
points_by_rank 0.083333
team_points 1
country_classification Classe S
Name: 10, dtype: object
date 2018-07-10 00:00:00
team France
score 1.0
suf_score 0.0
rank 2.0
rank_suf 5.0
rank_change -2.0
total_points 2164.0
result 0
rank_dif -3.0
points_by_rank 0.6
team_points 3
country_classification Classe S
Name: 11, dtype: object
date 2018-07-11 00:00:00
team Croatia
score 2.0
suf_score 1.0
rank 12.0
rank_suf 7.0
rank_change -6.0
total_points 2036.0
result 0
rank_dif 5.0
points_by_rank 0.428571
team_points 3
country_classification Classe S
Name: 12, dtype: object
date 2018-07-14 00:00:00
team Belgium
score 2.0
suf_score 0.0
rank 5.0
rank_suf 7.0
rank_change -1.0
total_points 2124.0
result 0
rank_dif -2.0
points_by_rank 0.428571
team_points 3
country_classification Classe S
Name: 13, dtype: object
date 2018-07-15 00:00:00
team France
score 4.0
suf_score 2.0
rank 2.0
rank_suf 12.0
rank_change -2.0
total_points 2164.0
result 0
rank_dif -10.0
points_by_rank 0.25
team_points 3
country_classification Classe S
Name: 14, dtype: object
date 2018-07-22 00:00:00
team Liberia
score 0.0
suf_score 0.0
rank 151.0
rank_suf 113.0
rank_change 0.0
total_points 1126.0
result 2
rank_dif 38.0
points_by_rank 0.00885
team_points 1
country_classification Classe C
Name: 15, dtype: object
date 2018-08-04 00:00:00
team Belize
score 1.0
suf_score 0.0
rank 163.0
rank_suf 162.0
rank_change 0.0
total_points 1052.0
result 0
rank_dif 1.0
points_by_rank 0.018519
team_points 3
country_classification Classe C
Name: 16, dtype: object
date 2018-08-04 00:00:00
team Palestine
score 0.0
suf_score 3.0
rank 101.0
rank_suf 84.0
rank_change 0.0
total_points 1449.0
result 1
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 17, dtype: object
date 2018-08-15 00:00:00
team Guatemala
score 3.0
suf_score 0.0
rank 133.0
rank_suf 168.0
rank_change 0.0
total_points 1263.0
result 0
rank_dif -35.0
points_by_rank 0.017857
team_points 3
country_classification Classe B
Name: 18, dtype: object
date 2018-08-18 00:00:00
team Andorra
score 0.0
suf_score 0.0
rank 130.0
rank_suf 77.0
rank_change 0.0
total_points 1120.0
result 2
rank_dif 53.0
points_by_rank 0.012987
team_points 1
country_classification Classe C
Name: 19, dtype: object
date 2018-08-18 00:00:00
team Grenada
score 1.0
suf_score 5.0
rank 168.0
rank_suf 54.0
rank_change 0.0
total_points 980.0
result 1
rank_dif 114.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 20, dtype: object
date 2018-08-18 00:00:00
team Guatemala
score 1.0
suf_score 0.0
rank 146.0
rank_suf 181.0
rank_change 0.0
total_points 1064.0
result 0
rank_dif -35.0
points_by_rank 0.016575
team_points 3
country_classification Classe C
Name: 21, dtype: object
date 2018-08-20 00:00:00
team Barbados
score 2.0
suf_score 2.0
rank 160.0
rank_suf 54.0
rank_change 0.0
total_points 1005.0
result 2
rank_dif 106.0
points_by_rank 0.018519
team_points 1
country_classification Classe C
Name: 22, dtype: object
date 2018-08-26 00:00:00
team Barbados
score 0.0
suf_score 0.0
rank 160.0
rank_suf 181.0
rank_change 0.0
total_points 1005.0
result 2
rank_dif -21.0
points_by_rank 0.005525
team_points 1
country_classification Classe C
Name: 23, dtype: object
date 2018-08-29 00:00:00
team Bangladesh
score 0.0
suf_score 1.0
rank 194.0
rank_suf 200.0
rank_change 0.0
total_points 904.0
result 1
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 24, dtype: object
date 2018-08-29 00:00:00
team Barbados
score 0.0
suf_score 2.0
rank 160.0
rank_suf 181.0
rank_change 0.0
total_points 1005.0
result 1
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 25, dtype: object
date 2018-08-29 00:00:00
team Macau
score 1.0
suf_score 4.0
rank 185.0
rank_suf 143.0
rank_change 0.0
total_points 924.0
result 1
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 26, dtype: object
date 2018-09-02 00:00:00
team Ethiopia
score 1.0
suf_score 1.0
rank 151.0
rank_suf 148.0
rank_change 0.0
total_points 1044.0
result 2
rank_dif 3.0
points_by_rank 0.006757
team_points 1
country_classification Classe C
Name: 27, dtype: object
date 2018-09-02 00:00:00
team Mongolia
score 4.0
suf_score 1.0
rank 186.0
rank_suf 185.0
rank_change 0.0
total_points 920.0
result 0
rank_dif 1.0
points_by_rank 0.016216
team_points 3
country_classification Classe D
Name: 28, dtype: object
date 2018-09-04 00:00:00
team Macau
score 2.0
suf_score 0.0
rank 185.0
rank_suf 190.0
rank_change 0.0
total_points 924.0
result 0
rank_dif -5.0
points_by_rank 0.015789
team_points 3
country_classification Classe D
Name: 29, dtype: object
date 2018-09-04 00:00:00
team Nepal
score 1.0
suf_score 2.0
rank 161.0
rank_suf 201.0
rank_change 0.0
total_points 1004.0
result 1
rank_dif -40.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 30, dtype: object
date 2018-09-04 00:00:00
team Bangladesh
score 2.0
suf_score 0.0
rank 194.0
rank_suf 183.0
rank_change 0.0
total_points 904.0
result 0
rank_dif 11.0
points_by_rank 0.016393
team_points 3
country_classification Classe D
Name: 31, dtype: object
date 2018-09-05 00:00:00
team Fiji
score 1.0
suf_score 1.0
rank 165.0
rank_suf 143.0
rank_change 0.0
total_points 985.0
result 2
rank_dif 22.0
points_by_rank 0.006993
team_points 1
country_classification Classe D
Name: 32, dtype: object
date 2018-09-05 00:00:00
team Slovakia
score 3.0
suf_score 0.0
rank 26.0
rank_suf 9.0
rank_change -2.0
total_points 1493.0
result 0
rank_dif 17.0
points_by_rank 0.333333
team_points 3
country_classification Classe A
Name: 33, dtype: object
date 2018-09-05 00:00:00
team India
score 2.0
suf_score 0.0
rank 96.0
rank_suf 200.0
rank_change -1.0
total_points 1242.0
result 0
rank_dif -104.0
points_by_rank 0.015
team_points 3
country_classification Classe B
Name: 34, dtype: object
date 2018-09-06 00:00:00
team Germany
score 0.0
suf_score 0.0
rank 15.0
rank_suf 1.0
rank_change 14.0
total_points 1561.0
result 2
rank_dif 14.0
points_by_rank 1.0
team_points 1
country_classification Classe A
Name: 35, dtype: object
date 2018-09-06 00:00:00
team Czech Republic
score 1.0
suf_score 2.0
rank 44.0
rank_suf 35.0
rank_change -2.0
total_points 1430.0
result 1
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 36, dtype: object
date 2018-09-06 00:00:00
team Wales
score 4.0
suf_score 1.0
rank 19.0
rank_suf 29.0
rank_change 1.0
total_points 1536.0
result 0
rank_dif -10.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 37, dtype: object
date 2018-09-06 00:00:00
team Norway
score 2.0
suf_score 0.0
rank 53.0
rank_suf 87.0
rank_change 0.0
total_points 1406.0
result 0
rank_dif -34.0
points_by_rank 0.034483
team_points 3
country_classification Classe A
Name: 38, dtype: object
date 2018-09-06 00:00:00
team Slovenia
score 1.0
suf_score 2.0
rank 55.0
rank_suf 47.0
rank_change -1.0
total_points 1392.0
result 1
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 39, dtype: object
date 2018-09-06 00:00:00
team Kazakhstan
score 0.0
suf_score 2.0
rank 116.0
rank_suf 96.0
rank_change -1.0
total_points 1167.0
result 1
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 40, dtype: object
date 2018-09-06 00:00:00
team Latvia
score 0.0
suf_score 0.0
rank 129.0
rank_suf 130.0
rank_change 0.0
total_points 1122.0
result 2
rank_dif -1.0
points_by_rank 0.007692
team_points 1
country_classification Classe C
Name: 41, dtype: object
date 2018-09-06 00:00:00
team Armenia
score 2.0
suf_score 1.0
rank 100.0
rank_suf 180.0
rank_change 0.0
total_points 1227.0
result 0
rank_dif -80.0
points_by_rank 0.016667
team_points 3
country_classification Classe B
Name: 42, dtype: object
date 2018-09-06 00:00:00
team Austria
score 2.0
suf_score 0.0
rank 23.0
rank_suf 13.0
rank_change -3.0
total_points 1502.0
result 0
rank_dif 10.0
points_by_rank 0.230769
team_points 3
country_classification Classe A
Name: 43, dtype: object
date 2018-09-06 00:00:00
team Bahrain
score 1.0
suf_score 1.0
rank 113.0
rank_suf 115.0
rank_change 0.0
total_points 1180.0
result 2
rank_dif -2.0
points_by_rank 0.008696
team_points 1
country_classification Classe C
Name: 44, dtype: object
date 2018-09-06 00:00:00
team Jordan
score 0.0
suf_score 1.0
rank 110.0
rank_suf 79.0
rank_change 0.0
total_points 1192.0
result 1
rank_dif 31.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 45, dtype: object
date 2018-09-06 00:00:00
team Netherlands
score 2.0
suf_score 1.0
rank 17.0
rank_suf 20.0
rank_change 0.0
total_points 1540.0
result 0
rank_dif -3.0
points_by_rank 0.15
team_points 3
country_classification Classe A
Name: 46, dtype: object
date 2018-09-06 00:00:00
team Portugal
score 1.0
suf_score 1.0
rank 7.0
rank_suf 4.0
rank_change 3.0
total_points 1599.0
result 2
rank_dif 3.0
points_by_rank 0.25
team_points 1
country_classification Classe A
Name: 47, dtype: object
date 2018-09-06 00:00:00
team Trinidad and Tobago
score 2.0
suf_score 0.0
rank 91.0
rank_suf 77.0
rank_change 0.0
total_points 1264.0
result 0
rank_dif 14.0
points_by_rank 0.038961
team_points 3
country_classification Classe B
Name: 48, dtype: object
date 2018-09-06 00:00:00
team Uzbekistan
score 1.0
suf_score 1.0
rank 95.0
rank_suf 73.0
rank_change 0.0
total_points 1247.0
result 2
rank_dif 22.0
points_by_rank 0.013699
team_points 1
country_classification Classe B
Name: 49, dtype: object
date 2018-09-06 00:00:00
team Mongolia
score 1.0
suf_score 1.0
rank 186.0
rank_suf 190.0
rank_change 0.0
total_points 920.0
result 2
rank_dif -4.0
points_by_rank 0.005263
team_points 1
country_classification Classe D
Name: 50, dtype: object
date 2018-09-06 00:00:00
team Nepal
score 4.0
suf_score 0.0
rank 161.0
rank_suf 183.0
rank_change 0.0
total_points 1004.0
result 0
rank_dif -22.0
points_by_rank 0.016393
team_points 3
country_classification Classe C
Name: 51, dtype: object
date 2018-09-06 00:00:00
team Bangladesh
score 1.0
suf_score 0.0
rank 194.0
rank_suf 201.0
rank_change 0.0
total_points 904.0
result 0
rank_dif -7.0
points_by_rank 0.014925
team_points 3
country_classification Classe D
Name: 52, dtype: object
date 2018-09-06 00:00:00
team Dominica
score 0.0
suf_score 0.0
rank 177.0
rank_suf 153.0
rank_change 0.0
total_points 952.0
result 2
rank_dif 24.0
points_by_rank 0.006536
team_points 1
country_classification Classe D
Name: 53, dtype: object
date 2018-09-06 00:00:00
team Guyana
score 3.0
suf_score 0.0
rank 182.0
rank_suf 160.0
rank_change 0.0
total_points 936.0
result 0
rank_dif 22.0
points_by_rank 0.01875
team_points 3
country_classification Classe D
Name: 54, dtype: object
date 2018-09-07 00:00:00
team Italy
score 1.0
suf_score 1.0
rank 21.0
rank_suf 18.0
rank_change 2.0
total_points 1532.0
result 2
rank_dif 3.0
points_by_rank 0.055556
team_points 1
country_classification Classe A
Name: 55, dtype: object
date 2018-09-07 00:00:00
team Turkey
score 1.0
suf_score 2.0
rank 38.0
rank_suf 49.0
rank_change 0.0
total_points 1455.0
result 1
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 56, dtype: object
date 2018-09-07 00:00:00
team Albania
score 1.0
suf_score 0.0
rank 58.0
rank_suf 93.0
rank_change 0.0
total_points 1384.0
result 0
rank_dif -35.0
points_by_rank 0.032258
team_points 3
country_classification Classe B
Name: 57, dtype: object
date 2018-09-07 00:00:00
team Lithuania
score 0.0
suf_score 1.0
rank 127.0
rank_suf 36.0
rank_change 1.0
total_points 1130.0
result 1
rank_dif 91.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 58, dtype: object
date 2018-09-07 00:00:00
team Romania
score 0.0
suf_score 0.0
rank 28.0
rank_suf 41.0
rank_change -2.0
total_points 1490.0
result 2
rank_dif -13.0
points_by_rank 0.02439
team_points 1
country_classification Classe A
Name: 59, dtype: object
date 2018-09-07 00:00:00
team Faroe Islands
score 3.0
suf_score 1.0
rank 90.0
rank_suf 184.0
rank_change 0.0
total_points 1268.0
result 0
rank_dif -94.0
points_by_rank 0.016304
team_points 3
country_classification Classe B
Name: 60, dtype: object
date 2018-09-07 00:00:00
team Azerbaijan
score 0.0
suf_score 0.0
rank 105.0
rank_suf 141.0
rank_change 0.0
total_points 1207.0
result 2
rank_dif -36.0
points_by_rank 0.007092
team_points 1
country_classification Classe B
Name: 61, dtype: object
date 2018-09-07 00:00:00
team Argentina
score 3.0
suf_score 0.0
rank 11.0
rank_suf 146.0
rank_change 6.0
total_points 1574.0
result 0
rank_dif -135.0
points_by_rank 0.020548
team_points 3
country_classification Classe A
Name: 62, dtype: object
date 2018-09-07 00:00:00
team Ecuador
score 2.0
suf_score 0.0
rank 60.0
rank_suf 54.0
rank_change 0.0
total_points 1376.0
result 0
rank_dif 6.0
points_by_rank 0.055556
team_points 3
country_classification Classe B
Name: 63, dtype: object
date 2018-09-07 00:00:00
team South Korea
score 2.0
suf_score 0.0
rank 57.0
rank_suf 32.0
rank_change 0.0
total_points 1387.0
result 0
rank_dif 25.0
points_by_rank 0.09375
team_points 3
country_classification Classe B
Name: 64, dtype: object
date 2018-09-07 00:00:00
team Mexico
score 1.0
suf_score 4.0
rank 16.0
rank_suf 5.0
rank_change 1.0
total_points 1560.0
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 65, dtype: object
date 2018-09-07 00:00:00
team Qatar
score 1.0
suf_score 0.0
rank 98.0
rank_suf 75.0
rank_change 0.0
total_points 1236.0
result 0
rank_dif 23.0
points_by_rank 0.04
team_points 3
country_classification Classe B
Name: 66, dtype: object
date 2018-09-07 00:00:00
team Scotland
score 0.0
suf_score 4.0
rank 40.0
rank_suf 2.0
rank_change -2.0
total_points 1444.0
result 1
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 67, dtype: object
date 2018-09-07 00:00:00
team Singapore
score 1.0
suf_score 1.0
rank 169.0
rank_suf 155.0
rank_change 0.0
total_points 976.0
result 2
rank_dif 14.0
points_by_rank 0.006452
team_points 1
country_classification Classe D
Name: 68, dtype: object
date 2018-09-07 00:00:00
team United States
score 0.0
suf_score 2.0
rank 22.0
rank_suf 3.0
rank_change -3.0
total_points 1508.0
result 1
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 69, dtype: object
date 2018-09-07 00:00:00
team Venezuela
score 1.0
suf_score 2.0
rank 31.0
rank_suf 14.0
rank_change -2.0
total_points 1476.0
result 1
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 70, dtype: object
date 2018-09-07 00:00:00
team Maldives
score 0.0
suf_score 0.0
rank 150.0
rank_suf 200.0
rank_change 0.0
total_points 1048.0
result 2
rank_dif -50.0
points_by_rank 0.005
team_points 1
country_classification Classe C
Name: 71, dtype: object
date 2018-09-07 00:00:00
team Belize
score 4.0
suf_score 0.0
rank 163.0
rank_suf 206.0
rank_change 0.0
total_points 999.0
result 0
rank_dif -43.0
points_by_rank 0.014563
team_points 3
country_classification Classe D
Name: 72, dtype: object
date 2018-09-08 00:00:00
team Switzerland
score 6.0
suf_score 0.0
rank 8.0
rank_suf 32.0
rank_change 2.0
total_points 1597.0
result 0
rank_dif -24.0
points_by_rank 0.09375
team_points 3
country_classification Classe A
Name: 73, dtype: object
date 2018-09-08 00:00:00
team England
score 1.0
suf_score 2.0
rank 6.0
rank_suf 9.0
rank_change -6.0
total_points 1615.0
result 1
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 74, dtype: object
date 2018-09-08 00:00:00
team Northern Ireland
score 1.0
suf_score 2.0
rank 27.0
rank_suf 39.0
rank_change -2.0
total_points 1492.0
result 1
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 75, dtype: object
date 2018-09-08 00:00:00
team Finland
score 1.0
suf_score 0.0
rank 62.0
rank_suf 51.0
rank_change -1.0
total_points 1364.0
result 0
rank_dif 11.0
points_by_rank 0.058824
team_points 3
country_classification Classe B
Name: 76, dtype: object
date 2018-09-08 00:00:00
team Estonia
score 0.0
suf_score 1.0
rank 94.0
rank_suf 42.0
rank_change 0.0
total_points 1250.0
result 1
rank_dif 52.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 77, dtype: object
date 2018-09-08 00:00:00
team Belarus
score 5.0
suf_score 0.0
rank 78.0
rank_suf 203.0
rank_change 0.0
total_points 1306.0
result 0
rank_dif -125.0
points_by_rank 0.014778
team_points 3
country_classification Classe B
Name: 78, dtype: object
date 2018-09-08 00:00:00
team Luxembourg
score 4.0
suf_score 0.0
rank 85.0
rank_suf 175.0
rank_change 0.0
total_points 1286.0
result 0
rank_dif -90.0
points_by_rank 0.017143
team_points 3
country_classification Classe B
Name: 79, dtype: object
date 2018-09-08 00:00:00
team Equatorial Guinea
score 1.0
suf_score 0.0
rank 143.0
rank_suf 128.0
rank_change 0.0
total_points 1072.0
result 0
rank_dif 15.0
points_by_rank 0.023438
team_points 3
country_classification Classe C
Name: 80, dtype: object
date 2018-09-08 00:00:00
team Comoros
score 1.0
suf_score 1.0
rank 149.0
rank_suf 47.0
rank_change 0.0
total_points 1052.0
result 2
rank_dif 102.0
points_by_rank 0.021277
team_points 1
country_classification Classe C
Name: 81, dtype: object
date 2018-09-08 00:00:00
team Gabon
score 1.0
suf_score 1.0
rank 86.0
rank_suf 148.0
rank_change 1.0
total_points 1284.0
result 2
rank_dif -62.0
points_by_rank 0.006757
team_points 1
country_classification Classe B
Name: 82, dtype: object
date 2018-09-08 00:00:00
team Gambia
score 1.0
suf_score 1.0
rank 172.0
rank_suf 66.0
rank_change 0.0
total_points 964.0
result 2
rank_dif 106.0
points_by_rank 0.015152
team_points 1
country_classification Classe D
Name: 83, dtype: object
date 2018-09-08 00:00:00
team South Africa
score 0.0
suf_score 0.0
rank 74.0
rank_suf 101.0
rank_change 0.0
total_points 1327.0
result 2
rank_dif -27.0
points_by_rank 0.009901
team_points 1
country_classification Classe B
Name: 84, dtype: object
date 2018-09-08 00:00:00
team Mauritania
score 2.0
suf_score 0.0
rank 106.0
rank_suf 52.0
rank_change -1.0
total_points 1200.0
result 0
rank_dif 54.0
points_by_rank 0.057692
team_points 3
country_classification Classe C
Name: 85, dtype: object
date 2018-09-08 00:00:00
team Egypt
score 6.0
suf_score 0.0
rank 65.0
rank_suf 103.0
rank_change 20.0
total_points 1355.0
result 0
rank_dif -38.0
points_by_rank 0.029126
team_points 3
country_classification Classe B
Name: 86, dtype: object
date 2018-09-08 00:00:00
team Namibia
score 1.0
suf_score 1.0
rank 117.0
rank_suf 76.0
rank_change 1.0
total_points 1166.0
result 2
rank_dif 41.0
points_by_rank 0.013158
team_points 1
country_classification Classe C
Name: 87, dtype: object
date 2018-09-08 00:00:00
team Uganda
score 0.0
suf_score 0.0
rank 82.0
rank_suf 140.0
rank_change 0.0
total_points 1296.0
result 2
rank_dif -58.0
points_by_rank 0.007143
team_points 1
country_classification Classe B
Name: 88, dtype: object
date 2018-09-08 00:00:00
team Pakistan
score 3.0
suf_score 0.0
rank 201.0
rank_suf 183.0
rank_change 0.0
total_points 884.0
result 0
rank_dif 18.0
points_by_rank 0.016393
team_points 3
country_classification Classe D
Name: 89, dtype: object
date 2018-09-08 00:00:00
team Bangladesh
score 0.0
suf_score 2.0
rank 194.0
rank_suf 161.0
rank_change 0.0
total_points 904.0
result 1
rank_dif 33.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 90, dtype: object
date 2018-09-08 00:00:00
team Cuba
score 11.0
suf_score 0.0
rank 181.0
rank_suf 206.0
rank_change 0.0
total_points 940.0
result 0
rank_dif -25.0
points_by_rank 0.014563
team_points 3
country_classification Classe D
Name: 91, dtype: object
date 2018-09-08 00:00:00
team Montserrat
score 1.0
suf_score 2.0
rank 204.0
rank_suf 72.0
rank_change 0.0
total_points 872.0
result 1
rank_dif 132.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 92, dtype: object
date 2018-09-09 00:00:00
team France
score 2.0
suf_score 1.0
rank 1.0
rank_suf 17.0
rank_change -6.0
total_points 1726.0
result 0
rank_dif -16.0
points_by_rank 0.176471
team_points 3
country_classification Classe S
Name: 93, dtype: object
date 2018-09-09 00:00:00
team Ukraine
score 1.0
suf_score 0.0
rank 35.0
rank_suf 26.0
rank_change 0.0
total_points 1468.0
result 0
rank_dif 9.0
points_by_rank 0.115385
team_points 3
country_classification Classe A
Name: 94, dtype: object
date 2018-09-09 00:00:00
team Denmark
score 2.0
suf_score 0.0
rank 9.0
rank_suf 19.0
rank_change -3.0
total_points 1580.0
result 0
rank_dif -10.0
points_by_rank 0.157895
team_points 3
country_classification Classe A
Name: 95, dtype: object
date 2018-09-09 00:00:00
team Bulgaria
score 1.0
suf_score 0.0
rank 47.0
rank_suf 53.0
rank_change -2.0
total_points 1416.0
result 0
rank_dif -6.0
points_by_rank 0.056604
team_points 3
country_classification Classe A
Name: 96, dtype: object
date 2018-09-09 00:00:00
team Cyprus
score 2.0
suf_score 1.0
rank 87.0
rank_suf 55.0
rank_change 0.0
total_points 1280.0
result 0
rank_dif 32.0
points_by_rank 0.054545
team_points 3
country_classification Classe B
Name: 97, dtype: object
date 2018-09-09 00:00:00
team Georgia
score 1.0
suf_score 0.0
rank 96.0
rank_suf 129.0
rank_change 0.0
total_points 1242.0
result 0
rank_dif -33.0
points_by_rank 0.023256
team_points 3
country_classification Classe B
Name: 98, dtype: object
date 2018-09-09 00:00:00
team Liechtenstein
score 2.0
suf_score 0.0
rank 180.0
rank_suf 195.0
rank_change 0.0
total_points 944.0
result 0
rank_dif -15.0
points_by_rank 0.015385
team_points 3
country_classification Classe D
Name: 99, dtype: object
date 2018-09-09 00:00:00
team Germany
score 2.0
suf_score 1.0
rank 15.0
rank_suf 20.0
rank_change 14.0
total_points 1561.0
result 0
rank_dif -5.0
points_by_rank 0.15
team_points 3
country_classification Classe A
Name: 100, dtype: object
date 2018-09-09 00:00:00
team Lebanon
score 0.0
suf_score 0.0
rank 79.0
rank_suf 84.0
rank_change 0.0
total_points 1304.0
result 2
rank_dif -5.0
points_by_rank 0.011905
team_points 1
country_classification Classe B
Name: 101, dtype: object
date 2018-09-09 00:00:00
team Congo
score 1.0
suf_score 1.0
rank 83.0
rank_suf 118.0
rank_change 0.0
total_points 1292.0
result 2
rank_dif -35.0
points_by_rank 0.008475
team_points 1
country_classification Classe B
Name: 102, dtype: object
date 2018-09-09 00:00:00
team India
score 2.0
suf_score 0.0
rank 96.0
rank_suf 150.0
rank_change -1.0
total_points 1242.0
result 0
rank_dif -54.0
points_by_rank 0.02
team_points 3
country_classification Classe B
Name: 103, dtype: object
date 2018-09-09 00:00:00
team Aruba
score 3.0
suf_score 1.0
rank 188.0
rank_suf 178.0
rank_change 0.0
total_points 916.0
result 0
rank_dif 10.0
points_by_rank 0.016854
team_points 3
country_classification Classe D
Name: 104, dtype: object
date 2018-09-09 00:00:00
team Jamaica
score 4.0
suf_score 0.0
rank 54.0
rank_suf 202.0
rank_change 0.0
total_points 1400.0
result 0
rank_dif -148.0
points_by_rank 0.014851
team_points 3
country_classification Classe B
Name: 105, dtype: object
date 2018-09-10 00:00:00
team Portugal
score 1.0
suf_score 0.0
rank 7.0
rank_suf 21.0
rank_change 3.0
total_points 1599.0
result 0
rank_dif -14.0
points_by_rank 0.142857
team_points 3
country_classification Classe A
Name: 106, dtype: object
date 2018-09-10 00:00:00
team Sweden
score 2.0
suf_score 3.0
rank 13.0
rank_suf 38.0
rank_change -11.0
total_points 1565.0
result 1
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 107, dtype: object
date 2018-09-10 00:00:00
team Scotland
score 2.0
suf_score 0.0
rank 40.0
rank_suf 58.0
rank_change -2.0
total_points 1444.0
result 0
rank_dif -18.0
points_by_rank 0.051724
team_points 3
country_classification Classe A
Name: 108, dtype: object
date 2018-09-10 00:00:00
team Montenegro
score 2.0
suf_score 0.0
rank 41.0
rank_suf 127.0
rank_change -2.0
total_points 1440.0
result 0
rank_dif -86.0
points_by_rank 0.023622
team_points 3
country_classification Classe A
Name: 109, dtype: object
date 2018-09-10 00:00:00
team Serbia
score 2.0
suf_score 2.0
rank 36.0
rank_suf 28.0
rank_change 2.0
total_points 1459.0
result 2
rank_dif 8.0
points_by_rank 0.035714
team_points 1
country_classification Classe A
Name: 110, dtype: object
date 2018-09-10 00:00:00
team Andorra
score 1.0
suf_score 1.0
rank 130.0
rank_suf 116.0
rank_change 0.0
total_points 1120.0
result 2
rank_dif 14.0
points_by_rank 0.008621
team_points 1
country_classification Classe C
Name: 111, dtype: object
date 2018-09-10 00:00:00
team Kosovo
score 2.0
suf_score 0.0
rank 141.0
rank_suf 90.0
rank_change 0.0
total_points 1080.0
result 0
rank_dif 51.0
points_by_rank 0.033333
team_points 3
country_classification Classe C
Name: 112, dtype: object
date 2018-09-10 00:00:00
team Malta
score 1.0
suf_score 1.0
rank 184.0
rank_suf 105.0
rank_change 0.0
total_points 928.0
result 2
rank_dif 79.0
points_by_rank 0.009524
team_points 1
country_classification Classe D
Name: 113, dtype: object
date 2018-09-10 00:00:00
team Bahrain
score 0.0
suf_score 0.0
rank 113.0
rank_suf 75.0
rank_change 0.0
total_points 1180.0
result 2
rank_dif 38.0
points_by_rank 0.013333
team_points 1
country_classification Classe C
Name: 114, dtype: object
date 2018-09-10 00:00:00
team Cambodia
score 1.0
suf_score 3.0
rank 166.0
rank_suf 171.0
rank_change 0.0
total_points 984.0
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 115, dtype: object
date 2018-09-10 00:00:00
team Kuwait
score 2.0
suf_score 2.0
rank 159.0
rank_suf 89.0
rank_change 0.0
total_points 1012.0
result 2
rank_dif 70.0
points_by_rank 0.011236
team_points 1
country_classification Classe C
Name: 116, dtype: object
date 2018-09-10 00:00:00
team Russia
score 5.0
suf_score 1.0
rank 49.0
rank_suf 44.0
rank_change -21.0
total_points 1410.0
result 0
rank_dif 5.0
points_by_rank 0.068182
team_points 3
country_classification Classe A
Name: 117, dtype: object
date 2018-09-10 00:00:00
team Saudi Arabia
score 2.0
suf_score 2.0
rank 70.0
rank_suf 59.0
rank_change 3.0
total_points 1336.0
result 2
rank_dif 11.0
points_by_rank 0.016949
team_points 1
country_classification Classe B
Name: 118, dtype: object
date 2018-09-10 00:00:00
team Curaçao
score 10.0
suf_score 0.0
rank 100.0
rank_suf 168.0
rank_change 0.0
total_points 1450.0
result 0
rank_dif -68.0
points_by_rank 0.017857
team_points 3
country_classification Classe A
Name: 119, dtype: object
date 2018-09-11 00:00:00
team Iceland
score 0.0
suf_score 3.0
rank 32.0
rank_suf 2.0
rank_change 10.0
total_points 1471.0
result 1
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 120, dtype: object
date 2018-09-11 00:00:00
team Spain
score 6.0
suf_score 0.0
rank 9.0
rank_suf 4.0
rank_change -1.0
total_points 1580.0
result 0
rank_dif 5.0
points_by_rank 0.75
team_points 3
country_classification Classe A
Name: 121, dtype: object
date 2018-09-11 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 0.0
rank 39.0
rank_suf 23.0
rank_change -1.0
total_points 1452.0
result 0
rank_dif 16.0
points_by_rank 0.130435
team_points 3
country_classification Classe A
Name: 122, dtype: object
date 2018-09-11 00:00:00
team Hungary
score 2.0
suf_score 1.0
rank 51.0
rank_suf 42.0
rank_change 0.0
total_points 1409.0
result 0
rank_dif 9.0
points_by_rank 0.071429
team_points 3
country_classification Classe A
Name: 123, dtype: object
date 2018-09-11 00:00:00
team Finland
score 1.0
suf_score 0.0
rank 62.0
rank_suf 94.0
rank_change -1.0
total_points 1364.0
result 0
rank_dif -32.0
points_by_rank 0.031915
team_points 3
country_classification Classe B
Name: 124, dtype: object
date 2018-09-11 00:00:00
team San Marino
score 0.0
suf_score 3.0
rank 203.0
rank_suf 85.0
rank_change 0.0
total_points 876.0
result 1
rank_dif 118.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 125, dtype: object
date 2018-09-11 00:00:00
team Moldova
score 0.0
suf_score 0.0
rank 175.0
rank_suf 78.0
rank_change 0.0
total_points 957.0
result 2
rank_dif 97.0
points_by_rank 0.012821
team_points 1
country_classification Classe D
Name: 126, dtype: object
date 2018-09-11 00:00:00
team Colombia
score 0.0
suf_score 0.0
rank 14.0
rank_suf 11.0
rank_change -2.0
total_points 1563.0
result 2
rank_dif 3.0
points_by_rank 0.090909
team_points 1
country_classification Classe A
Name: 127, dtype: object
date 2018-09-11 00:00:00
team Ecuador
score 2.0
suf_score 0.0
rank 60.0
rank_suf 146.0
rank_change 0.0
total_points 1376.0
result 0
rank_dif -86.0
points_by_rank 0.020548
team_points 3
country_classification Classe B
Name: 128, dtype: object
date 2018-09-11 00:00:00
team England
score 1.0
suf_score 0.0
rank 6.0
rank_suf 8.0
rank_change -6.0
total_points 1615.0
result 0
rank_dif -2.0
points_by_rank 0.375
team_points 3
country_classification Classe S-
Name: 129, dtype: object
date 2018-09-11 00:00:00
team Gabon
score 0.0
suf_score 1.0
rank 86.0
rank_suf 76.0
rank_change 1.0
total_points 1284.0
result 1
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 130, dtype: object
date 2018-09-11 00:00:00
team Indonesia
score 1.0
suf_score 0.0
rank 164.0
rank_suf 155.0
rank_change 0.0
total_points 992.0
result 0
rank_dif 9.0
points_by_rank 0.019355
team_points 3
country_classification Classe D
Name: 131, dtype: object
date 2018-09-11 00:00:00
team Japan
score 3.0
suf_score 0.0
rank 55.0
rank_suf 32.0
rank_change -6.0
total_points 1392.0
result 0
rank_dif 23.0
points_by_rank 0.09375
team_points 3
country_classification Classe B
Name: 132, dtype: object
date 2018-09-11 00:00:00
team Jordan
score 0.0
suf_score 0.0
rank 110.0
rank_suf 84.0
rank_change 0.0
total_points 1192.0
result 2
rank_dif 26.0
points_by_rank 0.011905
team_points 1
country_classification Classe C
Name: 133, dtype: object
date 2018-09-11 00:00:00
team Kenya
score 1.0
suf_score 0.0
rank 112.0
rank_suf 123.0
rank_change 0.0
total_points 1182.0
result 0
rank_dif -11.0
points_by_rank 0.02439
team_points 3
country_classification Classe C
Name: 134, dtype: object
date 2018-09-11 00:00:00
team South Korea
score 0.0
suf_score 0.0
rank 57.0
rank_suf 12.0
rank_change 0.0
total_points 1387.0
result 2
rank_dif 45.0
points_by_rank 0.083333
team_points 1
country_classification Classe B
Name: 135, dtype: object
date 2018-09-11 00:00:00
team Laos
score 0.0
suf_score 3.0
rank 178.0
rank_suf 77.0
rank_change 0.0
total_points 948.0
result 1
rank_dif 101.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 136, dtype: object
date 2018-09-11 00:00:00
team Liberia
score 1.0
suf_score 2.0
rank 158.0
rank_suf 49.0
rank_change 0.0
total_points 1016.0
result 1
rank_dif 109.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 137, dtype: object
date 2018-09-11 00:00:00
team Northern Ireland
score 3.0
suf_score 0.0
rank 27.0
rank_suf 93.0
rank_change -2.0
total_points 1492.0
result 0
rank_dif -66.0
points_by_rank 0.032258
team_points 3
country_classification Classe A
Name: 138, dtype: object
date 2018-09-11 00:00:00
team Panama
score 0.0
suf_score 2.0
rank 69.0
rank_suf 31.0
rank_change 14.0
total_points 1343.0
result 1
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 139, dtype: object
date 2018-09-11 00:00:00
team Poland
score 1.0
suf_score 1.0
rank 18.0
rank_suf 29.0
rank_change 10.0
total_points 1538.0
result 2
rank_dif -11.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 140, dtype: object
date 2018-09-11 00:00:00
team Qatar
score 3.0
suf_score 0.0
rank 98.0
rank_suf 99.0
rank_change 0.0
total_points 1236.0
result 0
rank_dif -1.0
points_by_rank 0.030303
team_points 3
country_classification Classe B
Name: 141, dtype: object
date 2018-09-11 00:00:00
team Singapore
score 2.0
suf_score 0.0
rank 169.0
rank_suf 165.0
rank_change 0.0
total_points 976.0
result 0
rank_dif 4.0
points_by_rank 0.018182
team_points 3
country_classification Classe D
Name: 142, dtype: object
date 2018-09-11 00:00:00
team United States
score 1.0
suf_score 0.0
rank 22.0
rank_suf 16.0
rank_change -3.0
total_points 1508.0
result 0
rank_dif 6.0
points_by_rank 0.1875
team_points 3
country_classification Classe A
Name: 143, dtype: object
date 2018-09-11 00:00:00
team Uzbekistan
score 0.0
suf_score 1.0
rank 95.0
rank_suf 32.0
rank_change 0.0
total_points 1247.0
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 144, dtype: object
date 2018-09-12 00:00:00
team Brazil
score 5.0
suf_score 0.0
rank 3.0
rank_suf 72.0
rank_change 1.0
total_points 1657.0
result 0
rank_dif -69.0
points_by_rank 0.041667
team_points 3
country_classification Classe S-
Name: 145, dtype: object
date 2018-09-12 00:00:00
team India
score 3.0
suf_score 1.0
rank 96.0
rank_suf 201.0
rank_change -1.0
total_points 1242.0
result 0
rank_dif -105.0
points_by_rank 0.014925
team_points 3
country_classification Classe B
Name: 146, dtype: object
date 2018-09-12 00:00:00
team Nepal
score 0.0
suf_score 3.0
rank 161.0
rank_suf 150.0
rank_change 0.0
total_points 1004.0
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 147, dtype: object
date 2018-09-15 00:00:00
team Maldives
score 2.0
suf_score 1.0
rank 150.0
rank_suf 96.0
rank_change 0.0
total_points 1048.0
result 0
rank_dif 54.0
points_by_rank 0.03125
team_points 3
country_classification Classe C
Name: 148, dtype: object
date 2018-09-30 00:00:00
team Botswana
score 1.0
suf_score 0.0
rank 142.0
rank_suf 116.0
rank_change 3.0
total_points 1077.0
result 0
rank_dif 26.0
points_by_rank 0.025862
team_points 3
country_classification Classe C
Name: 149, dtype: object
date 2018-10-10 00:00:00
team Albania
score 0.0
suf_score 0.0
rank 57.0
rank_suf 110.0
rank_change -1.0
total_points 1383.0
result 2
rank_dif -53.0
points_by_rank 0.009091
team_points 1
country_classification Classe B
Name: 150, dtype: object
date 2018-10-10 00:00:00
team Indonesia
score 3.0
suf_score 0.0
rank 164.0
rank_suf 138.0
rank_change 0.0
total_points 997.0
result 0
rank_dif 26.0
points_by_rank 0.021739
team_points 3
country_classification Classe D
Name: 151, dtype: object
date 2018-10-10 00:00:00
team Italy
score 1.0
suf_score 1.0
rank 20.0
rank_suf 29.0
rank_change -1.0
total_points 1526.0
result 2
rank_dif -9.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 152, dtype: object
date 2018-10-10 00:00:00
team Ethiopia
score 0.0
suf_score 0.0
rank 149.0
rank_suf 107.0
rank_change -2.0
total_points 1060.0
result 2
rank_dif 42.0
points_by_rank 0.009346
team_points 1
country_classification Classe C
Name: 153, dtype: object
date 2018-10-10 00:00:00
team Zambia
score 2.0
suf_score 1.0
rank 75.0
rank_suf 121.0
rank_change -1.0
total_points 1316.0
result 0
rank_dif -46.0
points_by_rank 0.024793
team_points 3
country_classification Classe B
Name: 154, dtype: object
date 2018-10-11 00:00:00
team Poland
score 2.0
suf_score 3.0
rank 18.0
rank_suf 7.0
rank_change 0.0
total_points 1537.0
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 155, dtype: object
date 2018-10-11 00:00:00
team Russia
score 0.0
suf_score 0.0
rank 46.0
rank_suf 15.0
rank_change -3.0
total_points 1423.0
result 2
rank_dif 31.0
points_by_rank 0.066667
team_points 1
country_classification Classe A
Name: 156, dtype: object
date 2018-10-11 00:00:00
team Israel
score 2.0
suf_score 1.0
rank 94.0
rank_suf 39.0
rank_change 1.0
total_points 1247.0
result 0
rank_dif 55.0
points_by_rank 0.076923
team_points 3
country_classification Classe B
Name: 157, dtype: object
date 2018-10-11 00:00:00
team Montenegro
score 0.0
suf_score 2.0
rank 41.0
rank_suf 35.0
rank_change 0.0
total_points 1444.0
result 1
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 158, dtype: object
date 2018-10-11 00:00:00
team Lithuania
score 1.0
suf_score 2.0
rank 126.0
rank_suf 27.0
rank_change -1.0
total_points 1123.0
result 1
rank_dif 99.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 159, dtype: object
date 2018-10-11 00:00:00
team Faroe Islands
score 0.0
suf_score 3.0
rank 92.0
rank_suf 108.0
rank_change 2.0
total_points 1261.0
result 1
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 160, dtype: object
date 2018-10-11 00:00:00
team Kosovo
score 3.0
suf_score 1.0
rank 138.0
rank_suf 183.0
rank_change -3.0
total_points 1092.0
result 0
rank_dif -45.0
points_by_rank 0.016393
team_points 3
country_classification Classe C
Name: 161, dtype: object
date 2018-10-11 00:00:00
team Argentina
score 4.0
suf_score 0.0
rank 11.0
rank_suf 89.0
rank_change 0.0
total_points 1575.0
result 0
rank_dif -78.0
points_by_rank 0.033708
team_points 3
country_classification Classe A
Name: 162, dtype: object
date 2018-10-11 00:00:00
team Bahrain
score 0.0
suf_score 1.0
rank 112.0
rank_suf 74.0
rank_change -1.0
total_points 1181.0
result 1
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 163, dtype: object
date 2018-10-11 00:00:00
team France
score 2.0
suf_score 2.0
rank 1.0
rank_suf 36.0
rank_change 0.0
total_points 1729.0
result 2
rank_dif -35.0
points_by_rank 0.027778
team_points 1
country_classification Classe S
Name: 164, dtype: object
date 2018-10-11 00:00:00
team Honduras
score 1.0
suf_score 1.0
rank 62.0
rank_suf 77.0
rank_change 1.0
total_points 1368.0
result 2
rank_dif -15.0
points_by_rank 0.012987
team_points 1
country_classification Classe B
Name: 165, dtype: object
date 2018-10-11 00:00:00
team Hong Kong
score 0.0
suf_score 1.0
rank 143.0
rank_suf 122.0
rank_change 1.0
total_points 1076.0
result 1
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 166, dtype: object
date 2018-10-11 00:00:00
team Kuwait
score 1.0
suf_score 0.0
rank 159.0
rank_suf 77.0
rank_change 0.0
total_points 1014.0
result 0
rank_dif 82.0
points_by_rank 0.038961
team_points 3
country_classification Classe C
Name: 167, dtype: object
date 2018-10-11 00:00:00
team Mexico
score 3.0
suf_score 2.0
rank 15.0
rank_suf 37.0
rank_change -1.0
total_points 1550.0
result 0
rank_dif -22.0
points_by_rank 0.081081
team_points 3
country_classification Classe A
Name: 168, dtype: object
date 2018-10-11 00:00:00
team Turkey
score 0.0
suf_score 0.0
rank 38.0
rank_suf 34.0
rank_change 0.0
total_points 1456.0
result 2
rank_dif 4.0
points_by_rank 0.029412
team_points 1
country_classification Classe A
Name: 169, dtype: object
date 2018-10-11 00:00:00
team United States
score 2.0
suf_score 4.0
rank 22.0
rank_suf 14.0
rank_change 0.0
total_points 1510.0
result 1
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 170, dtype: object
date 2018-10-11 00:00:00
team Wales
score 1.0
suf_score 4.0
rank 19.0
rank_suf 9.0
rank_change 0.0
total_points 1536.0
result 1
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 171, dtype: object
date 2018-10-11 00:00:00
team Congo
score 3.0
suf_score 1.0
rank 84.0
rank_suf 155.0
rank_change 1.0
total_points 1289.0
result 0
rank_dif -71.0
points_by_rank 0.019355
team_points 3
country_classification Classe B
Name: 172, dtype: object
date 2018-10-12 00:00:00
team Belgium
score 2.0
suf_score 1.0
rank 1.0
rank_suf 8.0
rank_change -1.0
total_points 1729.0
result 0
rank_dif -7.0
points_by_rank 0.375
team_points 3
country_classification Classe S
Name: 173, dtype: object
date 2018-10-12 00:00:00
team Croatia
score 0.0
suf_score 0.0
rank 4.0
rank_suf 6.0
rank_change 0.0
total_points 1634.0
result 2
rank_dif -2.0
points_by_rank 0.166667
team_points 1
country_classification Classe S-
Name: 174, dtype: object
date 2018-10-12 00:00:00
team Austria
score 1.0
suf_score 0.0
rank 24.0
rank_suf 28.0
rank_change 1.0
total_points 1499.0
result 0
rank_dif -4.0
points_by_rank 0.107143
team_points 3
country_classification Classe A
Name: 175, dtype: object
date 2018-10-12 00:00:00
team Estonia
score 0.0
suf_score 1.0
rank 98.0
rank_suf 58.0
rank_change 4.0
total_points 1240.0
result 1
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 176, dtype: object
date 2018-10-12 00:00:00
team Greece
score 1.0
suf_score 0.0
rank 42.0
rank_suf 49.0
rank_change 0.0
total_points 1433.0
result 0
rank_dif -7.0
points_by_rank 0.061224
team_points 3
country_classification Classe A
Name: 177, dtype: object
date 2018-10-12 00:00:00
team Belarus
score 1.0
suf_score 0.0
rank 80.0
rank_suf 82.0
rank_change 2.0
total_points 1304.0
result 0
rank_dif -2.0
points_by_rank 0.036585
team_points 3
country_classification Classe B
Name: 178, dtype: object
date 2018-10-12 00:00:00
team Moldova
score 2.0
suf_score 0.0
rank 173.0
rank_suf 204.0
rank_change -2.0
total_points 958.0
result 0
rank_dif -31.0
points_by_rank 0.014706
team_points 3
country_classification Classe D
Name: 179, dtype: object
date 2018-10-12 00:00:00
team Cambodia
score 2.0
suf_score 2.0
rank 169.0
rank_suf 190.0
rank_change 3.0
total_points 979.0
result 2
rank_dif -21.0
points_by_rank 0.005263
team_points 1
country_classification Classe D
Name: 180, dtype: object
date 2018-10-12 00:00:00
team Japan
score 3.0
suf_score 0.0
rank 54.0
rank_suf 70.0
rank_change -1.0
total_points 1398.0
result 0
rank_dif -16.0
points_by_rank 0.042857
team_points 3
country_classification Classe B
Name: 181, dtype: object
date 2018-10-12 00:00:00
team South Korea
score 2.0
suf_score 1.0
rank 55.0
rank_suf 5.0
rank_change -2.0
total_points 1395.0
result 0
rank_dif 50.0
points_by_rank 0.6
team_points 3
country_classification Classe B
Name: 182, dtype: object
date 2018-10-12 00:00:00
team Peru
score 3.0
suf_score 0.0
rank 21.0
rank_suf 12.0
rank_change 1.0
total_points 1525.0
result 0
rank_dif 9.0
points_by_rank 0.25
team_points 3
country_classification Classe A
Name: 183, dtype: object
date 2018-10-12 00:00:00
team Qatar
score 4.0
suf_score 3.0
rank 94.0
rank_suf 58.0
rank_change -4.0
total_points 1247.0
result 0
rank_dif 36.0
points_by_rank 0.051724
team_points 3
country_classification Classe B
Name: 184, dtype: object
date 2018-10-12 00:00:00
team Saudi Arabia
score 0.0
suf_score 2.0
rank 71.0
rank_suf 3.0
rank_change 1.0
total_points 1337.0
result 1
rank_dif 68.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 185, dtype: object
date 2018-10-12 00:00:00
team Singapore
score 2.0
suf_score 0.0
rank 166.0
rank_suf 186.0
rank_change -3.0
total_points 982.0
result 0
rank_dif -20.0
points_by_rank 0.016129
team_points 3
country_classification Classe D
Name: 186, dtype: object
date 2018-10-12 00:00:00
team Sri Lanka
score 1.0
suf_score 4.0
rank 199.0
rank_suf 171.0
rank_change -1.0
total_points 890.0
result 1
rank_dif 28.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 187, dtype: object
date 2018-10-12 00:00:00
team Cameroon
score 1.0
suf_score 0.0
rank 50.0
rank_suf 125.0
rank_change 3.0
total_points 1408.0
result 0
rank_dif -75.0
points_by_rank 0.024
team_points 3
country_classification Classe A
Name: 188, dtype: object
date 2018-10-12 00:00:00
team Gabon
score 3.0
suf_score 0.0
rank 87.0
rank_suf 158.0
rank_change 1.0
total_points 1274.0
result 0
rank_dif -71.0
points_by_rank 0.018987
team_points 3
country_classification Classe B
Name: 189, dtype: object
date 2018-10-12 00:00:00
team Togo
score 1.0
suf_score 1.0
rank 123.0
rank_suf 171.0
rank_change -1.0
total_points 1139.0
result 2
rank_dif -48.0
points_by_rank 0.005848
team_points 1
country_classification Classe C
Name: 190, dtype: object
date 2018-10-12 00:00:00
team Angola
score 4.0
suf_score 1.0
rank 135.0
rank_suf 103.0
rank_change -2.0
total_points 1108.0
result 0
rank_dif 32.0
points_by_rank 0.029126
team_points 3
country_classification Classe C
Name: 191, dtype: object
date 2018-10-12 00:00:00
team Bahamas
score 0.0
suf_score 6.0
rank 210.0
rank_suf 127.0
rank_change 4.0
total_points 862.0
result 1
rank_dif 83.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 192, dtype: object
date 2018-10-12 00:00:00
team Dominican Republic
score 3.0
suf_score 0.0
rank 152.0
rank_suf 202.0
rank_change 0.0
total_points 1040.0
result 0
rank_dif -50.0
points_by_rank 0.014851
team_points 3
country_classification Classe C
Name: 193, dtype: object
date 2018-10-12 00:00:00
team Grenada
score 0.0
suf_score 2.0
rank 170.0
rank_suf 179.0
rank_change 2.0
total_points 976.0
result 1
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 194, dtype: object
date 2018-10-13 00:00:00
team Netherlands
score 3.0
suf_score 0.0
rank 17.0
rank_suf 12.0
rank_change 0.0
total_points 1540.0
result 0
rank_dif 5.0
points_by_rank 0.25
team_points 3
country_classification Classe A
Name: 195, dtype: object
date 2018-10-13 00:00:00
team Slovakia
score 1.0
suf_score 2.0
rank 26.0
rank_suf 47.0
rank_change 0.0
total_points 1491.0
result 1
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 196, dtype: object
date 2018-10-13 00:00:00
team Republic of Ireland
score 0.0
suf_score 0.0
rank 30.0
rank_suf 10.0
rank_change 1.0
total_points 1478.0
result 2
rank_dif 20.0
points_by_rank 0.1
team_points 1
country_classification Classe A
Name: 197, dtype: object
date 2018-10-13 00:00:00
team Norway
score 1.0
suf_score 0.0
rank 52.0
rank_suf 61.0
rank_change -1.0
total_points 1405.0
result 0
rank_dif -9.0
points_by_rank 0.04918
team_points 3
country_classification Classe A
Name: 198, dtype: object
date 2018-10-13 00:00:00
team Bulgaria
score 2.0
suf_score 1.0
rank 44.0
rank_suf 86.0
rank_change -3.0
total_points 1430.0
result 0
rank_dif -42.0
points_by_rank 0.034884
team_points 3
country_classification Classe A
Name: 199, dtype: object
date 2018-10-13 00:00:00
team Latvia
score 1.0
suf_score 1.0
rank 131.0
rank_suf 118.0
rank_change 2.0
total_points 1116.0
result 2
rank_dif 13.0
points_by_rank 0.008475
team_points 1
country_classification Classe C
Name: 200, dtype: object
date 2018-10-13 00:00:00
team Georgia
score 3.0
suf_score 0.0
rank 93.0
rank_suf 128.0
rank_change -3.0
total_points 1254.0
result 0
rank_dif -35.0
points_by_rank 0.023438
team_points 3
country_classification Classe B
Name: 201, dtype: object
date 2018-10-13 00:00:00
team Armenia
score 0.0
suf_score 1.0
rank 100.0
rank_suf 198.0
rank_change 0.0
total_points 1225.0
result 1
rank_dif -98.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 202, dtype: object
date 2018-10-13 00:00:00
team China PR
score 0.0
suf_score 0.0
rank 76.0
rank_suf 97.0
rank_change 1.0
total_points 1313.0
result 2
rank_dif -21.0
points_by_rank 0.010309
team_points 1
country_classification Classe B
Name: 203, dtype: object
date 2018-10-13 00:00:00
team Myanmar
score 0.0
suf_score 3.0
rank 138.0
rank_suf 58.0
rank_change 0.0
total_points 1092.0
result 1
rank_dif 80.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 204, dtype: object
date 2018-10-13 00:00:00
team Oman
score 1.0
suf_score 1.0
rank 85.0
rank_suf 114.0
rank_change 1.0
total_points 1287.0
result 2
rank_dif -29.0
points_by_rank 0.008772
team_points 1
country_classification Classe B
Name: 205, dtype: object
date 2018-10-13 00:00:00
team Equatorial Guinea
score 0.0
suf_score 1.0
rank 141.0
rank_suf 106.0
rank_change -2.0
total_points 1086.0
result 1
rank_dif 35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 206, dtype: object
date 2018-10-13 00:00:00
team Nigeria
score 4.0
suf_score 0.0
rank 48.0
rank_suf 99.0
rank_change -1.0
total_points 1415.0
result 0
rank_dif -51.0
points_by_rank 0.030303
team_points 3
country_classification Classe A
Name: 207, dtype: object
date 2018-10-13 00:00:00
team Turks and Caicos Islands
score 0.0
suf_score 8.0
rank 210.0
rank_suf 182.0
rank_change 4.0
total_points 862.0
result 1
rank_dif 28.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 208, dtype: object
date 2018-10-13 00:00:00
team Suriname
score 5.0
suf_score 0.0
rank 153.0
rank_suf 203.0
rank_change 0.0
total_points 1035.0
result 0
rank_dif -50.0
points_by_rank 0.014778
team_points 3
country_classification Classe C
Name: 209, dtype: object
date 2018-10-13 00:00:00
team El Salvador
score 3.0
suf_score 0.0
rank 72.0
rank_suf 162.0
rank_change 0.0
total_points 1332.0
result 0
rank_dif -90.0
points_by_rank 0.018519
team_points 3
country_classification Classe B
Name: 210, dtype: object
date 2018-10-14 00:00:00
team Poland
score 0.0
suf_score 1.0
rank 18.0
rank_suf 20.0
rank_change 0.0
total_points 1537.0
result 1
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 211, dtype: object
date 2018-10-14 00:00:00
team Russia
score 2.0
suf_score 0.0
rank 46.0
rank_suf 38.0
rank_change -3.0
total_points 1423.0
result 0
rank_dif 8.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 212, dtype: object
date 2018-10-14 00:00:00
team Israel
score 2.0
suf_score 0.0
rank 94.0
rank_suf 57.0
rank_change 1.0
total_points 1247.0
result 0
rank_dif 37.0
points_by_rank 0.052632
team_points 3
country_classification Classe B
Name: 213, dtype: object
date 2018-10-14 00:00:00
team Romania
score 0.0
suf_score 0.0
rank 27.0
rank_suf 35.0
rank_change -1.0
total_points 1489.0
result 2
rank_dif -8.0
points_by_rank 0.028571
team_points 1
country_classification Classe A
Name: 214, dtype: object
date 2018-10-14 00:00:00
team Lithuania
score 1.0
suf_score 4.0
rank 126.0
rank_suf 41.0
rank_change -1.0
total_points 1123.0
result 1
rank_dif 85.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 215, dtype: object
date 2018-10-14 00:00:00
team Faroe Islands
score 1.0
suf_score 1.0
rank 92.0
rank_suf 138.0
rank_change 2.0
total_points 1261.0
result 2
rank_dif -46.0
points_by_rank 0.007246
team_points 1
country_classification Classe B
Name: 216, dtype: object
date 2018-10-14 00:00:00
team Azerbaijan
score 1.0
suf_score 1.0
rank 108.0
rank_suf 183.0
rank_change 3.0
total_points 1202.0
result 2
rank_dif -75.0
points_by_rank 0.005464
team_points 1
country_classification Classe B
Name: 217, dtype: object
date 2018-10-14 00:00:00
team Scotland
score 1.0
suf_score 3.0
rank 39.0
rank_suf 7.0
rank_change -1.0
total_points 1448.0
result 1
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 218, dtype: object
date 2018-10-14 00:00:00
team Thailand
score 1.0
suf_score 0.0
rank 122.0
rank_suf 90.0
rank_change 0.0
total_points 1144.0
result 0
rank_dif 32.0
points_by_rank 0.033333
team_points 3
country_classification Classe C
Name: 219, dtype: object
date 2018-10-14 00:00:00
team Guinea-Bissau
score 2.0
suf_score 1.0
rank 121.0
rank_suf 75.0
rank_change 0.0
total_points 1149.0
result 0
rank_dif 46.0
points_by_rank 0.04
team_points 3
country_classification Classe C
Name: 220, dtype: object
date 2018-10-14 00:00:00
team Montserrat
score 1.0
suf_score 0.0
rank 205.0
rank_suf 160.0
rank_change 1.0
total_points 870.0
result 0
rank_dif 45.0
points_by_rank 0.01875
team_points 3
country_classification Classe D
Name: 221, dtype: object
date 2018-10-14 00:00:00
team Nicaragua
score 6.0
suf_score 0.0
rank 128.0
rank_suf 206.0
rank_change -4.0
total_points 1121.0
result 0
rank_dif -78.0
points_by_rank 0.014563
team_points 3
country_classification Classe C
Name: 222, dtype: object
date 2018-10-15 00:00:00
team Iceland
score 1.0
suf_score 2.0
rank 36.0
rank_suf 8.0
rank_change 4.0
total_points 1461.0
result 1
rank_dif 28.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 223, dtype: object
date 2018-10-15 00:00:00
team Spain
score 2.0
suf_score 3.0
rank 9.0
rank_suf 6.0
rank_change 0.0
total_points 1597.0
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 224, dtype: object
date 2018-10-15 00:00:00
team Bosnia and Herzegovina
score 2.0
suf_score 0.0
rank 34.0
rank_suf 28.0
rank_change -5.0
total_points 1468.0
result 0
rank_dif 6.0
points_by_rank 0.107143
team_points 3
country_classification Classe A
Name: 225, dtype: object
date 2018-10-15 00:00:00
team Estonia
score 3.0
suf_score 3.0
rank 98.0
rank_suf 49.0
rank_change 4.0
total_points 1240.0
result 2
rank_dif 49.0
points_by_rank 0.020408
team_points 1
country_classification Classe B
Name: 226, dtype: object
date 2018-10-15 00:00:00
team Finland
score 2.0
suf_score 0.0
rank 58.0
rank_suf 42.0
rank_change -4.0
total_points 1378.0
result 0
rank_dif 16.0
points_by_rank 0.071429
team_points 3
country_classification Classe B
Name: 227, dtype: object
date 2018-10-15 00:00:00
team Luxembourg
score 3.0
suf_score 0.0
rank 82.0
rank_suf 204.0
rank_change -3.0
total_points 1292.0
result 0
rank_dif -122.0
points_by_rank 0.014706
team_points 3
country_classification Classe B
Name: 228, dtype: object
date 2018-10-15 00:00:00
team Belarus
score 0.0
suf_score 0.0
rank 80.0
rank_suf 173.0
rank_change 2.0
total_points 1304.0
result 2
rank_dif -93.0
points_by_rank 0.00578
team_points 1
country_classification Classe B
Name: 229, dtype: object
date 2018-10-15 00:00:00
team Croatia
score 2.0
suf_score 1.0
rank 4.0
rank_suf 110.0
rank_change 0.0
total_points 1634.0
result 0
rank_dif -106.0
points_by_rank 0.027273
team_points 3
country_classification Classe S-
Name: 230, dtype: object
date 2018-10-15 00:00:00
team Kuwait
score 0.0
suf_score 4.0
rank 159.0
rank_suf 43.0
rank_change 0.0
total_points 1014.0
result 1
rank_dif 116.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 231, dtype: object
date 2018-10-15 00:00:00
team Saudi Arabia
score 1.0
suf_score 1.0
rank 71.0
rank_suf 89.0
rank_change 1.0
total_points 1337.0
result 2
rank_dif -18.0
points_by_rank 0.011236
team_points 1
country_classification Classe B
Name: 232, dtype: object
date 2018-10-16 00:00:00
team France
score 2.0
suf_score 1.0
rank 1.0
rank_suf 12.0
rank_change 0.0
total_points 1729.0
result 0
rank_dif -11.0
points_by_rank 0.25
team_points 3
country_classification Classe S
Name: 233, dtype: object
date 2018-10-16 00:00:00
team Ukraine
score 1.0
suf_score 0.0
rank 29.0
rank_suf 47.0
rank_change -6.0
total_points 1483.0
result 0
rank_dif -18.0
points_by_rank 0.06383
team_points 3
country_classification Classe A
Name: 234, dtype: object
date 2018-10-16 00:00:00
team Republic of Ireland
score 0.0
suf_score 1.0
rank 30.0
rank_suf 19.0
rank_change 1.0
total_points 1478.0
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 235, dtype: object
date 2018-10-16 00:00:00
team Norway
score 1.0
suf_score 0.0
rank 52.0
rank_suf 44.0
rank_change -1.0
total_points 1405.0
result 0
rank_dif 8.0
points_by_rank 0.068182
team_points 3
country_classification Classe A
Name: 236, dtype: object
date 2018-10-16 00:00:00
team Slovenia
score 1.0
suf_score 1.0
rank 61.0
rank_suf 86.0
rank_change 6.0
total_points 1376.0
result 2
rank_dif -25.0
points_by_rank 0.011628
team_points 1
country_classification Classe B
Name: 237, dtype: object
date 2018-10-16 00:00:00
team Kazakhstan
score 4.0
suf_score 0.0
rank 118.0
rank_suf 128.0
rank_change 2.0
total_points 1160.0
result 0
rank_dif -10.0
points_by_rank 0.023438
team_points 3
country_classification Classe C
Name: 238, dtype: object
date 2018-10-16 00:00:00
team Latvia
score 0.0
suf_score 3.0
rank 131.0
rank_suf 93.0
rank_change 2.0
total_points 1116.0
result 1
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 239, dtype: object
date 2018-10-16 00:00:00
team Gibraltar
score 2.0
suf_score 1.0
rank 198.0
rank_suf 178.0
rank_change 3.0
total_points 891.0
result 0
rank_dif 20.0
points_by_rank 0.016854
team_points 3
country_classification Classe D
Name: 240, dtype: object
date 2018-10-16 00:00:00
team Bahrain
score 4.0
suf_score 1.0
rank 112.0
rank_suf 138.0
rank_change -1.0
total_points 1181.0
result 0
rank_dif -26.0
points_by_rank 0.021739
team_points 3
country_classification Classe C
Name: 241, dtype: object
date 2018-10-16 00:00:00
team Belgium
score 1.0
suf_score 1.0
rank 1.0
rank_suf 17.0
rank_change -1.0
total_points 1729.0
result 2
rank_dif -16.0
points_by_rank 0.058824
team_points 1
country_classification Classe S
Name: 242, dtype: object
date 2018-10-16 00:00:00
team Cambodia
score 1.0
suf_score 2.0
rank 169.0
rank_suf 166.0
rank_change 3.0
total_points 979.0
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 243, dtype: object
date 2018-10-16 00:00:00
team China PR
score 2.0
suf_score 0.0
rank 76.0
rank_suf 74.0
rank_change 1.0
total_points 1313.0
result 0
rank_dif 2.0
points_by_rank 0.040541
team_points 3
country_classification Classe B
Name: 244, dtype: object
date 2018-10-16 00:00:00
team Colombia
score 3.0
suf_score 1.0
rank 14.0
rank_suf 37.0
rank_change 0.0
total_points 1567.0
result 0
rank_dif -23.0
points_by_rank 0.081081
team_points 3
country_classification Classe A
Name: 245, dtype: object
date 2018-10-16 00:00:00
team Denmark
score 2.0
suf_score 0.0
rank 10.0
rank_suf 24.0
rank_change 1.0
total_points 1581.0
result 0
rank_dif -14.0
points_by_rank 0.125
team_points 3
country_classification Classe A
Name: 246, dtype: object
date 2018-10-16 00:00:00
team Indonesia
score 1.0
suf_score 1.0
rank 164.0
rank_suf 143.0
rank_change 0.0
total_points 997.0
result 2
rank_dif 21.0
points_by_rank 0.006993
team_points 1
country_classification Classe D
Name: 247, dtype: object
date 2018-10-16 00:00:00
team Iran
score 2.0
suf_score 1.0
rank 33.0
rank_suf 58.0
rank_change 1.0
total_points 1474.0
result 0
rank_dif -25.0
points_by_rank 0.051724
team_points 3
country_classification Classe A
Name: 248, dtype: object
date 2018-10-16 00:00:00
team Japan
score 4.0
suf_score 3.0
rank 54.0
rank_suf 5.0
rank_change -1.0
total_points 1398.0
result 0
rank_dif 49.0
points_by_rank 0.6
team_points 3
country_classification Classe B
Name: 249, dtype: object
date 2018-10-16 00:00:00
team South Korea
score 2.0
suf_score 2.0
rank 55.0
rank_suf 70.0
rank_change -2.0
total_points 1395.0
result 2
rank_dif -15.0
points_by_rank 0.014286
team_points 1
country_classification Classe B
Name: 250, dtype: object
date 2018-10-16 00:00:00
team Laos
score 1.0
suf_score 4.0
rank 179.0
rank_suf 186.0
rank_change 1.0
total_points 946.0
result 1
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 251, dtype: object
date 2018-10-16 00:00:00
team Mexico
score 0.0
suf_score 1.0
rank 15.0
rank_suf 12.0
rank_change -1.0
total_points 1550.0
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 252, dtype: object
date 2018-10-16 00:00:00
team Oman
score 0.0
suf_score 0.0
rank 85.0
rank_suf 58.0
rank_change 1.0
total_points 1287.0
result 2
rank_dif 27.0
points_by_rank 0.017241
team_points 1
country_classification Classe B
Name: 253, dtype: object
date 2018-10-16 00:00:00
team Sweden
score 1.0
suf_score 1.0
rank 15.0
rank_suf 26.0
rank_change 2.0
total_points 1550.0
result 2
rank_dif -11.0
points_by_rank 0.038462
team_points 1
country_classification Classe A
Name: 254, dtype: object
date 2018-10-16 00:00:00
team United Arab Emirates
score 0.0
suf_score 2.0
rank 77.0
rank_suf 32.0
rank_change 0.0
total_points 1308.0
result 1
rank_dif 45.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 255, dtype: object
date 2018-10-16 00:00:00
team United States
score 1.0
suf_score 1.0
rank 22.0
rank_suf 21.0
rank_change 0.0
total_points 1510.0
result 2
rank_dif 1.0
points_by_rank 0.047619
team_points 1
country_classification Classe A
Name: 256, dtype: object
date 2018-10-16 00:00:00
team Uzbekistan
score 2.0
suf_score 0.0
rank 96.0
rank_suf 94.0
rank_change 1.0
total_points 1245.0
result 0
rank_dif 2.0
points_by_rank 0.031915
team_points 3
country_classification Classe B
Name: 257, dtype: object
date 2018-10-16 00:00:00
team Madagascar
score 1.0
suf_score 0.0
rank 106.0
rank_suf 141.0
rank_change -1.0
total_points 1205.0
result 0
rank_dif -35.0
points_by_rank 0.021277
team_points 3
country_classification Classe B
Name: 258, dtype: object
date 2018-10-16 00:00:00
team Malawi
score 0.0
suf_score 0.0
rank 125.0
rank_suf 50.0
rank_change 2.0
total_points 1129.0
result 2
rank_dif 75.0
points_by_rank 0.02
team_points 1
country_classification Classe C
Name: 259, dtype: object
date 2018-10-16 00:00:00
team Burundi
score 1.0
suf_score 1.0
rank 148.0
rank_suf 63.0
rank_change 0.0
total_points 1061.0
result 2
rank_dif 85.0
points_by_rank 0.015873
team_points 1
country_classification Classe C
Name: 260, dtype: object
date 2018-10-16 00:00:00
team Benin
score 1.0
suf_score 0.0
rank 88.0
rank_suf 69.0
rank_change 0.0
total_points 1273.0
result 0
rank_dif 19.0
points_by_rank 0.043478
team_points 3
country_classification Classe B
Name: 261, dtype: object
date 2018-10-16 00:00:00
team Seychelles
score 0.0
suf_score 0.0
rank 189.0
rank_suf 73.0
rank_change 1.0
total_points 913.0
result 2
rank_dif 116.0
points_by_rank 0.013699
team_points 1
country_classification Classe D
Name: 262, dtype: object
date 2018-10-16 00:00:00
team Liberia
score 2.0
suf_score 1.0
rank 155.0
rank_suf 84.0
rank_change -3.0
total_points 1023.0
result 0
rank_dif 71.0
points_by_rank 0.035714
team_points 3
country_classification Classe C
Name: 263, dtype: object
date 2018-10-16 00:00:00
team Mauritania
score 1.0
suf_score 0.0
rank 103.0
rank_suf 135.0
rank_change -3.0
total_points 1217.0
result 0
rank_dif -32.0
points_by_rank 0.022222
team_points 3
country_classification Classe B
Name: 264, dtype: object
date 2018-10-16 00:00:00
team Argentina
score 0.0
suf_score 1.0
rank 11.0
rank_suf 3.0
rank_change 0.0
total_points 1575.0
result 1
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 265, dtype: object
date 2018-10-16 00:00:00
team Canada
score 5.0
suf_score 0.0
rank 79.0
rank_suf 177.0
rank_change 0.0
total_points 1307.0
result 0
rank_dif -98.0
points_by_rank 0.016949
team_points 3
country_classification Classe B
Name: 266, dtype: object
date 2018-11-03 00:00:00
team Malaysia
score 3.0
suf_score 0.0
rank 169.0
rank_suf 151.0
rank_change -2.0
total_points 974.0
result 0
rank_dif 18.0
points_by_rank 0.019868
team_points 3
country_classification Classe D
Name: 267, dtype: object
date 2018-11-08 00:00:00
team Cambodia
score 0.0
suf_score 1.0
rank 170.0
rank_suf 169.0
rank_change 1.0
total_points 973.0
result 1
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 268, dtype: object
date 2018-11-08 00:00:00
team Laos
score 0.0
suf_score 3.0
rank 181.0
rank_suf 102.0
rank_change 2.0
total_points 937.0
result 1
rank_dif 79.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 269, dtype: object
date 2018-11-09 00:00:00
team Singapore
score 1.0
suf_score 0.0
rank 165.0
rank_suf 160.0
rank_change -1.0
total_points 991.0
result 0
rank_dif 5.0
points_by_rank 0.01875
team_points 3
country_classification Classe D
Name: 270, dtype: object
date 2018-11-09 00:00:00
team Thailand
score 7.0
suf_score 0.0
rank 121.0
rank_suf 191.0
rank_change -1.0
total_points 1154.0
result 0
rank_dif -70.0
points_by_rank 0.015707
team_points 3
country_classification Classe C
Name: 271, dtype: object
date 2018-11-12 00:00:00
team Myanmar
score 4.0
suf_score 1.0
rank 141.0
rank_suf 170.0
rank_change 3.0
total_points 1080.0
result 0
rank_dif -29.0
points_by_rank 0.017647
team_points 3
country_classification Classe C
Name: 272, dtype: object
date 2018-11-12 00:00:00
team Malaysia
score 3.0
suf_score 1.0
rank 169.0
rank_suf 181.0
rank_change -2.0
total_points 974.0
result 0
rank_dif -12.0
points_by_rank 0.016575
team_points 3
country_classification Classe D
Name: 273, dtype: object
date 2018-11-13 00:00:00
team Indonesia
score 3.0
suf_score 1.0
rank 160.0
rank_suf 191.0
rank_change -4.0
total_points 1004.0
result 0
rank_dif -31.0
points_by_rank 0.015707
team_points 3
country_classification Classe C
Name: 274, dtype: object
date 2018-11-13 00:00:00
team Philippines
score 1.0
suf_score 0.0
rank 116.0
rank_suf 165.0
rank_change 2.0
total_points 1171.0
result 0
rank_dif -49.0
points_by_rank 0.018182
team_points 3
country_classification Classe C
Name: 275, dtype: object
date 2018-11-14 00:00:00
team Switzerland
score 0.0
suf_score 1.0
rank 8.0
rank_suf 96.0
rank_change 0.0
total_points 1598.0
result 1
rank_dif -88.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 276, dtype: object
date 2018-11-14 00:00:00
team Vanuatu
score 0.0
suf_score 1.0
rank 162.0
rank_suf 155.0
rank_change -1.0
total_points 1000.0
result 1
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 277, dtype: object
date 2018-11-15 00:00:00
team Belgium
score 2.0
suf_score 0.0
rank 1.0
rank_suf 36.0
rank_change 0.0
total_points 1733.0
result 0
rank_dif -35.0
points_by_rank 0.083333
team_points 3
country_classification Classe S
Name: 278, dtype: object
date 2018-11-15 00:00:00
team Croatia
score 3.0
suf_score 2.0
rank 4.0
rank_suf 9.0
rank_change 0.0
total_points 1635.0
result 0
rank_dif -5.0
points_by_rank 0.333333
team_points 3
country_classification Classe S-
Name: 279, dtype: object
date 2018-11-15 00:00:00
team Austria
score 0.0
suf_score 0.0
rank 24.0
rank_suf 32.0
rank_change 0.0
total_points 1502.0
result 2
rank_dif -8.0
points_by_rank 0.03125
team_points 1
country_classification Classe A
Name: 280, dtype: object
date 2018-11-15 00:00:00
team Hungary
score 2.0
suf_score 0.0
rank 55.0
rank_suf 98.0
rank_change 6.0
total_points 1400.0
result 0
rank_dif -43.0
points_by_rank 0.030612
team_points 3
country_classification Classe B
Name: 281, dtype: object
date 2018-11-15 00:00:00
team Greece
score 1.0
suf_score 0.0
rank 42.0
rank_suf 56.0
rank_change 0.0
total_points 1432.0
result 0
rank_dif -14.0
points_by_rank 0.053571
team_points 3
country_classification Classe A
Name: 282, dtype: object
date 2018-11-15 00:00:00
team Andorra
score 1.0
suf_score 1.0
rank 133.0
rank_suf 92.0
rank_change 5.0
total_points 1109.0
result 2
rank_dif 41.0
points_by_rank 0.01087
team_points 1
country_classification Classe C
Name: 283, dtype: object
date 2018-11-15 00:00:00
team Kazakhstan
score 1.0
suf_score 1.0
rank 117.0
rank_suf 132.0
rank_change -1.0
total_points 1166.0
result 2
rank_dif -15.0
points_by_rank 0.007576
team_points 1
country_classification Classe C
Name: 284, dtype: object
date 2018-11-15 00:00:00
team Luxembourg
score 0.0
suf_score 2.0
rank 84.0
rank_suf 78.0
rank_change 2.0
total_points 1287.0
result 1
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 285, dtype: object
date 2018-11-15 00:00:00
team San Marino
score 0.0
suf_score 1.0
rank 209.0
rank_suf 171.0
rank_change 5.0
total_points 862.0
result 1
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 286, dtype: object
date 2018-11-15 00:00:00
team England
score 3.0
suf_score 0.0
rank 5.0
rank_suf 23.0
rank_change -1.0
total_points 1619.0
result 0
rank_dif -18.0
points_by_rank 0.130435
team_points 3
country_classification Classe S-
Name: 287, dtype: object
date 2018-11-15 00:00:00
team Germany
score 3.0
suf_score 0.0
rank 14.0
rank_suf 41.0
rank_change 2.0
total_points 1555.0
result 0
rank_dif -27.0
points_by_rank 0.073171
team_points 3
country_classification Classe A
Name: 288, dtype: object
date 2018-11-15 00:00:00
team Iran
score 1.0
suf_score 0.0
rank 30.0
rank_suf 93.0
rank_change -3.0
total_points 1478.0
result 0
rank_dif -63.0
points_by_rank 0.032258
team_points 3
country_classification Classe A
Name: 289, dtype: object
date 2018-11-15 00:00:00
team Israel
score 7.0
suf_score 0.0
rank 91.0
rank_suf 147.0
rank_change -3.0
total_points 1267.0
result 0
rank_dif -56.0
points_by_rank 0.020408
team_points 3
country_classification Classe B
Name: 290, dtype: object
date 2018-11-15 00:00:00
team Peru
score 0.0
suf_score 2.0
rank 20.0
rank_suf 61.0
rank_change -1.0
total_points 1530.0
result 1
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 291, dtype: object
date 2018-11-15 00:00:00
team Poland
score 0.0
suf_score 1.0
rank 21.0
rank_suf 48.0
rank_change 3.0
total_points 1523.0
result 1
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 292, dtype: object
date 2018-11-15 00:00:00
team Republic of Ireland
score 0.0
suf_score 0.0
rank 33.0
rank_suf 34.0
rank_change 3.0
total_points 1473.0
result 2
rank_dif -1.0
points_by_rank 0.029412
team_points 1
country_classification Classe A
Name: 293, dtype: object
date 2018-11-15 00:00:00
team Uzbekistan
score 0.0
suf_score 0.0
rank 94.0
rank_suf 82.0
rank_change -2.0
total_points 1254.0
result 2
rank_dif 12.0
points_by_rank 0.012195
team_points 1
country_classification Classe B
Name: 294, dtype: object
date 2018-11-16 00:00:00
team Netherlands
score 2.0
suf_score 0.0
rank 15.0
rank_suf 2.0
rank_change -2.0
total_points 1550.0
result 0
rank_dif 13.0
points_by_rank 1.5
team_points 3
country_classification Classe A
Name: 295, dtype: object
date 2018-11-16 00:00:00
team Slovakia
score 4.0
suf_score 1.0
rank 28.0
rank_suf 27.0
rank_change 2.0
total_points 1483.0
result 0
rank_dif 1.0
points_by_rank 0.111111
team_points 3
country_classification Classe A
Name: 296, dtype: object
date 2018-11-16 00:00:00
team Wales
score 1.0
suf_score 2.0
rank 18.0
rank_suf 10.0
rank_change -1.0
total_points 1538.0
result 1
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 297, dtype: object
date 2018-11-16 00:00:00
team Slovenia
score 1.0
suf_score 1.0
rank 62.0
rank_suf 48.0
rank_change 1.0
total_points 1367.0
result 2
rank_dif 14.0
points_by_rank 0.020833
team_points 1
country_classification Classe B
Name: 298, dtype: object
date 2018-11-16 00:00:00
team Cyprus
score 1.0
suf_score 1.0
rank 86.0
rank_suf 45.0
rank_change 0.0
total_points 1279.0
result 2
rank_dif 41.0
points_by_rank 0.022222
team_points 1
country_classification Classe B
Name: 299, dtype: object
date 2018-11-16 00:00:00
team Gibraltar
score 2.0
suf_score 6.0
rank 190.0
rank_suf 101.0
rank_change -8.0
total_points 911.0
result 1
rank_dif 89.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 300, dtype: object
date 2018-11-16 00:00:00
team Argentina
score 2.0
suf_score 0.0
rank 12.0
rank_suf 16.0
rank_change 1.0
total_points 1573.0
result 0
rank_dif -4.0
points_by_rank 0.1875
team_points 3
country_classification Classe A
Name: 301, dtype: object
date 2018-11-16 00:00:00
team Brazil
score 1.0
suf_score 0.0
rank 3.0
rank_suf 6.0
rank_change 0.0
total_points 1669.0
result 0
rank_dif -3.0
points_by_rank 0.5
team_points 3
country_classification Classe S-
Name: 302, dtype: object
date 2018-11-16 00:00:00
team Chile
score 2.0
suf_score 3.0
rank 13.0
rank_suf 37.0
rank_change 1.0
total_points 1568.0
result 1
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 303, dtype: object
date 2018-11-16 00:00:00
team Honduras
score 1.0
suf_score 0.0
rank 62.0
rank_suf 70.0
rank_change 0.0
total_points 1367.0
result 0
rank_dif -8.0
points_by_rank 0.042857
team_points 3
country_classification Classe B
Name: 304, dtype: object
date 2018-11-16 00:00:00
team Japan
score 1.0
suf_score 1.0
rank 50.0
rank_suf 29.0
rank_change -4.0
total_points 1409.0
result 2
rank_dif 21.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 305, dtype: object
date 2018-11-16 00:00:00
team Oman
score 1.0
suf_score 1.0
rank 84.0
rank_suf 74.0
rank_change -1.0
total_points 1287.0
result 2
rank_dif 10.0
points_by_rank 0.013514
team_points 1
country_classification Classe B
Name: 306, dtype: object
date 2018-11-16 00:00:00
team Palestine
score 2.0
suf_score 1.0
rank 99.0
rank_suf 199.0
rank_change -1.0
total_points 1233.0
result 0
rank_dif -100.0
points_by_rank 0.015075
team_points 3
country_classification Classe B
Name: 307, dtype: object
date 2018-11-16 00:00:00
team Saudi Arabia
score 1.0
suf_score 0.0
rank 72.0
rank_suf 131.0
rank_change 1.0
total_points 1334.0
result 0
rank_dif -59.0
points_by_rank 0.022901
team_points 3
country_classification Classe B
Name: 308, dtype: object
date 2018-11-16 00:00:00
team United Arab Emirates
score 0.0
suf_score 0.0
rank 81.0
rank_suf 59.0
rank_change 4.0
total_points 1305.0
result 2
rank_dif 22.0
points_by_rank 0.016949
team_points 1
country_classification Classe B
Name: 309, dtype: object
date 2018-11-16 00:00:00
team Laos
score 1.0
suf_score 3.0
rank 181.0
rank_suf 141.0
rank_change 2.0
total_points 937.0
result 1
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 310, dtype: object
date 2018-11-16 00:00:00
team Vietnam
score 2.0
suf_score 0.0
rank 102.0
rank_suf 169.0
rank_change 0.0
total_points 1220.0
result 0
rank_dif -67.0
points_by_rank 0.017751
team_points 3
country_classification Classe B
Name: 311, dtype: object
date 2018-11-16 00:00:00
team Morocco
score 2.0
suf_score 0.0
rank 47.0
rank_suf 51.0
rank_change 2.0
total_points 1422.0
result 0
rank_dif -4.0
points_by_rank 0.058824
team_points 3
country_classification Classe A
Name: 312, dtype: object
date 2018-11-16 00:00:00
team South Sudan
score 2.0
suf_score 5.0
rank 159.0
rank_suf 142.0
rank_change 1.0
total_points 1005.0
result 1
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 313, dtype: object
date 2018-11-16 00:00:00
team Egypt
score 3.0
suf_score 2.0
rank 58.0
rank_suf 22.0
rank_change -6.0
total_points 1378.0
result 0
rank_dif 36.0
points_by_rank 0.136364
team_points 3
country_classification Classe B
Name: 314, dtype: object
date 2018-11-16 00:00:00
team Mongolia
score 1.0
suf_score 5.0
rank 186.0
rank_suf 144.0
rank_change 0.0
total_points 923.0
result 1
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 315, dtype: object
date 2018-11-16 00:00:00
team Bermuda
score 1.0
suf_score 0.0
rank 180.0
rank_suf 70.0
rank_change -1.0
total_points 940.0
result 0
rank_dif 110.0
points_by_rank 0.042857
team_points 3
country_classification Classe D
Name: 316, dtype: object
date 2018-11-16 00:00:00
team Aruba
score 0.0
suf_score 2.0
rank 185.0
rank_suf 202.0
rank_change 0.0
total_points 924.0
result 1
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 317, dtype: object
date 2018-11-16 00:00:00
team Belize
score 1.0
suf_score 0.0
rank 164.0
rank_suf 175.0
rank_change 4.0
total_points 995.0
result 0
rank_dif -11.0
points_by_rank 0.017143
team_points 3
country_classification Classe D
Name: 318, dtype: object
date 2018-11-17 00:00:00
team Italy
score 0.0
suf_score 0.0
rank 19.0
rank_suf 7.0
rank_change -1.0
total_points 1533.0
result 2
rank_dif 12.0
points_by_rank 0.142857
team_points 1
country_classification Classe A
Name: 319, dtype: object
date 2018-11-17 00:00:00
team Turkey
score 0.0
suf_score 1.0
rank 38.0
rank_suf 17.0
rank_change 0.0
total_points 1449.0
result 1
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 320, dtype: object
date 2018-11-17 00:00:00
team Albania
score 0.0
suf_score 4.0
rank 60.0
rank_suf 40.0
rank_change 3.0
total_points 1372.0
result 1
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 321, dtype: object
date 2018-11-17 00:00:00
team Serbia
score 2.0
suf_score 1.0
rank 35.0
rank_suf 39.0
rank_change 0.0
total_points 1471.0
result 0
rank_dif -4.0
points_by_rank 0.076923
team_points 3
country_classification Classe A
Name: 322, dtype: object
date 2018-11-17 00:00:00
team Romania
score 3.0
suf_score 0.0
rank 26.0
rank_suf 129.0
rank_change -1.0
total_points 1491.0
result 0
rank_dif -103.0
points_by_rank 0.023256
team_points 3
country_classification Classe A
Name: 323, dtype: object
date 2018-11-17 00:00:00
team Malta
score 0.0
suf_score 5.0
rank 183.0
rank_suf 137.0
rank_change 0.0
total_points 927.0
result 1
rank_dif 46.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 324, dtype: object
date 2018-11-17 00:00:00
team Azerbaijan
score 2.0
suf_score 0.0
rank 107.0
rank_suf 95.0
rank_change -1.0
total_points 1207.0
result 0
rank_dif 12.0
points_by_rank 0.031579
team_points 3
country_classification Classe B
Name: 325, dtype: object
date 2018-11-17 00:00:00
team Australia
score 1.0
suf_score 1.0
rank 42.0
rank_suf 53.0
rank_change -1.0
total_points 1432.0
result 2
rank_dif -11.0
points_by_rank 0.018868
team_points 1
country_classification Classe A
Name: 326, dtype: object
date 2018-11-17 00:00:00
team Jordan
score 2.0
suf_score 1.0
rank 112.0
rank_suf 97.0
rank_change 2.0
total_points 1189.0
result 0
rank_dif 15.0
points_by_rank 0.030928
team_points 3
country_classification Classe C
Name: 327, dtype: object
date 2018-11-17 00:00:00
team Vanuatu
score 2.0
suf_score 2.0
rank 162.0
rank_suf 155.0
rank_change -1.0
total_points 1000.0
result 2
rank_dif 7.0
points_by_rank 0.006452
team_points 1
country_classification Classe D
Name: 328, dtype: object
date 2018-11-17 00:00:00
team Thailand
score 4.0
suf_score 2.0
rank 121.0
rank_suf 160.0
rank_change -1.0
total_points 1154.0
result 0
rank_dif -39.0
points_by_rank 0.01875
team_points 3
country_classification Classe C
Name: 329, dtype: object
date 2018-11-17 00:00:00
team Timor-Leste
score 2.0
suf_score 3.0
rank 191.0
rank_suf 116.0
rank_change 1.0
total_points 910.0
result 1
rank_dif 75.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 330, dtype: object
date 2018-11-17 00:00:00
team Equatorial Guinea
score 0.0
suf_score 1.0
rank 146.0
rank_suf 25.0
rank_change 5.0
total_points 1067.0
result 1
rank_dif 121.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 331, dtype: object
date 2018-11-17 00:00:00
team Gambia
score 3.0
suf_score 1.0
rank 173.0
rank_suf 87.0
rank_change 2.0
total_points 967.0
result 0
rank_dif 86.0
points_by_rank 0.034483
team_points 3
country_classification Classe D
Name: 332, dtype: object
date 2018-11-17 00:00:00
team Seychelles
score 1.0
suf_score 8.0
rank 188.0
rank_suf 105.0
rank_change -1.0
total_points 917.0
result 1
rank_dif 83.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 333, dtype: object
date 2018-11-17 00:00:00
team Namibia
score 0.0
suf_score 0.0
rank 109.0
rank_suf 119.0
rank_change -7.0
total_points 1192.0
result 2
rank_dif -10.0
points_by_rank 0.008403
team_points 1
country_classification Classe C
Name: 334, dtype: object
date 2018-11-17 00:00:00
team Cuba
score 1.0
suf_score 0.0
rank 177.0
rank_suf 152.0
rank_change -2.0
total_points 954.0
result 0
rank_dif 25.0
points_by_rank 0.019737
team_points 3
country_classification Classe D
Name: 335, dtype: object
date 2018-11-17 00:00:00
team Jamaica
score 2.0
suf_score 1.0
rank 53.0
rank_suf 153.0
rank_change 0.0
total_points 1401.0
result 0
rank_dif -100.0
points_by_rank 0.019608
team_points 3
country_classification Classe A
Name: 336, dtype: object
date 2018-11-17 00:00:00
team Nicaragua
score 0.0
suf_score 2.0
rank 127.0
rank_suf 103.0
rank_change -1.0
total_points 1125.0
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 337, dtype: object
date 2018-11-18 00:00:00
team Switzerland
score 5.0
suf_score 2.0
rank 8.0
rank_suf 1.0
rank_change 0.0
total_points 1598.0
result 0
rank_dif 7.0
points_by_rank 3.0
team_points 3
country_classification Classe A
Name: 338, dtype: object
date 2018-11-18 00:00:00
team England
score 2.0
suf_score 1.0
rank 5.0
rank_suf 4.0
rank_change -1.0
total_points 1619.0
result 0
rank_dif 1.0
points_by_rank 0.75
team_points 3
country_classification Classe S-
Name: 339, dtype: object
date 2018-11-18 00:00:00
team Northern Ireland
score 1.0
suf_score 2.0
rank 34.0
rank_suf 24.0
rank_change 6.0
total_points 1472.0
result 1
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 340, dtype: object
date 2018-11-18 00:00:00
team Greece
score 0.0
suf_score 1.0
rank 42.0
rank_suf 98.0
rank_change 0.0
total_points 1432.0
result 1
rank_dif -56.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 341, dtype: object
date 2018-11-18 00:00:00
team Hungary
score 2.0
suf_score 0.0
rank 55.0
rank_suf 56.0
rank_change 6.0
total_points 1400.0
result 0
rank_dif -1.0
points_by_rank 0.053571
team_points 3
country_classification Classe B
Name: 342, dtype: object
date 2018-11-18 00:00:00
team San Marino
score 0.0
suf_score 2.0
rank 209.0
rank_suf 78.0
rank_change 5.0
total_points 862.0
result 1
rank_dif 131.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 343, dtype: object
date 2018-11-18 00:00:00
team Moldova
score 1.0
suf_score 1.0
rank 171.0
rank_suf 84.0
rank_change -2.0
total_points 969.0
result 2
rank_dif 87.0
points_by_rank 0.011905
team_points 1
country_classification Classe D
Name: 344, dtype: object
date 2018-11-18 00:00:00
team Spain
score 1.0
suf_score 0.0
rank 9.0
rank_suf 32.0
rank_change 0.0
total_points 1594.0
result 0
rank_dif -23.0
points_by_rank 0.09375
team_points 3
country_classification Classe A
Name: 345, dtype: object
date 2018-11-18 00:00:00
team Ethiopia
score 0.0
suf_score 2.0
rank 150.0
rank_suf 52.0
rank_change 1.0
total_points 1054.0
result 1
rank_dif 98.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 346, dtype: object
date 2018-11-18 00:00:00
team Angola
score 2.0
suf_score 1.0
rank 130.0
rank_suf 57.0
rank_change -5.0
total_points 1113.0
result 0
rank_dif 73.0
points_by_rank 0.052632
team_points 3
country_classification Classe C
Name: 347, dtype: object
date 2018-11-18 00:00:00
team Bahamas
score 1.0
suf_score 1.0
rank 210.0
rank_suf 208.0
rank_change 0.0
total_points 858.0
result 2
rank_dif 2.0
points_by_rank 0.004808
team_points 1
country_classification Classe D
Name: 348, dtype: object
date 2018-11-19 00:00:00
team Germany
score 2.0
suf_score 2.0
rank 14.0
rank_suf 15.0
rank_change 2.0
total_points 1555.0
result 2
rank_dif -1.0
points_by_rank 0.066667
team_points 1
country_classification Classe A
Name: 349, dtype: object
date 2018-11-19 00:00:00
team Czech Republic
score 1.0
suf_score 0.0
rank 48.0
rank_suf 28.0
rank_change 1.0
total_points 1420.0
result 0
rank_dif 20.0
points_by_rank 0.107143
team_points 3
country_classification Classe A
Name: 350, dtype: object
date 2018-11-19 00:00:00
team Denmark
score 0.0
suf_score 0.0
rank 10.0
rank_suf 33.0
rank_change 0.0
total_points 1584.0
result 2
rank_dif -23.0
points_by_rank 0.030303
team_points 1
country_classification Classe A
Name: 351, dtype: object
date 2018-11-19 00:00:00
team Bulgaria
score 1.0
suf_score 1.0
rank 45.0
rank_suf 62.0
rank_change 1.0
total_points 1428.0
result 2
rank_dif -17.0
points_by_rank 0.016129
team_points 1
country_classification Classe A
Name: 352, dtype: object
date 2018-11-19 00:00:00
team Cyprus
score 0.0
suf_score 2.0
rank 86.0
rank_suf 48.0
rank_change 0.0
total_points 1279.0
result 1
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 353, dtype: object
date 2018-11-19 00:00:00
team Andorra
score 0.0
suf_score 0.0
rank 133.0
rank_suf 132.0
rank_change 5.0
total_points 1109.0
result 2
rank_dif 1.0
points_by_rank 0.007576
team_points 1
country_classification Classe C
Name: 354, dtype: object
date 2018-11-19 00:00:00
team Georgia
score 2.0
suf_score 1.0
rank 92.0
rank_suf 117.0
rank_change -1.0
total_points 1265.0
result 0
rank_dif -25.0
points_by_rank 0.025641
team_points 3
country_classification Classe B
Name: 355, dtype: object
date 2018-11-19 00:00:00
team Liechtenstein
score 2.0
suf_score 2.0
rank 182.0
rank_suf 101.0
rank_change 4.0
total_points 936.0
result 2
rank_dif 81.0
points_by_rank 0.009901
team_points 1
country_classification Classe D
Name: 356, dtype: object
date 2018-11-19 00:00:00
team Iceland
score 2.0
suf_score 2.0
rank 36.0
rank_suf 96.0
rank_change 0.0
total_points 1458.0
result 2
rank_dif -60.0
points_by_rank 0.010417
team_points 1
country_classification Classe A
Name: 357, dtype: object
date 2018-11-19 00:00:00
team Oman
score 2.0
suf_score 1.0
rank 84.0
rank_suf 113.0
rank_change -1.0
total_points 1287.0
result 0
rank_dif -29.0
points_by_rank 0.026549
team_points 3
country_classification Classe B
Name: 358, dtype: object
date 2018-11-20 00:00:00
team Portugal
score 1.0
suf_score 1.0
rank 7.0
rank_suf 21.0
rank_change 0.0
total_points 1616.0
result 2
rank_dif -14.0
points_by_rank 0.047619
team_points 1
country_classification Classe S-
Name: 359, dtype: object
date 2018-11-20 00:00:00
team Sweden
score 2.0
suf_score 0.0
rank 17.0
rank_suf 41.0
rank_change 2.0
total_points 1548.0
result 0
rank_dif -24.0
points_by_rank 0.073171
team_points 3
country_classification Classe A
Name: 360, dtype: object
date 2018-11-20 00:00:00
team Scotland
score 3.0
suf_score 2.0
rank 40.0
rank_suf 91.0
rank_change 1.0
total_points 1435.0
result 0
rank_dif -51.0
points_by_rank 0.032967
team_points 3
country_classification Classe A
Name: 361, dtype: object
date 2018-11-20 00:00:00
team Montenegro
score 0.0
suf_score 1.0
rank 39.0
rank_suf 26.0
rank_change -2.0
total_points 1440.0
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 362, dtype: object
date 2018-11-20 00:00:00
team Serbia
score 4.0
suf_score 1.0
rank 35.0
rank_suf 129.0
rank_change 0.0
total_points 1471.0
result 0
rank_dif -94.0
points_by_rank 0.023256
team_points 3
country_classification Classe A
Name: 363, dtype: object
date 2018-11-20 00:00:00
team Kosovo
score 4.0
suf_score 0.0
rank 137.0
rank_suf 107.0
rank_change -1.0
total_points 1099.0
result 0
rank_dif 30.0
points_by_rank 0.028037
team_points 3
country_classification Classe C
Name: 364, dtype: object
date 2018-11-20 00:00:00
team Malta
score 1.0
suf_score 1.0
rank 183.0
rank_suf 95.0
rank_change 0.0
total_points 927.0
result 2
rank_dif 88.0
points_by_rank 0.010526
team_points 1
country_classification Classe D
Name: 365, dtype: object
date 2018-11-20 00:00:00
team Albania
score 1.0
suf_score 0.0
rank 60.0
rank_suf 18.0
rank_change 3.0
total_points 1372.0
result 0
rank_dif 42.0
points_by_rank 0.166667
team_points 3
country_classification Classe B
Name: 366, dtype: object
date 2018-11-20 00:00:00
team Argentina
score 2.0
suf_score 0.0
rank 12.0
rank_suf 16.0
rank_change 1.0
total_points 1573.0
result 0
rank_dif -4.0
points_by_rank 0.1875
team_points 3
country_classification Classe A
Name: 367, dtype: object
date 2018-11-20 00:00:00
team Australia
score 3.0
suf_score 0.0
rank 42.0
rank_suf 82.0
rank_change -1.0
total_points 1432.0
result 0
rank_dif -40.0
points_by_rank 0.036585
team_points 3
country_classification Classe A
Name: 368, dtype: object
date 2018-11-20 00:00:00
team Brazil
score 1.0
suf_score 0.0
rank 3.0
rank_suf 51.0
rank_change 0.0
total_points 1669.0
result 0
rank_dif -48.0
points_by_rank 0.058824
team_points 3
country_classification Classe S-
Name: 369, dtype: object
date 2018-11-20 00:00:00
team Chile
score 4.0
suf_score 1.0
rank 13.0
rank_suf 62.0
rank_change 1.0
total_points 1568.0
result 0
rank_dif -49.0
points_by_rank 0.048387
team_points 3
country_classification Classe A
Name: 370, dtype: object
date 2018-11-20 00:00:00
team China PR
score 1.0
suf_score 1.0
rank 75.0
rank_suf 99.0
rank_change -1.0
total_points 1317.0
result 2
rank_dif -24.0
points_by_rank 0.010101
team_points 1
country_classification Classe B
Name: 371, dtype: object
date 2018-11-20 00:00:00
team El Salvador
score 1.0
suf_score 0.0
rank 70.0
rank_suf 103.0
rank_change -2.0
total_points 1335.0
result 0
rank_dif -33.0
points_by_rank 0.029126
team_points 3
country_classification Classe B
Name: 372, dtype: object
date 2018-11-20 00:00:00
team France
score 1.0
suf_score 0.0
rank 2.0
rank_suf 6.0
rank_change 1.0
total_points 1732.0
result 0
rank_dif -4.0
points_by_rank 0.5
team_points 3
country_classification Classe S
Name: 373, dtype: object
date 2018-11-20 00:00:00
team Iran
score 1.0
suf_score 1.0
rank 30.0
rank_suf 29.0
rank_change -3.0
total_points 1478.0
result 2
rank_dif 1.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 374, dtype: object
date 2018-11-20 00:00:00
team Iraq
score 0.0
suf_score 0.0
rank 89.0
rank_suf 59.0
rank_change 0.0
total_points 1270.0
result 2
rank_dif 30.0
points_by_rank 0.016949
team_points 1
country_classification Classe B
Name: 375, dtype: object
date 2018-11-20 00:00:00
team Italy
score 1.0
suf_score 0.0
rank 19.0
rank_suf 23.0
rank_change -1.0
total_points 1533.0
result 0
rank_dif -4.0
points_by_rank 0.130435
team_points 3
country_classification Classe A
Name: 376, dtype: object
date 2018-11-20 00:00:00
team Jordan
score 1.0
suf_score 1.0
rank 112.0
rank_suf 72.0
rank_change 2.0
total_points 1189.0
result 2
rank_dif 40.0
points_by_rank 0.013889
team_points 1
country_classification Classe C
Name: 377, dtype: object
date 2018-11-20 00:00:00
team South Korea
score 4.0
suf_score 0.0
rank 53.0
rank_suf 94.0
rank_change -2.0
total_points 1401.0
result 0
rank_dif -41.0
points_by_rank 0.031915
team_points 3
country_classification Classe A
Name: 378, dtype: object
date 2018-11-20 00:00:00
team Kuwait
score 1.0
suf_score 2.0
rank 157.0
rank_suf 74.0
rank_change -2.0
total_points 1020.0
result 1
rank_dif 83.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 379, dtype: object
date 2018-11-20 00:00:00
team Nigeria
score 0.0
suf_score 0.0
rank 44.0
rank_suf 79.0
rank_change -4.0
total_points 1431.0
result 2
rank_dif -35.0
points_by_rank 0.012658
team_points 1
country_classification Classe A
Name: 380, dtype: object
date 2018-11-20 00:00:00
team Panama
score 1.0
suf_score 2.0
rank 70.0
rank_suf 61.0
rank_change 0.0
total_points 1335.0
result 1
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 381, dtype: object
date 2018-11-20 00:00:00
team Peru
score 2.0
suf_score 3.0
rank 20.0
rank_suf 37.0
rank_change -1.0
total_points 1530.0
result 1
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 382, dtype: object
date 2018-11-20 00:00:00
team South Africa
score 1.0
suf_score 1.0
rank 73.0
rank_suf 31.0
rank_change 0.0
total_points 1321.0
result 2
rank_dif 42.0
points_by_rank 0.032258
team_points 1
country_classification Classe B
Name: 383, dtype: object
date 2018-11-20 00:00:00
team Tunisia
score 0.0
suf_score 1.0
rank 22.0
rank_suf 47.0
rank_change -1.0
total_points 1515.0
result 1
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 384, dtype: object
date 2018-11-20 00:00:00
team Turkey
score 0.0
suf_score 0.0
rank 38.0
rank_suf 27.0
rank_change 0.0
total_points 1449.0
result 2
rank_dif 11.0
points_by_rank 0.037037
team_points 1
country_classification Classe A
Name: 385, dtype: object
date 2018-11-20 00:00:00
team United Arab Emirates
score 2.0
suf_score 0.0
rank 81.0
rank_suf 131.0
rank_change 4.0
total_points 1305.0
result 0
rank_dif -50.0
points_by_rank 0.022901
team_points 3
country_classification Classe B
Name: 386, dtype: object
date 2018-11-20 00:00:00
team Myanmar
score 0.0
suf_score 0.0
rank 141.0
rank_suf 102.0
rank_change 3.0
total_points 1080.0
result 2
rank_dif 39.0
points_by_rank 0.009804
team_points 1
country_classification Classe C
Name: 387, dtype: object
date 2018-11-20 00:00:00
team Cambodia
score 3.0
suf_score 1.0
rank 170.0
rank_suf 181.0
rank_change 1.0
total_points 973.0
result 0
rank_dif -11.0
points_by_rank 0.016575
team_points 3
country_classification Classe D
Name: 388, dtype: object
date 2018-11-21 00:00:00
team Philippines
score 1.0
suf_score 1.0
rank 116.0
rank_suf 121.0
rank_change 2.0
total_points 1171.0
result 2
rank_dif -5.0
points_by_rank 0.008264
team_points 1
country_classification Classe C
Name: 389, dtype: object
date 2018-11-21 00:00:00
team Singapore
score 6.0
suf_score 1.0
rank 165.0
rank_suf 191.0
rank_change -1.0
total_points 991.0
result 0
rank_dif -26.0
points_by_rank 0.015707
team_points 3
country_classification Classe D
Name: 390, dtype: object
date 2018-11-24 00:00:00
team Vietnam
score 3.0
suf_score 0.0
rank 102.0
rank_suf 170.0
rank_change 0.0
total_points 1220.0
result 0
rank_dif -68.0
points_by_rank 0.017647
team_points 3
country_classification Classe B
Name: 391, dtype: object
date 2018-11-24 00:00:00
team Malaysia
score 3.0
suf_score 0.0
rank 169.0
rank_suf 141.0
rank_change -2.0
total_points 974.0
result 0
rank_dif 28.0
points_by_rank 0.021277
team_points 3
country_classification Classe D
Name: 392, dtype: object
date 2018-11-25 00:00:00
team Indonesia
score 0.0
suf_score 0.0
rank 160.0
rank_suf 116.0
rank_change -4.0
total_points 1004.0
result 2
rank_dif 44.0
points_by_rank 0.008621
team_points 1
country_classification Classe C
Name: 393, dtype: object
date 2018-11-25 00:00:00
team Thailand
score 3.0
suf_score 0.0
rank 121.0
rank_suf 165.0
rank_change -1.0
total_points 1154.0
result 0
rank_dif -44.0
points_by_rank 0.018182
team_points 3
country_classification Classe C
Name: 394, dtype: object
date 2018-12-01 00:00:00
team Malaysia
score 0.0
suf_score 0.0
rank 167.0
rank_suf 118.0
rank_change -2.0
total_points 984.0
result 2
rank_dif 49.0
points_by_rank 0.008475
team_points 1
country_classification Classe D
Name: 395, dtype: object
date 2018-12-02 00:00:00
team Philippines
score 1.0
suf_score 2.0
rank 114.0
rank_suf 100.0
rank_change -2.0
total_points 1176.0
result 1
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 396, dtype: object
date 2018-12-05 00:00:00
team Thailand
score 2.0
suf_score 2.0
rank 118.0
rank_suf 167.0
rank_change -3.0
total_points 1161.0
result 2
rank_dif -49.0
points_by_rank 0.005988
team_points 1
country_classification Classe C
Name: 397, dtype: object
date 2018-12-06 00:00:00
team Vietnam
score 2.0
suf_score 1.0
rank 100.0
rank_suf 114.0
rank_change -2.0
total_points 1224.0
result 0
rank_dif -14.0
points_by_rank 0.026316
team_points 3
country_classification Classe B
Name: 398, dtype: object
date 2018-12-11 00:00:00
team Malaysia
score 2.0
suf_score 2.0
rank 167.0
rank_suf 100.0
rank_change -2.0
total_points 984.0
result 2
rank_dif 67.0
points_by_rank 0.01
team_points 1
country_classification Classe D
Name: 399, dtype: object
date 2018-12-13 00:00:00
team Oman
score 2.0
suf_score 1.0
rank 83.0
rank_suf 118.0
rank_change -1.0
total_points 1291.0
result 0
rank_dif -35.0
points_by_rank 0.025424
team_points 3
country_classification Classe B
Name: 400, dtype: object
date 2018-12-15 00:00:00
team Vietnam
score 1.0
suf_score 0.0
rank 100.0
rank_suf 167.0
rank_change -2.0
total_points 1224.0
result 0
rank_dif -67.0
points_by_rank 0.017964
team_points 3
country_classification Classe B
Name: 401, dtype: object
date 2018-12-16 00:00:00
team Oman
score 1.0
suf_score 0.0
rank 83.0
rank_suf 118.0
rank_change -1.0
total_points 1291.0
result 0
rank_dif -35.0
points_by_rank 0.025424
team_points 3
country_classification Classe B
Name: 402, dtype: object
date 2018-12-16 00:00:00
team Palestine
score 2.0
suf_score 0.0
rank 99.0
rank_suf 199.0
rank_change 0.0
total_points 1236.0
result 0
rank_dif -100.0
points_by_rank 0.015075
team_points 3
country_classification Classe B
Name: 403, dtype: object
date 2018-12-20 00:00:00
team Bahrain
score 5.0
suf_score 0.0
rank 113.0
rank_suf 120.0
rank_change 0.0
total_points 1178.0
result 0
rank_dif -7.0
points_by_rank 0.025
team_points 3
country_classification Classe C
Name: 404, dtype: object
date 2018-12-23 00:00:00
team Qatar
score 2.0
suf_score 0.0
rank 93.0
rank_suf 109.0
rank_change 0.0
total_points 1258.0
result 0
rank_dif -16.0
points_by_rank 0.027523
team_points 3
country_classification Classe B
Name: 405, dtype: object
date 2018-12-24 00:00:00
team Iraq
score 2.0
suf_score 1.0
rank 88.0
rank_suf 76.0
rank_change 0.0
total_points 1271.0
result 0
rank_dif 12.0
points_by_rank 0.039474
team_points 3
country_classification Classe B
Name: 406, dtype: object
date 2018-12-24 00:00:00
team Palestine
score 1.0
suf_score 1.0
rank 99.0
rank_suf 29.0
rank_change 0.0
total_points 1236.0
result 2
rank_dif 70.0
points_by_rank 0.034483
team_points 1
country_classification Classe B
Name: 407, dtype: object
date 2018-12-25 00:00:00
team Afghanistan
score 0.0
suf_score 2.0
rank 147.0
rank_suf 127.0
rank_change 0.0
total_points 1068.0
result 1
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 408, dtype: object
date 2018-12-27 00:00:00
team Bahrain
score 1.0
suf_score 0.0
rank 113.0
rank_suf 81.0
rank_change 0.0
total_points 1178.0
result 0
rank_dif 32.0
points_by_rank 0.037037
team_points 3
country_classification Classe C
Name: 409, dtype: object
date 2018-12-27 00:00:00
team India
score 0.0
suf_score 0.0
rank 97.0
rank_suf 82.0
rank_change 0.0
total_points 1240.0
result 2
rank_dif 15.0
points_by_rank 0.012195
team_points 1
country_classification Classe B
Name: 410, dtype: object
date 2018-12-27 00:00:00
team Qatar
score 0.0
suf_score 1.0
rank 93.0
rank_suf 67.0
rank_change 0.0
total_points 1258.0
result 1
rank_dif 26.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 411, dtype: object
date 2018-12-28 00:00:00
team China PR
score 1.0
suf_score 1.0
rank 76.0
rank_suf 109.0
rank_change 0.0
total_points 1317.0
result 2
rank_dif -33.0
points_by_rank 0.009174
team_points 1
country_classification Classe B
Name: 412, dtype: object
date 2018-12-28 00:00:00
team Iraq
score 1.0
suf_score 0.0
rank 88.0
rank_suf 99.0
rank_change 0.0
total_points 1271.0
result 0
rank_dif -11.0
points_by_rank 0.030303
team_points 3
country_classification Classe B
Name: 413, dtype: object
date 2018-12-28 00:00:00
team United Arab Emirates
score 0.0
suf_score 2.0
rank 79.0
rank_suf 158.0
rank_change 0.0
total_points 1309.0
result 1
rank_dif -79.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 414, dtype: object
date 2018-12-30 00:00:00
team Australia
score 5.0
suf_score 0.0
rank 41.0
rank_suf 82.0
rank_change 0.0
total_points 1436.0
result 0
rank_dif -41.0
points_by_rank 0.036585
team_points 3
country_classification Classe A
Name: 415, dtype: object
date 2018-12-30 00:00:00
team Yemen
score 0.0
suf_score 1.0
rank 135.0
rank_suf 74.0
rank_change 0.0
total_points 1106.0
result 1
rank_dif 61.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 416, dtype: object
date 2018-12-31 00:00:00
team South Korea
score 0.0
suf_score 0.0
rank 53.0
rank_suf 69.0
rank_change 0.0
total_points 1405.0
result 2
rank_dif -16.0
points_by_rank 0.014493
team_points 1
country_classification Classe A
Name: 417, dtype: object
date 2018-12-31 00:00:00
team Philippines
score 2.0
suf_score 4.0
rank 116.0
rank_suf 100.0
rank_change 2.0
total_points 1171.0
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 418, dtype: object
date 2018-12-31 00:00:00
team Qatar
score 1.0
suf_score 2.0
rank 93.0
rank_suf 29.0
rank_change 0.0
total_points 1258.0
result 1
rank_dif 64.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 419, dtype: object
date 2019-01-02 00:00:00
team Oman
score 2.0
suf_score 0.0
rank 82.0
rank_suf 118.0
rank_change -1.0
total_points 1295.0
result 0
rank_dif -36.0
points_by_rank 0.025424
team_points 3
country_classification Classe B
Name: 420, dtype: object
date 2019-01-05 00:00:00
team United Arab Emirates
score 1.0
suf_score 1.0
rank 79.0
rank_suf 113.0
rank_change 0.0
total_points 1309.0
result 2
rank_dif -34.0
points_by_rank 0.00885
team_points 1
country_classification Classe B
Name: 421, dtype: object
date 2019-01-06 00:00:00
team Thailand
score 1.0
suf_score 4.0
rank 118.0
rank_suf 97.0
rank_change 0.0
total_points 1160.0
result 1
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 422, dtype: object
date 2019-01-06 00:00:00
team Australia
score 0.0
suf_score 1.0
rank 41.0
rank_suf 109.0
rank_change 0.0
total_points 1436.0
result 1
rank_dif -68.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 423, dtype: object
date 2019-01-06 00:00:00
team Syria
score 0.0
suf_score 0.0
rank 74.0
rank_suf 99.0
rank_change 0.0
total_points 1322.0
result 2
rank_dif -25.0
points_by_rank 0.010101
team_points 1
country_classification Classe B
Name: 424, dtype: object
date 2019-01-07 00:00:00
team South Korea
score 1.0
suf_score 0.0
rank 53.0
rank_suf 116.0
rank_change 0.0
total_points 1405.0
result 0
rank_dif -63.0
points_by_rank 0.025862
team_points 3
country_classification Classe A
Name: 425, dtype: object
date 2019-01-07 00:00:00
team Iran
score 5.0
suf_score 0.0
rank 29.0
rank_suf 135.0
rank_change 0.0
total_points 1481.0
result 0
rank_dif -106.0
points_by_rank 0.022222
team_points 3
country_classification Classe A
Name: 426, dtype: object
date 2019-01-08 00:00:00
team Finland
score 1.0
suf_score 0.0
rank 58.0
rank_suf 14.0
rank_change 0.0
total_points 1378.0
result 0
rank_dif 44.0
points_by_rank 0.214286
team_points 3
country_classification Classe B
Name: 427, dtype: object
date 2019-01-08 00:00:00
team Iraq
score 3.0
suf_score 2.0
rank 88.0
rank_suf 100.0
rank_change 0.0
total_points 1271.0
result 0
rank_dif -12.0
points_by_rank 0.03
team_points 3
country_classification Classe B
Name: 428, dtype: object
date 2019-01-09 00:00:00
team Qatar
score 2.0
suf_score 0.0
rank 93.0
rank_suf 81.0
rank_change 0.0
total_points 1258.0
result 0
rank_dif 12.0
points_by_rank 0.037037
team_points 3
country_classification Classe B
Name: 429, dtype: object
date 2019-01-09 00:00:00
team Japan
score 3.0
suf_score 2.0
rank 50.0
rank_suf 127.0
rank_change 0.0
total_points 1414.0
result 0
rank_dif -77.0
points_by_rank 0.023622
team_points 3
country_classification Classe A
Name: 430, dtype: object
date 2019-01-09 00:00:00
team Uzbekistan
score 2.0
suf_score 1.0
rank 95.0
rank_suf 82.0
rank_change 0.0
total_points 1251.0
result 0
rank_dif 13.0
points_by_rank 0.036585
team_points 3
country_classification Classe B
Name: 431, dtype: object
date 2019-01-10 00:00:00
team Bahrain
score 0.0
suf_score 1.0
rank 113.0
rank_suf 118.0
rank_change 0.0
total_points 1178.0
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 432, dtype: object
date 2019-01-10 00:00:00
team Jordan
score 2.0
suf_score 0.0
rank 109.0
rank_suf 74.0
rank_change 0.0
total_points 1196.0
result 0
rank_dif 35.0
points_by_rank 0.040541
team_points 3
country_classification Classe C
Name: 433, dtype: object
date 2019-01-10 00:00:00
team United Arab Emirates
score 2.0
suf_score 0.0
rank 79.0
rank_suf 97.0
rank_change 0.0
total_points 1309.0
result 0
rank_dif -18.0
points_by_rank 0.030928
team_points 3
country_classification Classe B
Name: 434, dtype: object
date 2019-01-11 00:00:00
team Estonia
score 2.0
suf_score 1.0
rank 96.0
rank_suf 58.0
rank_change 0.0
total_points 1242.0
result 0
rank_dif 38.0
points_by_rank 0.051724
team_points 3
country_classification Classe B
Name: 435, dtype: object
date 2019-01-11 00:00:00
team Iceland
score 2.0
suf_score 2.0
rank 37.0
rank_suf 14.0
rank_change 0.0
total_points 1452.0
result 2
rank_dif 23.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 436, dtype: object
date 2019-01-11 00:00:00
team Palestine
score 0.0
suf_score 3.0
rank 99.0
rank_suf 41.0
rank_change 0.0
total_points 1236.0
result 1
rank_dif 58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 437, dtype: object
date 2019-01-11 00:00:00
team Philippines
score 0.0
suf_score 3.0
rank 116.0
rank_suf 76.0
rank_change 2.0
total_points 1171.0
result 1
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 438, dtype: object
date 2019-01-12 00:00:00
team Vietnam
score 0.0
suf_score 2.0
rank 100.0
rank_suf 29.0
rank_change 0.0
total_points 1229.0
result 1
rank_dif 71.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 439, dtype: object
date 2019-01-12 00:00:00
team Yemen
score 0.0
suf_score 3.0
rank 135.0
rank_suf 88.0
rank_change 0.0
total_points 1106.0
result 1
rank_dif 47.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 440, dtype: object
date 2019-01-12 00:00:00
team Lebanon
score 0.0
suf_score 2.0
rank 81.0
rank_suf 69.0
rank_change 0.0
total_points 1296.0
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 441, dtype: object
date 2019-01-13 00:00:00
team Oman
score 0.0
suf_score 1.0
rank 82.0
rank_suf 50.0
rank_change -1.0
total_points 1295.0
result 1
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 442, dtype: object
date 2019-01-13 00:00:00
team Turkmenistan
score 0.0
suf_score 4.0
rank 127.0
rank_suf 95.0
rank_change 0.0
total_points 1120.0
result 1
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 443, dtype: object
date 2019-01-14 00:00:00
team India
score 0.0
suf_score 1.0
rank 97.0
rank_suf 113.0
rank_change 0.0
total_points 1240.0
result 1
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 444, dtype: object
date 2019-01-14 00:00:00
team United Arab Emirates
score 1.0
suf_score 1.0
rank 79.0
rank_suf 118.0
rank_change 0.0
total_points 1309.0
result 2
rank_dif -39.0
points_by_rank 0.008475
team_points 1
country_classification Classe B
Name: 445, dtype: object
date 2019-01-15 00:00:00
team Estonia
score 0.0
suf_score 0.0
rank 96.0
rank_suf 37.0
rank_change 0.0
total_points 1242.0
result 2
rank_dif 59.0
points_by_rank 0.027027
team_points 1
country_classification Classe B
Name: 446, dtype: object
date 2019-01-15 00:00:00
team Australia
score 3.0
suf_score 2.0
rank 41.0
rank_suf 74.0
rank_change 0.0
total_points 1436.0
result 0
rank_dif -33.0
points_by_rank 0.040541
team_points 3
country_classification Classe A
Name: 447, dtype: object
date 2019-01-15 00:00:00
team Palestine
score 0.0
suf_score 0.0
rank 99.0
rank_suf 109.0
rank_change 0.0
total_points 1236.0
result 2
rank_dif -10.0
points_by_rank 0.009174
team_points 1
country_classification Classe B
Name: 448, dtype: object
date 2019-01-16 00:00:00
team South Korea
score 2.0
suf_score 0.0
rank 53.0
rank_suf 76.0
rank_change 0.0
total_points 1405.0
result 0
rank_dif -23.0
points_by_rank 0.039474
team_points 3
country_classification Classe A
Name: 449, dtype: object
date 2019-01-16 00:00:00
team Iran
score 0.0
suf_score 0.0
rank 29.0
rank_suf 88.0
rank_change 0.0
total_points 1481.0
result 2
rank_dif -59.0
points_by_rank 0.011364
team_points 1
country_classification Classe A
Name: 450, dtype: object
date 2019-01-16 00:00:00
team Vietnam
score 2.0
suf_score 0.0
rank 100.0
rank_suf 135.0
rank_change 0.0
total_points 1229.0
result 0
rank_dif -35.0
points_by_rank 0.022222
team_points 3
country_classification Classe B
Name: 451, dtype: object
date 2019-01-17 00:00:00
team Saudi Arabia
score 0.0
suf_score 2.0
rank 69.0
rank_suf 93.0
rank_change 0.0
total_points 1335.0
result 1
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 452, dtype: object
date 2019-01-17 00:00:00
team Japan
score 2.0
suf_score 1.0
rank 50.0
rank_suf 95.0
rank_change 0.0
total_points 1414.0
result 0
rank_dif -45.0
points_by_rank 0.031579
team_points 3
country_classification Classe A
Name: 453, dtype: object
date 2019-01-17 00:00:00
team Oman
score 3.0
suf_score 1.0
rank 82.0
rank_suf 127.0
rank_change -1.0
total_points 1295.0
result 0
rank_dif -45.0
points_by_rank 0.023622
team_points 3
country_classification Classe B
Name: 454, dtype: object
date 2019-01-20 00:00:00
team Iran
score 2.0
suf_score 0.0
rank 29.0
rank_suf 82.0
rank_change 0.0
total_points 1481.0
result 0
rank_dif -53.0
points_by_rank 0.036585
team_points 3
country_classification Classe A
Name: 455, dtype: object
date 2019-01-20 00:00:00
team Jordan
score 1.0
suf_score 1.0
rank 109.0
rank_suf 100.0
rank_change 0.0
total_points 1196.0
result 2
rank_dif 9.0
points_by_rank 0.01
team_points 1
country_classification Classe C
Name: 456, dtype: object
date 2019-01-20 00:00:00
team Thailand
score 1.0
suf_score 2.0
rank 118.0
rank_suf 76.0
rank_change 0.0
total_points 1160.0
result 1
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 457, dtype: object
date 2019-01-21 00:00:00
team Australia
score 0.0
suf_score 0.0
rank 41.0
rank_suf 95.0
rank_change 0.0
total_points 1436.0
result 2
rank_dif -54.0
points_by_rank 0.010526
team_points 1
country_classification Classe A
Name: 458, dtype: object
date 2019-01-21 00:00:00
team Japan
score 1.0
suf_score 0.0
rank 50.0
rank_suf 69.0
rank_change 0.0
total_points 1414.0
result 0
rank_dif -19.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 459, dtype: object
date 2019-01-22 00:00:00
team South Korea
score 2.0
suf_score 1.0
rank 53.0
rank_suf 113.0
rank_change 0.0
total_points 1405.0
result 0
rank_dif -60.0
points_by_rank 0.026549
team_points 3
country_classification Classe A
Name: 460, dtype: object
date 2019-01-22 00:00:00
team Qatar
score 1.0
suf_score 0.0
rank 93.0
rank_suf 88.0
rank_change 0.0
total_points 1258.0
result 0
rank_dif 5.0
points_by_rank 0.034091
team_points 3
country_classification Classe B
Name: 461, dtype: object
date 2019-01-24 00:00:00
team China PR
score 0.0
suf_score 3.0
rank 76.0
rank_suf 29.0
rank_change 0.0
total_points 1317.0
result 1
rank_dif 47.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 462, dtype: object
date 2019-01-24 00:00:00
team Vietnam
score 0.0
suf_score 1.0
rank 100.0
rank_suf 50.0
rank_change 0.0
total_points 1229.0
result 1
rank_dif 50.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 463, dtype: object
date 2019-01-25 00:00:00
team South Korea
score 0.0
suf_score 1.0
rank 53.0
rank_suf 93.0
rank_change 0.0
total_points 1405.0
result 1
rank_dif -40.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 464, dtype: object
date 2019-01-25 00:00:00
team United Arab Emirates
score 1.0
suf_score 0.0
rank 79.0
rank_suf 41.0
rank_change 0.0
total_points 1309.0
result 0
rank_dif 38.0
points_by_rank 0.073171
team_points 3
country_classification Classe B
Name: 465, dtype: object
date 2019-01-27 00:00:00
team United States
score 3.0
suf_score 0.0
rank 25.0
rank_suf 71.0
rank_change 0.0
total_points 1497.0
result 0
rank_dif -46.0
points_by_rank 0.042254
team_points 3
country_classification Classe A
Name: 466, dtype: object
date 2019-01-28 00:00:00
team Iran
score 0.0
suf_score 3.0
rank 29.0
rank_suf 50.0
rank_change 0.0
total_points 1481.0
result 1
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 467, dtype: object
date 2019-01-29 00:00:00
team United Arab Emirates
score 0.0
suf_score 4.0
rank 79.0
rank_suf 93.0
rank_change 0.0
total_points 1309.0
result 1
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 468, dtype: object
date 2019-02-01 00:00:00
team Japan
score 1.0
suf_score 3.0
rank 50.0
rank_suf 93.0
rank_change 0.0
total_points 1414.0
result 1
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 469, dtype: object
date 2019-02-02 00:00:00
team United States
score 2.0
suf_score 0.0
rank 25.0
rank_suf 36.0
rank_change 0.0
total_points 1497.0
result 0
rank_dif -11.0
points_by_rank 0.083333
team_points 3
country_classification Classe A
Name: 470, dtype: object
date 2019-02-21 00:00:00
team Kazakhstan
score 1.0
suf_score 0.0
rank 117.0
rank_suf 170.0
rank_change -2.0
total_points 1159.0
result 0
rank_dif -53.0
points_by_rank 0.017647
team_points 3
country_classification Classe C
Name: 471, dtype: object
date 2019-02-27 00:00:00
team Cuba
score 5.0
suf_score 0.0
rank 174.0
rank_suf 176.0
rank_change 0.0
total_points 963.0
result 0
rank_dif -2.0
points_by_rank 0.017045
team_points 3
country_classification Classe D
Name: 472, dtype: object
date 2019-03-03 00:00:00
team Bolivia
score 2.0
suf_score 2.0
rank 60.0
rank_suf 128.0
rank_change 1.0
total_points 1374.0
result 2
rank_dif -68.0
points_by_rank 0.007812
team_points 1
country_classification Classe B
Name: 473, dtype: object
date 2019-03-04 00:00:00
team Barbados
score 3.0
suf_score 0.0
rank 162.0
rank_suf 173.0
rank_change 0.0
total_points 998.0
result 0
rank_dif -11.0
points_by_rank 0.017341
team_points 3
country_classification Classe D
Name: 474, dtype: object
date 2019-03-06 00:00:00
team El Salvador
score 3.0
suf_score 1.0
rank 73.0
rank_suf 149.0
rank_change 3.0
total_points 1327.0
result 0
rank_dif -76.0
points_by_rank 0.020134
team_points 3
country_classification Classe B
Name: 475, dtype: object
date 2019-03-09 00:00:00
team Cambodia
score 0.0
suf_score 1.0
rank 172.0
rank_suf 192.0
rank_change 0.0
total_points 970.0
result 1
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 476, dtype: object
date 2019-03-16 00:00:00
team Bahamas
score 6.0
suf_score 1.0
rank 210.0
rank_suf 208.0
rank_change 0.0
total_points 858.0
result 0
rank_dif 2.0
points_by_rank 0.014423
team_points 3
country_classification Classe D
Name: 477, dtype: object
date 2019-03-18 00:00:00
team Fiji
score 3.0
suf_score 0.0
rank 169.0
rank_suf 154.0
rank_change 0.0
total_points 981.0
result 0
rank_dif 15.0
points_by_rank 0.019481
team_points 3
country_classification Classe D
Name: 478, dtype: object
date 2019-03-18 00:00:00
team Solomon Islands
score 3.0
suf_score 1.0
rank 143.0
rank_suf 163.0
rank_change -1.0
total_points 1073.0
result 0
rank_dif -20.0
points_by_rank 0.018405
team_points 3
country_classification Classe C
Name: 479, dtype: object
date 2019-03-20 00:00:00
team Germany
score 1.0
suf_score 1.0
rank 16.0
rank_suf 31.0
rank_change 0.0
total_points 1558.0
result 2
rank_dif -15.0
points_by_rank 0.032258
team_points 1
country_classification Classe A
Name: 480, dtype: object
date 2019-03-20 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 19.0
rank_suf 93.0
rank_change 0.0
total_points 1525.0
result 0
rank_dif -74.0
points_by_rank 0.032258
team_points 3
country_classification Classe A
Name: 481, dtype: object
date 2019-03-21 00:00:00
team Kosovo
score 2.0
suf_score 2.0
rank 130.0
rank_suf 10.0
rank_change -1.0
total_points 1113.0
result 2
rank_dif 120.0
points_by_rank 0.1
team_points 1
country_classification Classe C
Name: 482, dtype: object
date 2019-03-21 00:00:00
team Kuwait
score 0.0
suf_score 0.0
rank 158.0
rank_suf 161.0
rank_change 0.0
total_points 1018.0
result 2
rank_dif -3.0
points_by_rank 0.006211
team_points 1
country_classification Classe C
Name: 483, dtype: object
date 2019-03-21 00:00:00
team Mauritius
score 3.0
suf_score 1.0
rank 156.0
rank_suf 154.0
rank_change 0.0
total_points 1022.0
result 0
rank_dif 2.0
points_by_rank 0.019481
team_points 3
country_classification Classe C
Name: 484, dtype: object
date 2019-03-21 00:00:00
team United Arab Emirates
score 2.0
suf_score 1.0
rank 67.0
rank_suf 70.0
rank_change -12.0
total_points 1355.0
result 0
rank_dif -3.0
points_by_rank 0.042857
team_points 3
country_classification Classe B
Name: 485, dtype: object
date 2019-03-21 00:00:00
team United States
score 1.0
suf_score 0.0
rank 25.0
rank_suf 58.0
rank_change 0.0
total_points 1501.0
result 0
rank_dif -33.0
points_by_rank 0.051724
team_points 3
country_classification Classe A
Name: 486, dtype: object
date 2019-03-21 00:00:00
team Northern Ireland
score 2.0
suf_score 0.0
rank 36.0
rank_suf 96.0
rank_change 1.0
total_points 1465.0
result 0
rank_dif -60.0
points_by_rank 0.03125
team_points 3
country_classification Classe A
Name: 487, dtype: object
date 2019-03-21 00:00:00
team Netherlands
score 4.0
suf_score 0.0
rank 14.0
rank_suf 78.0
rank_change 0.0
total_points 1560.0
result 0
rank_dif -64.0
points_by_rank 0.038462
team_points 3
country_classification Classe A
Name: 488, dtype: object
date 2019-03-21 00:00:00
team Croatia
score 2.0
suf_score 1.0
rank 4.0
rank_suf 108.0
rank_change 0.0
total_points 1634.0
result 0
rank_dif -104.0
points_by_rank 0.027778
team_points 3
country_classification Classe S-
Name: 489, dtype: object
date 2019-03-21 00:00:00
team Slovakia
score 2.0
suf_score 0.0
rank 29.0
rank_suf 52.0
rank_change 2.0
total_points 1483.0
result 0
rank_dif -23.0
points_by_rank 0.057692
team_points 3
country_classification Classe A
Name: 490, dtype: object
date 2019-03-21 00:00:00
team Austria
score 0.0
suf_score 1.0
rank 23.0
rank_suf 20.0
rank_change 1.0
total_points 1509.0
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 491, dtype: object
date 2019-03-21 00:00:00
team Israel
score 1.0
suf_score 1.0
rank 92.0
rank_suf 63.0
rank_change 2.0
total_points 1265.0
result 2
rank_dif 29.0
points_by_rank 0.015873
team_points 1
country_classification Classe B
Name: 492, dtype: object
date 2019-03-21 00:00:00
team Cyprus
score 5.0
suf_score 0.0
rank 87.0
rank_suf 211.0
rank_change 1.0
total_points 1276.0
result 0
rank_dif -124.0
points_by_rank 0.014218
team_points 3
country_classification Classe B
Name: 493, dtype: object
date 2019-03-21 00:00:00
team Belgium
score 3.0
suf_score 1.0
rank 1.0
rank_suf 50.0
rank_change 0.0
total_points 1727.0
result 0
rank_dif -49.0
points_by_rank 0.06
team_points 3
country_classification Classe S
Name: 494, dtype: object
date 2019-03-21 00:00:00
team Kazakhstan
score 3.0
suf_score 0.0
rank 117.0
rank_suf 40.0
rank_change -2.0
total_points 1159.0
result 0
rank_dif 77.0
points_by_rank 0.075
team_points 3
country_classification Classe C
Name: 495, dtype: object
date 2019-03-21 00:00:00
team British Virgin Islands
score 2.0
suf_score 2.0
rank 207.0
rank_suf 208.0
rank_change 0.0
total_points 867.0
result 2
rank_dif -1.0
points_by_rank 0.004808
team_points 1
country_classification Classe D
Name: 496, dtype: object
date 2019-03-22 00:00:00
team Argentina
score 1.0
suf_score 3.0
rank 11.0
rank_suf 32.0
rank_change 0.0
total_points 1582.0
result 1
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 497, dtype: object
date 2019-03-22 00:00:00
team Guatemala
score 1.0
suf_score 0.0
rank 149.0
rank_suf 37.0
rank_change 0.0
total_points 1061.0
result 0
rank_dif 112.0
points_by_rank 0.081081
team_points 3
country_classification Classe C
Name: 498, dtype: object
date 2019-03-22 00:00:00
team Japan
score 0.0
suf_score 1.0
rank 27.0
rank_suf 12.0
rank_change -23.0
total_points 1495.0
result 1
rank_dif 15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 499, dtype: object
date 2019-03-22 00:00:00
team South Korea
score 1.0
suf_score 0.0
rank 38.0
rank_suf 60.0
rank_change -15.0
total_points 1451.0
result 0
rank_dif -22.0
points_by_rank 0.05
team_points 3
country_classification Classe A
Name: 500, dtype: object
date 2019-03-22 00:00:00
team Mexico
score 3.0
suf_score 1.0
rank 17.0
rank_suf 13.0
rank_change 0.0
total_points 1540.0
result 0
rank_dif 4.0
points_by_rank 0.230769
team_points 3
country_classification Classe A
Name: 501, dtype: object
date 2019-03-22 00:00:00
team Peru
score 1.0
suf_score 0.0
rank 20.0
rank_suf 33.0
rank_change 0.0
total_points 1518.0
result 0
rank_dif -13.0
points_by_rank 0.090909
team_points 3
country_classification Classe A
Name: 502, dtype: object
date 2019-03-22 00:00:00
team Bulgaria
score 1.0
suf_score 1.0
rank 48.0
rank_suf 46.0
rank_change 2.0
total_points 1425.0
result 2
rank_dif 2.0
points_by_rank 0.021739
team_points 1
country_classification Classe A
Name: 503, dtype: object
date 2019-03-22 00:00:00
team England
score 5.0
suf_score 0.0
rank 5.0
rank_suf 44.0
rank_change 0.0
total_points 1631.0
result 0
rank_dif -39.0
points_by_rank 0.068182
team_points 3
country_classification Classe S-
Name: 504, dtype: object
date 2019-03-22 00:00:00
team Portugal
score 0.0
suf_score 0.0
rank 6.0
rank_suf 30.0
rank_change 0.0
total_points 1614.0
result 2
rank_dif -24.0
points_by_rank 0.033333
team_points 1
country_classification Classe S-
Name: 505, dtype: object
date 2019-03-22 00:00:00
team Luxembourg
score 2.0
suf_score 1.0
rank 87.0
rank_suf 132.0
rank_change 1.0
total_points 1276.0
result 0
rank_dif -45.0
points_by_rank 0.022727
team_points 3
country_classification Classe B
Name: 506, dtype: object
date 2019-03-22 00:00:00
team Albania
score 0.0
suf_score 2.0
rank 61.0
rank_suf 41.0
rank_change 1.0
total_points 1372.0
result 1
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 507, dtype: object
date 2019-03-22 00:00:00
team Andorra
score 0.0
suf_score 2.0
rank 132.0
rank_suf 38.0
rank_change -1.0
total_points 1111.0
result 1
rank_dif 94.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 508, dtype: object
date 2019-03-22 00:00:00
team Moldova
score 1.0
suf_score 4.0
rank 170.0
rank_suf 2.0
rank_change 0.0
total_points 979.0
result 1
rank_dif 168.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 509, dtype: object
date 2019-03-22 00:00:00
team Botswana
score 0.0
suf_score 1.0
rank 145.0
rank_suf 125.0
rank_change 0.0
total_points 1071.0
result 1
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 510, dtype: object
date 2019-03-22 00:00:00
team Cayman Islands
score 1.0
suf_score 2.0
rank 203.0
rank_suf 200.0
rank_change 0.0
total_points 874.0
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 511, dtype: object
date 2019-03-23 00:00:00
team Brazil
score 1.0
suf_score 1.0
rank 3.0
rank_suf 76.0
rank_change 0.0
total_points 1676.0
result 2
rank_dif -73.0
points_by_rank 0.013158
team_points 1
country_classification Classe S-
Name: 512, dtype: object
date 2019-03-23 00:00:00
team Malaysia
score 2.0
suf_score 1.0
rank 167.0
rank_suf 147.0
rank_change 0.0
total_points 985.0
result 0
rank_dif 20.0
points_by_rank 0.020408
team_points 3
country_classification Classe D
Name: 513, dtype: object
date 2019-03-23 00:00:00
team Oman
score 1.0
suf_score 1.0
rank 90.0
rank_suf 165.0
rank_change 8.0
total_points 1273.0
result 2
rank_dif -75.0
points_by_rank 0.006061
team_points 1
country_classification Classe B
Name: 514, dtype: object
date 2019-03-23 00:00:00
team Georgia
score 0.0
suf_score 2.0
rank 91.0
rank_suf 8.0
rank_change 2.0
total_points 1269.0
result 1
rank_dif 83.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 515, dtype: object
date 2019-03-23 00:00:00
team Gibraltar
score 0.0
suf_score 1.0
rank 194.0
rank_suf 34.0
rank_change 0.0
total_points 905.0
result 1
rank_dif 160.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 516, dtype: object
date 2019-03-23 00:00:00
team Malta
score 2.0
suf_score 1.0
rank 182.0
rank_suf 97.0
rank_change 0.0
total_points 926.0
result 0
rank_dif 85.0
points_by_rank 0.030928
team_points 3
country_classification Classe D
Name: 517, dtype: object
date 2019-03-23 00:00:00
team Sweden
score 2.0
suf_score 1.0
rank 14.0
rank_suf 25.0
rank_change 0.0
total_points 1560.0
result 0
rank_dif -11.0
points_by_rank 0.12
team_points 3
country_classification Classe A
Name: 518, dtype: object
date 2019-03-23 00:00:00
team Spain
score 2.0
suf_score 1.0
rank 9.0
rank_suf 48.0
rank_change 0.0
total_points 1591.0
result 0
rank_dif -39.0
points_by_rank 0.0625
team_points 3
country_classification Classe A
Name: 519, dtype: object
date 2019-03-23 00:00:00
team Bosnia and Herzegovina
score 2.0
suf_score 1.0
rank 35.0
rank_suf 101.0
rank_change 1.0
total_points 1472.0
result 0
rank_dif -66.0
points_by_rank 0.029703
team_points 3
country_classification Classe A
Name: 520, dtype: object
date 2019-03-23 00:00:00
team Italy
score 2.0
suf_score 0.0
rank 18.0
rank_suf 59.0
rank_change 0.0
total_points 1539.0
result 0
rank_dif -41.0
points_by_rank 0.050847
team_points 3
country_classification Classe A
Name: 521, dtype: object
date 2019-03-23 00:00:00
team Liechtenstein
score 0.0
suf_score 2.0
rank 181.0
rank_suf 45.0
rank_change 0.0
total_points 937.0
result 1
rank_dif 136.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 522, dtype: object
date 2019-03-23 00:00:00
team Senegal
score 2.0
suf_score 0.0
rank 24.0
rank_suf 107.0
rank_change 1.0
total_points 1505.0
result 0
rank_dif -83.0
points_by_rank 0.028037
team_points 3
country_classification Classe A
Name: 523, dtype: object
date 2019-03-23 00:00:00
team Cameroon
score 3.0
suf_score 0.0
rank 56.0
rank_suf 142.0
rank_change 1.0
total_points 1394.0
result 0
rank_dif -86.0
points_by_rank 0.021127
team_points 3
country_classification Classe B
Name: 524, dtype: object
date 2019-03-23 00:00:00
team Mali
score 3.0
suf_score 0.0
rank 65.0
rank_suf 164.0
rank_change 1.0
total_points 1363.0
result 0
rank_dif -99.0
points_by_rank 0.018293
team_points 3
country_classification Classe B
Name: 525, dtype: object
date 2019-03-23 00:00:00
team Ghana
score 1.0
suf_score 0.0
rank 52.0
rank_suf 106.0
rank_change 1.0
total_points 1412.0
result 0
rank_dif -54.0
points_by_rank 0.028302
team_points 3
country_classification Classe A
Name: 526, dtype: object
date 2019-03-23 00:00:00
team Niger
score 1.0
suf_score 1.0
rank 109.0
rank_suf 57.0
rank_change 1.0
total_points 1205.0
result 2
rank_dif 52.0
points_by_rank 0.017544
team_points 1
country_classification Classe B
Name: 527, dtype: object
date 2019-03-23 00:00:00
team Zambia
score 4.0
suf_score 1.0
rank 82.0
rank_suf 110.0
rank_change -1.0
total_points 1292.0
result 0
rank_dif -28.0
points_by_rank 0.027273
team_points 3
country_classification Classe B
Name: 528, dtype: object
date 2019-03-23 00:00:00
team Dominica
score 4.0
suf_score 0.0
rank 178.0
rank_suf 210.0
rank_change 0.0
total_points 950.0
result 0
rank_dif -32.0
points_by_rank 0.014286
team_points 3
country_classification Classe D
Name: 529, dtype: object
date 2019-03-23 00:00:00
team Antigua and Barbuda
score 2.0
suf_score 1.0
rank 126.0
rank_suf 100.0
rank_change 0.0
total_points 1126.0
result 0
rank_dif 26.0
points_by_rank 0.03
team_points 3
country_classification Classe C
Name: 530, dtype: object
date 2019-03-23 00:00:00
team Guyana
score 2.0
suf_score 1.0
rank 177.0
rank_suf 160.0
rank_change 0.0
total_points 951.0
result 0
rank_dif 17.0
points_by_rank 0.01875
team_points 3
country_classification Classe D
Name: 531, dtype: object
date 2019-03-24 00:00:00
team Fiji
score 1.0
suf_score 0.0
rank 169.0
rank_suf 156.0
rank_change 0.0
total_points 981.0
result 0
rank_dif 13.0
points_by_rank 0.019231
team_points 3
country_classification Classe D
Name: 532, dtype: object
date 2019-03-24 00:00:00
team Northern Ireland
score 2.0
suf_score 1.0
rank 36.0
rank_suf 78.0
rank_change 1.0
total_points 1465.0
result 0
rank_dif -42.0
points_by_rank 0.038462
team_points 3
country_classification Classe A
Name: 533, dtype: object
date 2019-03-24 00:00:00
team Netherlands
score 2.0
suf_score 3.0
rank 14.0
rank_suf 16.0
rank_change 0.0
total_points 1560.0
result 1
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 534, dtype: object
date 2019-03-24 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 19.0
rank_suf 29.0
rank_change 0.0
total_points 1525.0
result 0
rank_dif -10.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 535, dtype: object
date 2019-03-24 00:00:00
team Hungary
score 2.0
suf_score 1.0
rank 52.0
rank_suf 4.0
rank_change 1.0
total_points 1412.0
result 0
rank_dif 48.0
points_by_rank 0.75
team_points 3
country_classification Classe A
Name: 536, dtype: object
date 2019-03-24 00:00:00
team Israel
score 4.0
suf_score 2.0
rank 92.0
rank_suf 23.0
rank_change 2.0
total_points 1265.0
result 0
rank_dif 69.0
points_by_rank 0.130435
team_points 3
country_classification Classe B
Name: 537, dtype: object
date 2019-03-24 00:00:00
team Poland
score 2.0
suf_score 0.0
rank 20.0
rank_suf 131.0
rank_change 0.0
total_points 1518.0
result 0
rank_dif -111.0
points_by_rank 0.022901
team_points 3
country_classification Classe A
Name: 538, dtype: object
date 2019-03-24 00:00:00
team San Marino
score 0.0
suf_score 2.0
rank 211.0
rank_suf 40.0
rank_change 0.0
total_points 854.0
result 1
rank_dif 171.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 539, dtype: object
date 2019-03-24 00:00:00
team Kazakhstan
score 0.0
suf_score 4.0
rank 117.0
rank_suf 50.0
rank_change -2.0
total_points 1159.0
result 1
rank_dif 67.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 540, dtype: object
date 2019-03-24 00:00:00
team Cyprus
score 0.0
suf_score 2.0
rank 87.0
rank_suf 1.0
rank_change 1.0
total_points 1276.0
result 1
rank_dif 86.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 541, dtype: object
date 2019-03-24 00:00:00
team Benin
score 2.0
suf_score 1.0
rank 94.0
rank_suf 122.0
rank_change 0.0
total_points 1257.0
result 0
rank_dif -28.0
points_by_rank 0.02459
team_points 3
country_classification Classe B
Name: 542, dtype: object
date 2019-03-24 00:00:00
team Libya
score 1.0
suf_score 2.0
rank 105.0
rank_suf 74.0
rank_change 1.0
total_points 1217.0
result 1
rank_dif 31.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 543, dtype: object
date 2019-03-24 00:00:00
team Zimbabwe
score 2.0
suf_score 0.0
rank 113.0
rank_suf 84.0
rank_change -1.0
total_points 1175.0
result 0
rank_dif 29.0
points_by_rank 0.035714
team_points 3
country_classification Classe C
Name: 544, dtype: object
date 2019-03-24 00:00:00
team Central African Republic
score 0.0
suf_score 0.0
rank 112.0
rank_suf 68.0
rank_change 0.0
total_points 1180.0
result 2
rank_dif 44.0
points_by_rank 0.014706
team_points 1
country_classification Classe C
Name: 545, dtype: object
date 2019-03-24 00:00:00
team Tanzania
score 3.0
suf_score 0.0
rank 137.0
rank_suf 77.0
rank_change -1.0
total_points 1087.0
result 0
rank_dif 60.0
points_by_rank 0.038961
team_points 3
country_classification Classe C
Name: 546, dtype: object
date 2019-03-24 00:00:00
team Puerto Rico
score 0.0
suf_score 2.0
rank 179.0
rank_suf 173.0
rank_change 0.0
total_points 948.0
result 1
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 547, dtype: object
date 2019-03-24 00:00:00
team Dominican Republic
score 1.0
suf_score 3.0
rank 154.0
rank_suf 176.0
rank_change 0.0
total_points 1036.0
result 1
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 548, dtype: object
date 2019-03-24 00:00:00
team Haiti
score 2.0
suf_score 1.0
rank 103.0
rank_suf 174.0
rank_change 0.0
total_points 1219.0
result 0
rank_dif -71.0
points_by_rank 0.017241
team_points 3
country_classification Classe B
Name: 549, dtype: object
date 2019-03-24 00:00:00
team Barbados
score 0.0
suf_score 1.0
rank 162.0
rank_suf 128.0
rank_change 0.0
total_points 998.0
result 1
rank_dif 34.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 550, dtype: object
date 2019-03-24 00:00:00
team El Salvador
score 2.0
suf_score 0.0
rank 73.0
rank_suf 54.0
rank_change 3.0
total_points 1327.0
result 0
rank_dif 19.0
points_by_rank 0.055556
team_points 3
country_classification Classe B
Name: 551, dtype: object
date 2019-03-25 00:00:00
team Azerbaijan
score 0.0
suf_score 0.0
rank 108.0
rank_suf 132.0
rank_change 1.0
total_points 1206.0
result 2
rank_dif -24.0
points_by_rank 0.007576
team_points 1
country_classification Classe B
Name: 552, dtype: object
date 2019-03-25 00:00:00
team Kuwait
score 1.0
suf_score 0.0
rank 158.0
rank_suf 161.0
rank_change 0.0
total_points 1018.0
result 0
rank_dif -3.0
points_by_rank 0.018634
team_points 3
country_classification Classe C
Name: 553, dtype: object
date 2019-03-25 00:00:00
team Myanmar
score 0.0
suf_score 2.0
rank 138.0
rank_suf 159.0
rank_change -1.0
total_points 1085.0
result 1
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 554, dtype: object
date 2019-03-25 00:00:00
team Saudi Arabia
score 3.0
suf_score 2.0
rank 70.0
rank_suf 148.0
rank_change 1.0
total_points 1344.0
result 0
rank_dif -78.0
points_by_rank 0.02027
team_points 3
country_classification Classe B
Name: 555, dtype: object
date 2019-03-25 00:00:00
team Kosovo
score 1.0
suf_score 1.0
rank 130.0
rank_suf 48.0
rank_change -1.0
total_points 1113.0
result 2
rank_dif 82.0
points_by_rank 0.020833
team_points 1
country_classification Classe C
Name: 556, dtype: object
date 2019-03-25 00:00:00
team Montenegro
score 1.0
suf_score 5.0
rank 46.0
rank_suf 5.0
rank_change 2.0
total_points 1427.0
result 1
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 557, dtype: object
date 2019-03-25 00:00:00
team Portugal
score 1.0
suf_score 1.0
rank 6.0
rank_suf 31.0
rank_change 0.0
total_points 1614.0
result 2
rank_dif -25.0
points_by_rank 0.032258
team_points 1
country_classification Classe S-
Name: 558, dtype: object
date 2019-03-25 00:00:00
team Luxembourg
score 1.0
suf_score 2.0
rank 87.0
rank_suf 30.0
rank_change 1.0
total_points 1276.0
result 1
rank_dif 57.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 559, dtype: object
date 2019-03-25 00:00:00
team Turkey
score 4.0
suf_score 0.0
rank 41.0
rank_suf 170.0
rank_change 2.0
total_points 1443.0
result 0
rank_dif -129.0
points_by_rank 0.017647
team_points 3
country_classification Classe A
Name: 560, dtype: object
date 2019-03-25 00:00:00
team Andorra
score 0.0
suf_score 3.0
rank 132.0
rank_suf 61.0
rank_change -1.0
total_points 1111.0
result 1
rank_dif 71.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 561, dtype: object
date 2019-03-25 00:00:00
team France
score 4.0
suf_score 0.0
rank 2.0
rank_suf 38.0
rank_change 0.0
total_points 1726.0
result 0
rank_dif -36.0
points_by_rank 0.078947
team_points 3
country_classification Classe S
Name: 562, dtype: object
date 2019-03-26 00:00:00
team Algeria
score 1.0
suf_score 0.0
rank 69.0
rank_suf 28.0
rank_change 2.0
total_points 1349.0
result 0
rank_dif 41.0
points_by_rank 0.107143
team_points 3
country_classification Classe B
Name: 563, dtype: object
date 2019-03-26 00:00:00
team Costa Rica
score 1.0
suf_score 0.0
rank 37.0
rank_suf 54.0
rank_change 1.0
total_points 1461.0
result 0
rank_dif -17.0
points_by_rank 0.055556
team_points 3
country_classification Classe A
Name: 564, dtype: object
date 2019-03-26 00:00:00
team Czech Republic
score 1.0
suf_score 3.0
rank 44.0
rank_suf 3.0
rank_change 2.0
total_points 1435.0
result 1
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 565, dtype: object
date 2019-03-26 00:00:00
team Ghana
score 3.0
suf_score 1.0
rank 52.0
rank_suf 101.0
rank_change 1.0
total_points 1412.0
result 0
rank_dif -49.0
points_by_rank 0.029703
team_points 3
country_classification Classe A
Name: 566, dtype: object
date 2019-03-26 00:00:00
team Gibraltar
score 0.0
suf_score 1.0
rank 194.0
rank_suf 96.0
rank_change 0.0
total_points 905.0
result 1
rank_dif 98.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 567, dtype: object
date 2019-03-26 00:00:00
team Honduras
score 0.0
suf_score 0.0
rank 63.0
rank_suf 58.0
rank_change 1.0
total_points 1369.0
result 2
rank_dif 5.0
points_by_rank 0.017241
team_points 1
country_classification Classe B
Name: 568, dtype: object
date 2019-03-26 00:00:00
team Japan
score 0.0
suf_score 1.0
rank 27.0
rank_suf 60.0
rank_change -23.0
total_points 1495.0
result 1
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 569, dtype: object
date 2019-03-26 00:00:00
team South Korea
score 2.0
suf_score 1.0
rank 38.0
rank_suf 12.0
rank_change -15.0
total_points 1451.0
result 0
rank_dif 26.0
points_by_rank 0.25
team_points 3
country_classification Classe A
Name: 570, dtype: object
date 2019-03-26 00:00:00
team Morocco
score 0.0
suf_score 1.0
rank 43.0
rank_suf 11.0
rank_change 3.0
total_points 1440.0
result 1
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 571, dtype: object
date 2019-03-26 00:00:00
team Nicaragua
score 0.0
suf_score 1.0
rank 128.0
rank_suf 149.0
rank_change -1.0
total_points 1119.0
result 1
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 572, dtype: object
date 2019-03-26 00:00:00
team Nigeria
score 1.0
suf_score 0.0
rank 46.0
rank_suf 57.0
rank_change 2.0
total_points 1427.0
result 0
rank_dif -11.0
points_by_rank 0.052632
team_points 3
country_classification Classe A
Name: 573, dtype: object
date 2019-03-26 00:00:00
team Paraguay
score 2.0
suf_score 4.0
rank 33.0
rank_suf 17.0
rank_change 1.0
total_points 1476.0
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 574, dtype: object
date 2019-03-26 00:00:00
team Peru
score 0.0
suf_score 2.0
rank 20.0
rank_suf 73.0
rank_change 0.0
total_points 1518.0
result 1
rank_dif -53.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 575, dtype: object
date 2019-03-26 00:00:00
team Senegal
score 2.0
suf_score 1.0
rank 24.0
rank_suf 65.0
rank_change 1.0
total_points 1505.0
result 0
rank_dif -41.0
points_by_rank 0.046154
team_points 3
country_classification Classe A
Name: 576, dtype: object
date 2019-03-26 00:00:00
team United Arab Emirates
score 0.0
suf_score 0.0
rank 67.0
rank_suf 83.0
rank_change -12.0
total_points 1355.0
result 2
rank_dif -16.0
points_by_rank 0.012048
team_points 1
country_classification Classe B
Name: 577, dtype: object
date 2019-03-26 00:00:00
team United States
score 1.0
suf_score 1.0
rank 25.0
rank_suf 13.0
rank_change 0.0
total_points 1501.0
result 2
rank_dif 12.0
points_by_rank 0.076923
team_points 1
country_classification Classe A
Name: 578, dtype: object
date 2019-03-26 00:00:00
team Republic of Ireland
score 1.0
suf_score 0.0
rank 34.0
rank_suf 91.0
rank_change 1.0
total_points 1474.0
result 0
rank_dif -57.0
points_by_rank 0.032967
team_points 3
country_classification Classe A
Name: 579, dtype: object
date 2019-03-26 00:00:00
team Switzerland
score 3.0
suf_score 3.0
rank 8.0
rank_suf 10.0
rank_change 0.0
total_points 1599.0
result 2
rank_dif -2.0
points_by_rank 0.1
team_points 1
country_classification Classe A
Name: 580, dtype: object
date 2019-03-26 00:00:00
team Malta
score 0.0
suf_score 2.0
rank 182.0
rank_suf 9.0
rank_change 0.0
total_points 926.0
result 1
rank_dif 173.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 581, dtype: object
date 2019-03-26 00:00:00
team Norway
score 3.0
suf_score 3.0
rank 48.0
rank_suf 14.0
rank_change 2.0
total_points 1425.0
result 2
rank_dif 34.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 582, dtype: object
date 2019-03-26 00:00:00
team Romania
score 4.0
suf_score 1.0
rank 25.0
rank_suf 97.0
rank_change 1.0
total_points 1501.0
result 0
rank_dif -72.0
points_by_rank 0.030928
team_points 3
country_classification Classe A
Name: 583, dtype: object
date 2019-03-26 00:00:00
team Bosnia and Herzegovina
score 2.0
suf_score 2.0
rank 35.0
rank_suf 45.0
rank_change 1.0
total_points 1472.0
result 2
rank_dif -10.0
points_by_rank 0.022222
team_points 1
country_classification Classe A
Name: 584, dtype: object
date 2019-03-26 00:00:00
team Italy
score 6.0
suf_score 0.0
rank 18.0
rank_suf 181.0
rank_change 0.0
total_points 1539.0
result 0
rank_dif -163.0
points_by_rank 0.016575
team_points 3
country_classification Classe A
Name: 585, dtype: object
date 2019-03-26 00:00:00
team Armenia
score 0.0
suf_score 2.0
rank 101.0
rank_suf 59.0
rank_change 0.0
total_points 1222.0
result 1
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 586, dtype: object
date 2019-04-20 00:00:00
team Botswana
score 2.0
suf_score 0.0
rank 148.0
rank_suf 190.0
rank_change 3.0
total_points 1060.0
result 0
rank_dif -42.0
points_by_rank 0.015789
team_points 3
country_classification Classe C
Name: 587, dtype: object
date 2019-04-20 00:00:00
team Eswatini
score 0.0
suf_score 0.0
rank 143.0
rank_suf 128.0
rank_change 3.0
total_points 1074.0
result 2
rank_dif 15.0
points_by_rank 0.007812
team_points 1
country_classification Classe C
Name: 588, dtype: object
date 2019-05-11 00:00:00
team Malawi
score 1.0
suf_score 1.0
rank 128.0
rank_suf 143.0
rank_change -1.0
total_points 1122.0
result 2
rank_dif -15.0
points_by_rank 0.006993
team_points 1
country_classification Classe C
Name: 589, dtype: object
date 2019-05-11 00:00:00
team Seychelles
score 1.0
suf_score 3.0
rank 190.0
rank_suf 148.0
rank_change 1.0
total_points 908.0
result 1
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 590, dtype: object
date 2019-05-25 00:00:00
team Eswatini
score 2.0
suf_score 2.0
rank 143.0
rank_suf 156.0
rank_change 3.0
total_points 1074.0
result 2
rank_dif -13.0
points_by_rank 0.00641
team_points 1
country_classification Classe C
Name: 591, dtype: object
date 2019-05-26 00:00:00
team Mozambique
score 1.0
suf_score 2.0
rank 117.0
rank_suf 113.0
rank_change 1.0
total_points 1166.0
result 1
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 592, dtype: object
date 2019-05-26 00:00:00
team Malawi
score 3.0
suf_score 0.0
rank 128.0
rank_suf 190.0
rank_change -1.0
total_points 1122.0
result 0
rank_dif -62.0
points_by_rank 0.015789
team_points 3
country_classification Classe C
Name: 593, dtype: object
date 2019-05-27 00:00:00
team Eswatini
score 2.0
suf_score 2.0
rank 143.0
rank_suf 147.0
rank_change 3.0
total_points 1074.0
result 2
rank_dif -4.0
points_by_rank 0.006803
team_points 1
country_classification Classe C
Name: 594, dtype: object
date 2019-05-28 00:00:00
team Seychelles
score 0.0
suf_score 0.0
rank 190.0
rank_suf 117.0
rank_change 1.0
total_points 908.0
result 2
rank_dif 73.0
points_by_rank 0.008547
team_points 1
country_classification Classe D
Name: 595, dtype: object
date 2019-05-28 00:00:00
team Namibia
score 1.0
suf_score 2.0
rank 113.0
rank_suf 128.0
rank_change 3.0
total_points 1181.0
result 1
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 596, dtype: object
date 2019-05-28 00:00:00
team Laos
score 2.0
suf_score 1.0
rank 184.0
rank_suf 202.0
rank_change 0.0
total_points 923.0
result 0
rank_dif -18.0
points_by_rank 0.014851
team_points 3
country_classification Classe D
Name: 597, dtype: object
date 2019-05-29 00:00:00
team Comoros
score 2.0
suf_score 1.0
rank 147.0
rank_suf 156.0
rank_change 5.0
total_points 1071.0
result 0
rank_dif -9.0
points_by_rank 0.019231
team_points 3
country_classification Classe C
Name: 598, dtype: object
date 2019-05-30 00:00:00
team Mozambique
score 1.0
suf_score 1.0
rank 117.0
rank_suf 128.0
rank_change 1.0
total_points 1166.0
result 2
rank_dif -11.0
points_by_rank 0.007812
team_points 1
country_classification Classe C
Name: 599, dtype: object
date 2019-05-30 00:00:00
team Namibia
score 3.0
suf_score 0.0
rank 113.0
rank_suf 190.0
rank_change 3.0
total_points 1181.0
result 0
rank_dif -77.0
points_by_rank 0.015789
team_points 3
country_classification Classe C
Name: 600, dtype: object
date 2019-05-30 00:00:00
team Turkey
score 2.0
suf_score 1.0
rank 39.0
rank_suf 43.0
rank_change -2.0
total_points 1457.0
result 0
rank_dif -4.0
points_by_rank 0.069767
team_points 3
country_classification Classe A
Name: 601, dtype: object
date 2019-05-31 00:00:00
team Laos
score 2.0
suf_score 2.0
rank 184.0
rank_suf 202.0
rank_change 0.0
total_points 923.0
result 2
rank_dif -18.0
points_by_rank 0.00495
team_points 1
country_classification Classe D
Name: 602, dtype: object
date 2019-06-01 00:00:00
team Lesotho
score 0.0
suf_score 0.0
rank 142.0
rank_suf 79.0
rank_change -4.0
total_points 1075.0
result 2
rank_dif 63.0
points_by_rank 0.012658
team_points 1
country_classification Classe C
Name: 603, dtype: object
date 2019-06-01 00:00:00
team Zimbabwe
score 2.0
suf_score 0.0
rank 110.0
rank_suf 147.0
rank_change -3.0
total_points 1190.0
result 0
rank_dif -37.0
points_by_rank 0.020408
team_points 3
country_classification Classe C
Name: 604, dtype: object
date 2019-06-01 00:00:00
team Venezuela
score 1.0
suf_score 1.0
rank 29.0
rank_suf 59.0
rank_change -3.0
total_points 1484.0
result 2
rank_dif -30.0
points_by_rank 0.016949
team_points 1
country_classification Classe A
Name: 605, dtype: object
date 2019-06-02 00:00:00
team South Africa
score 2.0
suf_score 2.0
rank 73.0
rank_suf 148.0
rank_change -1.0
total_points 1335.0
result 2
rank_dif -75.0
points_by_rank 0.006757
team_points 1
country_classification Classe B
Name: 606, dtype: object
date 2019-06-02 00:00:00
team Zambia
score 2.0
suf_score 2.0
rank 79.0
rank_suf 128.0
rank_change -3.0
total_points 1302.0
result 2
rank_dif -49.0
points_by_rank 0.007812
team_points 1
country_classification Classe B
Name: 607, dtype: object
date 2019-06-02 00:00:00
team El Salvador
score 1.0
suf_score 0.0
rank 71.0
rank_suf 100.0
rank_change -2.0
total_points 1344.0
result 0
rank_dif -29.0
points_by_rank 0.03
team_points 3
country_classification Classe B
Name: 608, dtype: object
date 2019-06-02 00:00:00
team France
score 2.0
suf_score 0.0
rank 2.0
rank_suf 63.0
rank_change 0.0
total_points 1734.0
result 0
rank_dif -61.0
points_by_rank 0.047619
team_points 3
country_classification Classe S
Name: 609, dtype: object
date 2019-06-02 00:00:00
team Luxembourg
score 3.0
suf_score 3.0
rank 86.0
rank_suf 107.0
rank_change -1.0
total_points 1277.0
result 2
rank_dif -21.0
points_by_rank 0.009346
team_points 1
country_classification Classe B
Name: 610, dtype: object
date 2019-06-02 00:00:00
team Malaysia
score 2.0
suf_score 0.0
rank 168.0
rank_suf 161.0
rank_change 1.0
total_points 986.0
result 0
rank_dif 7.0
points_by_rank 0.018634
team_points 3
country_classification Classe D
Name: 611, dtype: object
date 2019-06-02 00:00:00
team Turkey
score 0.0
suf_score 0.0
rank 39.0
rank_suf 85.0
rank_change -2.0
total_points 1457.0
result 2
rank_dif -46.0
points_by_rank 0.011765
team_points 1
country_classification Classe A
Name: 612, dtype: object
date 2019-06-03 00:00:00
team Colombia
score 3.0
suf_score 0.0
rank 12.0
rank_suf 74.0
rank_change 0.0
total_points 1573.0
result 0
rank_dif -62.0
points_by_rank 0.040541
team_points 3
country_classification Classe A
Name: 613, dtype: object
date 2019-06-03 00:00:00
team Vanuatu
score 2.0
suf_score 0.0
rank 166.0
rank_suf 158.0
rank_change 3.0
total_points 991.0
result 0
rank_dif 8.0
points_by_rank 0.018987
team_points 3
country_classification Classe D
Name: 614, dtype: object
date 2019-06-04 00:00:00
team Comoros
score 1.0
suf_score 2.0
rank 147.0
rank_suf 128.0
rank_change 5.0
total_points 1071.0
result 1
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 615, dtype: object
date 2019-06-04 00:00:00
team South Africa
score 1.0
suf_score 1.0
rank 73.0
rank_suf 79.0
rank_change -1.0
total_points 1335.0
result 2
rank_dif -6.0
points_by_rank 0.012658
team_points 1
country_classification Classe B
Name: 616, dtype: object
date 2019-06-05 00:00:00
team Lesotho
score 1.0
suf_score 2.0
rank 142.0
rank_suf 148.0
rank_change -4.0
total_points 1075.0
result 1
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 617, dtype: object
date 2019-06-05 00:00:00
team Zimbabwe
score 0.0
suf_score 0.0
rank 110.0
rank_suf 79.0
rank_change -3.0
total_points 1190.0
result 2
rank_dif 31.0
points_by_rank 0.012658
team_points 1
country_classification Classe C
Name: 618, dtype: object
date 2019-06-05 00:00:00
team Brazil
score 2.0
suf_score 0.0
rank 3.0
rank_suf 55.0
rank_change 0.0
total_points 1676.0
result 0
rank_dif -52.0
points_by_rank 0.054545
team_points 3
country_classification Classe S-
Name: 619, dtype: object
date 2019-06-05 00:00:00
team Japan
score 0.0
suf_score 0.0
rank 26.0
rank_suf 93.0
rank_change -1.0
total_points 1494.0
result 2
rank_dif -67.0
points_by_rank 0.010753
team_points 1
country_classification Classe A
Name: 620, dtype: object
date 2019-06-05 00:00:00
team Mexico
score 3.0
suf_score 1.0
rank 18.0
rank_suf 29.0
rank_change 1.0
total_points 1549.0
result 0
rank_dif -11.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 621, dtype: object
date 2019-06-05 00:00:00
team Paraguay
score 1.0
suf_score 1.0
rank 36.0
rank_suf 61.0
rank_change 3.0
total_points 1467.0
result 2
rank_dif -25.0
points_by_rank 0.016393
team_points 1
country_classification Classe A
Name: 622, dtype: object
date 2019-06-05 00:00:00
team Peru
score 1.0
suf_score 0.0
rank 21.0
rank_suf 38.0
rank_change 1.0
total_points 1516.0
result 0
rank_dif -17.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 623, dtype: object
date 2019-06-05 00:00:00
team United States
score 0.0
suf_score 1.0
rank 24.0
rank_suf 56.0
rank_change -1.0
total_points 1506.0
result 1
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 624, dtype: object
date 2019-06-05 00:00:00
team Portugal
score 3.0
suf_score 1.0
rank 7.0
rank_suf 8.0
rank_change 1.0
total_points 1607.0
result 0
rank_dif -1.0
points_by_rank 0.375
team_points 3
country_classification Classe S-
Name: 625, dtype: object
date 2019-06-06 00:00:00
team Bermuda
score 1.0
suf_score 0.0
rank 175.0
rank_suf 175.0
rank_change -1.0
total_points 959.0
result 0
rank_dif 0.0
points_by_rank 0.017143
team_points 3
country_classification Classe D
Name: 626, dtype: object
date 2019-06-06 00:00:00
team Chile
score 2.0
suf_score 1.0
rank 15.0
rank_suf 100.0
rank_change 2.0
total_points 1559.0
result 0
rank_dif -85.0
points_by_rank 0.03
team_points 3
country_classification Classe A
Name: 627, dtype: object
date 2019-06-06 00:00:00
team Iran
score 5.0
suf_score 0.0
rank 21.0
rank_suf 83.0
rank_change -1.0
total_points 1516.0
result 0
rank_dif -62.0
points_by_rank 0.036145
team_points 3
country_classification Classe A
Name: 628, dtype: object
date 2019-06-06 00:00:00
team Slovakia
score 5.0
suf_score 1.0
rank 32.0
rank_suf 97.0
rank_change 3.0
total_points 1482.0
result 0
rank_dif -65.0
points_by_rank 0.030928
team_points 3
country_classification Classe A
Name: 629, dtype: object
date 2019-06-06 00:00:00
team Tajikistan
score 1.0
suf_score 1.0
rank 120.0
rank_suf 149.0
rank_change 0.0
total_points 1155.0
result 2
rank_dif -29.0
points_by_rank 0.006711
team_points 1
country_classification Classe C
Name: 630, dtype: object
date 2019-06-06 00:00:00
team England
score 1.0
suf_score 3.0
rank 4.0
rank_suf 16.0
rank_change -1.0
total_points 1647.0
result 1
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 631, dtype: object
date 2019-06-06 00:00:00
team Bhutan
score 1.0
suf_score 0.0
rank 186.0
rank_suf 193.0
rank_change 0.0
total_points 917.0
result 0
rank_dif -7.0
points_by_rank 0.015544
team_points 3
country_classification Classe D
Name: 632, dtype: object
date 2019-06-06 00:00:00
team Cambodia
score 2.0
suf_score 0.0
rank 173.0
rank_suf 200.0
rank_change 1.0
total_points 967.0
result 0
rank_dif -27.0
points_by_rank 0.015
team_points 3
country_classification Classe D
Name: 633, dtype: object
date 2019-06-06 00:00:00
team Laos
score 0.0
suf_score 1.0
rank 184.0
rank_suf 188.0
rank_change 0.0
total_points 923.0
result 1
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 634, dtype: object
date 2019-06-06 00:00:00
team Macau
score 1.0
suf_score 0.0
rank 183.0
rank_suf 202.0
rank_change 0.0
total_points 925.0
result 0
rank_dif -19.0
points_by_rank 0.014851
team_points 3
country_classification Classe D
Name: 635, dtype: object
date 2019-06-07 00:00:00
team Czech Republic
score 2.0
suf_score 1.0
rank 48.0
rank_suf 51.0
rank_change 4.0
total_points 1424.0
result 0
rank_dif -3.0
points_by_rank 0.058824
team_points 3
country_classification Classe A
Name: 636, dtype: object
date 2019-06-07 00:00:00
team Montenegro
score 1.0
suf_score 1.0
rank 51.0
rank_suf 127.0
rank_change 5.0
total_points 1419.0
result 2
rank_dif -76.0
points_by_rank 0.007874
team_points 1
country_classification Classe A
Name: 637, dtype: object
date 2019-06-07 00:00:00
team Lithuania
score 1.0
suf_score 1.0
rank 132.0
rank_suf 86.0
rank_change 0.0
total_points 1102.0
result 2
rank_dif 46.0
points_by_rank 0.011628
team_points 1
country_classification Classe C
Name: 638, dtype: object
date 2019-06-07 00:00:00
team Ukraine
score 5.0
suf_score 0.0
rank 27.0
rank_suf 29.0
rank_change -3.0
total_points 1493.0
result 0
rank_dif -2.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 639, dtype: object
date 2019-06-07 00:00:00
team Georgia
score 3.0
suf_score 0.0
rank 94.0
rank_suf 195.0
rank_change 3.0
total_points 1256.0
result 0
rank_dif -101.0
points_by_rank 0.015385
team_points 3
country_classification Classe B
Name: 640, dtype: object
date 2019-06-07 00:00:00
team Denmark
score 1.0
suf_score 1.0
rank 10.0
rank_suf 29.0
rank_change 0.0
total_points 1586.0
result 2
rank_dif -19.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 641, dtype: object
date 2019-06-07 00:00:00
team Faroe Islands
score 1.0
suf_score 4.0
rank 102.0
rank_suf 9.0
rank_change 5.0
total_points 1213.0
result 1
rank_dif 93.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 642, dtype: object
date 2019-06-07 00:00:00
team Norway
score 2.0
suf_score 2.0
rank 50.0
rank_suf 25.0
rank_change 2.0
total_points 1420.0
result 2
rank_dif 25.0
points_by_rank 0.04
team_points 1
country_classification Classe A
Name: 643, dtype: object
date 2019-06-07 00:00:00
team Sweden
score 3.0
suf_score 0.0
rank 14.0
rank_suf 180.0
rank_change 0.0
total_points 1567.0
result 0
rank_dif -166.0
points_by_rank 0.016667
team_points 3
country_classification Classe A
Name: 644, dtype: object
date 2019-06-07 00:00:00
team Austria
score 1.0
suf_score 0.0
rank 34.0
rank_suf 63.0
rank_change 11.0
total_points 1479.0
result 0
rank_dif -29.0
points_by_rank 0.047619
team_points 3
country_classification Classe A
Name: 645, dtype: object
date 2019-06-07 00:00:00
team Latvia
score 0.0
suf_score 3.0
rank 133.0
rank_suf 84.0
rank_change 2.0
total_points 1101.0
result 1
rank_dif 49.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 646, dtype: object
date 2019-06-07 00:00:00
team Lesotho
score 2.0
suf_score 2.0
rank 142.0
rank_suf 110.0
rank_change -4.0
total_points 1075.0
result 2
rank_dif 32.0
points_by_rank 0.009091
team_points 1
country_classification Classe C
Name: 647, dtype: object
date 2019-06-07 00:00:00
team South Africa
score 0.0
suf_score 0.0
rank 73.0
rank_suf 128.0
rank_change -1.0
total_points 1335.0
result 2
rank_dif -55.0
points_by_rank 0.007812
team_points 1
country_classification Classe B
Name: 648, dtype: object
date 2019-06-07 00:00:00
team Argentina
score 5.0
suf_score 1.0
rank 11.0
rank_suf 129.0
rank_change 0.0
total_points 1580.0
result 0
rank_dif -118.0
points_by_rank 0.023256
team_points 3
country_classification Classe A
Name: 649, dtype: object
date 2019-06-07 00:00:00
team China PR
score 2.0
suf_score 0.0
rank 74.0
rank_suf 124.0
rank_change 2.0
total_points 1327.0
result 0
rank_dif -50.0
points_by_rank 0.024194
team_points 3
country_classification Classe B
Name: 650, dtype: object
date 2019-06-07 00:00:00
team Fiji
score 1.0
suf_score 1.0
rank 165.0
rank_suf 158.0
rank_change -4.0
total_points 992.0
result 2
rank_dif 7.0
points_by_rank 0.006329
team_points 1
country_classification Classe D
Name: 651, dtype: object
date 2019-06-07 00:00:00
team Kenya
score 1.0
suf_score 0.0
rank 108.0
rank_suf 107.0
rank_change 2.0
total_points 1202.0
result 0
rank_dif 1.0
points_by_rank 0.028037
team_points 3
country_classification Classe B
Name: 652, dtype: object
date 2019-06-07 00:00:00
team South Korea
score 1.0
suf_score 0.0
rank 37.0
rank_suf 41.0
rank_change -1.0
total_points 1462.0
result 0
rank_dif -4.0
points_by_rank 0.073171
team_points 3
country_classification Classe A
Name: 653, dtype: object
date 2019-06-07 00:00:00
team Tunisia
score 2.0
suf_score 0.0
rank 28.0
rank_suf 76.0
rank_change 0.0
total_points 1491.0
result 0
rank_dif -48.0
points_by_rank 0.039474
team_points 3
country_classification Classe A
Name: 654, dtype: object
date 2019-06-07 00:00:00
team Uruguay
score 3.0
suf_score 0.0
rank 6.0
rank_suf 74.0
rank_change -1.0
total_points 1613.0
result 0
rank_dif -68.0
points_by_rank 0.040541
team_points 3
country_classification Classe S-
Name: 655, dtype: object
date 2019-06-07 00:00:00
team Malaysia
score 7.0
suf_score 1.0
rank 168.0
rank_suf 195.0
rank_change 1.0
total_points 986.0
result 0
rank_dif -27.0
points_by_rank 0.015385
team_points 3
country_classification Classe D
Name: 656, dtype: object
date 2019-06-08 00:00:00
team Estonia
score 1.0
suf_score 2.0
rank 96.0
rank_suf 33.0
rank_change 0.0
total_points 1240.0
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 657, dtype: object
date 2019-06-08 00:00:00
team Belarus
score 0.0
suf_score 2.0
rank 81.0
rank_suf 13.0
rank_change 3.0
total_points 1301.0
result 1
rank_dif 68.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 658, dtype: object
date 2019-06-08 00:00:00
team Croatia
score 2.0
suf_score 1.0
rank 5.0
rank_suf 19.0
rank_change 1.0
total_points 1621.0
result 0
rank_dif -14.0
points_by_rank 0.157895
team_points 3
country_classification Classe S-
Name: 659, dtype: object
date 2019-06-08 00:00:00
team Azerbaijan
score 1.0
suf_score 3.0
rank 108.0
rank_suf 51.0
rank_change 0.0
total_points 1202.0
result 1
rank_dif 57.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 660, dtype: object
date 2019-06-08 00:00:00
team Iceland
score 1.0
suf_score 0.0
rank 40.0
rank_suf 62.0
rank_change 2.0
total_points 1450.0
result 0
rank_dif -22.0
points_by_rank 0.048387
team_points 3
country_classification Classe A
Name: 661, dtype: object
date 2019-06-08 00:00:00
team Moldova
score 1.0
suf_score 0.0
rank 171.0
rank_suf 134.0
rank_change 1.0
total_points 974.0
result 0
rank_dif 37.0
points_by_rank 0.022388
team_points 3
country_classification Classe D
Name: 662, dtype: object
date 2019-06-08 00:00:00
team Turkey
score 2.0
suf_score 0.0
rank 39.0
rank_suf 2.0
rank_change -2.0
total_points 1457.0
result 0
rank_dif 37.0
points_by_rank 1.5
team_points 3
country_classification Classe A
Name: 663, dtype: object
date 2019-06-08 00:00:00
team Russia
score 9.0
suf_score 0.0
rank 46.0
rank_suf 211.0
rank_change -4.0
total_points 1425.0
result 0
rank_dif -165.0
points_by_rank 0.014218
team_points 3
country_classification Classe A
Name: 664, dtype: object
date 2019-06-08 00:00:00
team Scotland
score 2.0
suf_score 1.0
rank 44.0
rank_suf 89.0
rank_change 4.0
total_points 1430.0
result 0
rank_dif -45.0
points_by_rank 0.033708
team_points 3
country_classification Classe A
Name: 665, dtype: object
date 2019-06-08 00:00:00
team Belgium
score 3.0
suf_score 0.0
rank 1.0
rank_suf 116.0
rank_change 0.0
total_points 1737.0
result 0
rank_dif -115.0
points_by_rank 0.025862
team_points 3
country_classification Classe S
Name: 666, dtype: object
date 2019-06-08 00:00:00
team Finland
score 2.0
suf_score 0.0
rank 60.0
rank_suf 35.0
rank_change 1.0
total_points 1375.0
result 0
rank_dif 25.0
points_by_rank 0.085714
team_points 3
country_classification Classe B
Name: 667, dtype: object
date 2019-06-08 00:00:00
team Armenia
score 3.0
suf_score 0.0
rank 106.0
rank_suf 182.0
rank_change 5.0
total_points 1206.0
result 0
rank_dif -76.0
points_by_rank 0.016484
team_points 3
country_classification Classe B
Name: 668, dtype: object
date 2019-06-08 00:00:00
team Greece
score 0.0
suf_score 3.0
rank 43.0
rank_suf 17.0
rank_change -2.0
total_points 1433.0
result 1
rank_dif 26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 669, dtype: object
date 2019-06-08 00:00:00
team Botswana
score 0.0
suf_score 1.0
rank 148.0
rank_suf 79.0
rank_change 3.0
total_points 1060.0
result 1
rank_dif 69.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 670, dtype: object
date 2019-06-08 00:00:00
team Angola
score 2.0
suf_score 0.0
rank 122.0
rank_suf 118.0
rank_change -3.0
total_points 1142.0
result 0
rank_dif 4.0
points_by_rank 0.025424
team_points 3
country_classification Classe C
Name: 671, dtype: object
date 2019-06-08 00:00:00
team Nigeria
score 0.0
suf_score 0.0
rank 42.0
rank_suf 110.0
rank_change -4.0
total_points 1435.0
result 2
rank_dif -68.0
points_by_rank 0.009091
team_points 1
country_classification Classe A
Name: 672, dtype: object
date 2019-06-08 00:00:00
team Singapore
score 4.0
suf_score 3.0
rank 160.0
rank_suf 139.0
rank_change -5.0
total_points 998.0
result 0
rank_dif 21.0
points_by_rank 0.021583
team_points 3
country_classification Classe D
Name: 673, dtype: object
date 2019-06-09 00:00:00
team Brazil
score 7.0
suf_score 0.0
rank 3.0
rank_suf 61.0
rank_change 0.0
total_points 1676.0
result 0
rank_dif -58.0
points_by_rank 0.04918
team_points 3
country_classification Classe S-
Name: 674, dtype: object
date 2019-06-09 00:00:00
team Cameroon
score 2.0
suf_score 1.0
rank 54.0
rank_suf 79.0
rank_change -2.0
total_points 1399.0
result 0
rank_dif -25.0
points_by_rank 0.037975
team_points 3
country_classification Classe B
Name: 675, dtype: object
date 2019-06-09 00:00:00
team Japan
score 2.0
suf_score 0.0
rank 26.0
rank_suf 71.0
rank_change -1.0
total_points 1494.0
result 0
rank_dif -45.0
points_by_rank 0.042254
team_points 3
country_classification Classe A
Name: 676, dtype: object
date 2019-06-09 00:00:00
team Mexico
score 3.0
suf_score 2.0
rank 18.0
rank_suf 59.0
rank_change 1.0
total_points 1549.0
result 0
rank_dif -41.0
points_by_rank 0.050847
team_points 3
country_classification Classe A
Name: 677, dtype: object
date 2019-06-09 00:00:00
team Paraguay
score 2.0
suf_score 0.0
rank 36.0
rank_suf 143.0
rank_change 3.0
total_points 1467.0
result 0
rank_dif -107.0
points_by_rank 0.020979
team_points 3
country_classification Classe A
Name: 678, dtype: object
date 2019-06-09 00:00:00
team Peru
score 0.0
suf_score 3.0
rank 21.0
rank_suf 12.0
rank_change 1.0
total_points 1516.0
result 1
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 679, dtype: object
date 2019-06-09 00:00:00
team Turkmenistan
score 0.0
suf_score 0.0
rank 136.0
rank_suf 79.0
rank_change 0.0
total_points 1089.0
result 2
rank_dif 57.0
points_by_rank 0.012658
team_points 1
country_classification Classe C
Name: 680, dtype: object
date 2019-06-09 00:00:00
team United States
score 0.0
suf_score 3.0
rank 24.0
rank_suf 29.0
rank_change -1.0
total_points 1506.0
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 681, dtype: object
date 2019-06-09 00:00:00
team Switzerland
score 0.0
suf_score 0.0
rank 8.0
rank_suf 4.0
rank_change 0.0
total_points 1604.0
result 2
rank_dif 4.0
points_by_rank 0.25
team_points 1
country_classification Classe S-
Name: 682, dtype: object
date 2019-06-09 00:00:00
team Portugal
score 1.0
suf_score 0.0
rank 7.0
rank_suf 16.0
rank_change 1.0
total_points 1607.0
result 0
rank_dif -9.0
points_by_rank 0.1875
team_points 3
country_classification Classe S-
Name: 683, dtype: object
date 2019-06-10 00:00:00
team Czech Republic
score 3.0
suf_score 0.0
rank 48.0
rank_suf 51.0
rank_change 4.0
total_points 1424.0
result 0
rank_dif -3.0
points_by_rank 0.058824
team_points 3
country_classification Classe A
Name: 684, dtype: object
date 2019-06-10 00:00:00
team Bulgaria
score 2.0
suf_score 3.0
rank 51.0
rank_suf 127.0
rank_change 3.0
total_points 1419.0
result 1
rank_dif -76.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 685, dtype: object
date 2019-06-10 00:00:00
team Serbia
score 4.0
suf_score 1.0
rank 29.0
rank_suf 132.0
rank_change -2.0
total_points 1484.0
result 0
rank_dif -103.0
points_by_rank 0.022727
team_points 3
country_classification Classe A
Name: 686, dtype: object
date 2019-06-10 00:00:00
team Ukraine
score 1.0
suf_score 0.0
rank 27.0
rank_suf 86.0
rank_change -3.0
total_points 1493.0
result 0
rank_dif -59.0
points_by_rank 0.034884
team_points 3
country_classification Classe A
Name: 687, dtype: object
date 2019-06-10 00:00:00
team Republic of Ireland
score 2.0
suf_score 0.0
rank 29.0
rank_suf 195.0
rank_change -5.0
total_points 1484.0
result 0
rank_dif -166.0
points_by_rank 0.015385
team_points 3
country_classification Classe A
Name: 688, dtype: object
date 2019-06-10 00:00:00
team Denmark
score 5.0
suf_score 1.0
rank 10.0
rank_suf 94.0
rank_change 0.0
total_points 1586.0
result 0
rank_dif -84.0
points_by_rank 0.031915
team_points 3
country_classification Classe A
Name: 689, dtype: object
date 2019-06-10 00:00:00
team Faroe Islands
score 0.0
suf_score 2.0
rank 102.0
rank_suf 50.0
rank_change 5.0
total_points 1213.0
result 1
rank_dif 52.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 690, dtype: object
date 2019-06-10 00:00:00
team Malta
score 0.0
suf_score 4.0
rank 180.0
rank_suf 25.0
rank_change -2.0
total_points 943.0
result 1
rank_dif 155.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 691, dtype: object
date 2019-06-10 00:00:00
team Spain
score 3.0
suf_score 0.0
rank 9.0
rank_suf 14.0
rank_change 0.0
total_points 1601.0
result 0
rank_dif -5.0
points_by_rank 0.214286
team_points 3
country_classification Classe S-
Name: 692, dtype: object
date 2019-06-10 00:00:00
team Poland
score 4.0
suf_score 0.0
rank 20.0
rank_suf 84.0
rank_change 0.0
total_points 1535.0
result 0
rank_dif -64.0
points_by_rank 0.035714
team_points 3
country_classification Classe A
Name: 693, dtype: object
date 2019-06-10 00:00:00
team Latvia
score 0.0
suf_score 5.0
rank 133.0
rank_suf 63.0
rank_change 2.0
total_points 1101.0
result 1
rank_dif 70.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 694, dtype: object
date 2019-06-10 00:00:00
team Vanuatu
score 0.0
suf_score 0.0
rank 166.0
rank_suf 165.0
rank_change 3.0
total_points 991.0
result 2
rank_dif 1.0
points_by_rank 0.006061
team_points 1
country_classification Classe D
Name: 695, dtype: object
date 2019-06-11 00:00:00
team Germany
score 8.0
suf_score 0.0
rank 13.0
rank_suf 96.0
rank_change -3.0
total_points 1570.0
result 0
rank_dif -83.0
points_by_rank 0.03125
team_points 3
country_classification Classe A
Name: 696, dtype: object
date 2019-06-11 00:00:00
team Belarus
score 0.0
suf_score 1.0
rank 81.0
rank_suf 33.0
rank_change 3.0
total_points 1301.0
result 1
rank_dif 48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 697, dtype: object
date 2019-06-11 00:00:00
team Azerbaijan
score 1.0
suf_score 5.0
rank 108.0
rank_suf 32.0
rank_change 0.0
total_points 1202.0
result 1
rank_dif 76.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 698, dtype: object
date 2019-06-11 00:00:00
team Hungary
score 1.0
suf_score 0.0
rank 51.0
rank_suf 19.0
rank_change -1.0
total_points 1419.0
result 0
rank_dif 32.0
points_by_rank 0.157895
team_points 3
country_classification Classe A
Name: 699, dtype: object
date 2019-06-11 00:00:00
team Iceland
score 2.0
suf_score 1.0
rank 40.0
rank_suf 39.0
rank_change 2.0
total_points 1450.0
result 0
rank_dif 1.0
points_by_rank 0.076923
team_points 3
country_classification Classe A
Name: 700, dtype: object
date 2019-06-11 00:00:00
team Albania
score 2.0
suf_score 0.0
rank 62.0
rank_suf 171.0
rank_change 1.0
total_points 1368.0
result 0
rank_dif -109.0
points_by_rank 0.017544
team_points 3
country_classification Classe B
Name: 701, dtype: object
date 2019-06-11 00:00:00
team Andorra
score 0.0
suf_score 4.0
rank 134.0
rank_suf 2.0
rank_change 2.0
total_points 1099.0
result 1
rank_dif 132.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 702, dtype: object
date 2019-06-11 00:00:00
team Kazakhstan
score 4.0
suf_score 0.0
rank 116.0
rank_suf 211.0
rank_change -1.0
total_points 1171.0
result 0
rank_dif -95.0
points_by_rank 0.014218
team_points 3
country_classification Classe C
Name: 703, dtype: object
date 2019-06-11 00:00:00
team Belgium
score 3.0
suf_score 0.0
rank 1.0
rank_suf 44.0
rank_change 0.0
total_points 1737.0
result 0
rank_dif -43.0
points_by_rank 0.068182
team_points 3
country_classification Classe S
Name: 704, dtype: object
date 2019-06-11 00:00:00
team Russia
score 1.0
suf_score 0.0
rank 46.0
rank_suf 89.0
rank_change -4.0
total_points 1425.0
result 0
rank_dif -43.0
points_by_rank 0.033708
team_points 3
country_classification Classe A
Name: 705, dtype: object
date 2019-06-11 00:00:00
team Italy
score 2.0
suf_score 1.0
rank 17.0
rank_suf 35.0
rank_change -1.0
total_points 1550.0
result 0
rank_dif -18.0
points_by_rank 0.085714
team_points 3
country_classification Classe A
Name: 706, dtype: object
date 2019-06-11 00:00:00
team Liechtenstein
score 0.0
suf_score 2.0
rank 182.0
rank_suf 60.0
rank_change 1.0
total_points 932.0
result 1
rank_dif 122.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 707, dtype: object
date 2019-06-11 00:00:00
team Greece
score 2.0
suf_score 3.0
rank 43.0
rank_suf 106.0
rank_change -2.0
total_points 1433.0
result 1
rank_dif -63.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 708, dtype: object
date 2019-06-11 00:00:00
team Algeria
score 1.0
suf_score 1.0
rank 70.0
rank_suf 136.0
rank_change 1.0
total_points 1348.0
result 2
rank_dif -66.0
points_by_rank 0.007353
team_points 1
country_classification Classe B
Name: 709, dtype: object
date 2019-06-11 00:00:00
team Benin
score 1.0
suf_score 0.0
rank 91.0
rank_suf 68.0
rank_change -3.0
total_points 1267.0
result 0
rank_dif 23.0
points_by_rank 0.044118
team_points 3
country_classification Classe B
Name: 710, dtype: object
date 2019-06-11 00:00:00
team China PR
score 1.0
suf_score 0.0
rank 74.0
rank_suf 120.0
rank_change 2.0
total_points 1327.0
result 0
rank_dif -46.0
points_by_rank 0.025
team_points 3
country_classification Classe B
Name: 711, dtype: object
date 2019-06-11 00:00:00
team Croatia
score 1.0
suf_score 2.0
rank 5.0
rank_suf 28.0
rank_change 1.0
total_points 1621.0
result 1
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 712, dtype: object
date 2019-06-11 00:00:00
team Jordan
score 4.0
suf_score 1.0
rank 97.0
rank_suf 159.0
rank_change 0.0
total_points 1229.0
result 0
rank_dif -62.0
points_by_rank 0.018868
team_points 3
country_classification Classe B
Name: 713, dtype: object
date 2019-06-11 00:00:00
team South Korea
score 1.0
suf_score 1.0
rank 37.0
rank_suf 21.0
rank_change -1.0
total_points 1462.0
result 2
rank_dif 16.0
points_by_rank 0.047619
team_points 1
country_classification Classe A
Name: 714, dtype: object
date 2019-06-11 00:00:00
team Singapore
score 1.0
suf_score 2.0
rank 160.0
rank_suf 140.0
rank_change -5.0
total_points 998.0
result 1
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 715, dtype: object
date 2019-06-11 00:00:00
team Uzbekistan
score 2.0
suf_score 0.0
rank 85.0
rank_suf 83.0
rank_change -4.0
total_points 1279.0
result 0
rank_dif 2.0
points_by_rank 0.036145
team_points 3
country_classification Classe B
Name: 716, dtype: object
date 2019-06-11 00:00:00
team Bangladesh
score 0.0
suf_score 0.0
rank 188.0
rank_suf 184.0
rank_change -4.0
total_points 909.0
result 2
rank_dif 4.0
points_by_rank 0.005435
team_points 1
country_classification Classe D
Name: 717, dtype: object
date 2019-06-11 00:00:00
team Guam
score 5.0
suf_score 0.0
rank 193.0
rank_suf 186.0
rank_change 1.0
total_points 907.0
result 0
rank_dif 7.0
points_by_rank 0.016129
team_points 3
country_classification Classe D
Name: 718, dtype: object
date 2019-06-11 00:00:00
team Pakistan
score 1.0
suf_score 2.0
rank 200.0
rank_suf 173.0
rank_change 1.0
total_points 888.0
result 1
rank_dif 27.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 719, dtype: object
date 2019-06-11 00:00:00
team Sri Lanka
score 3.0
suf_score 0.0
rank 202.0
rank_suf 183.0
rank_change 1.0
total_points 886.0
result 0
rank_dif 19.0
points_by_rank 0.016393
team_points 3
country_classification Classe D
Name: 720, dtype: object
date 2019-06-11 00:00:00
team Malaysia
score 5.0
suf_score 1.0
rank 168.0
rank_suf 195.0
rank_change 1.0
total_points 986.0
result 0
rank_dif -27.0
points_by_rank 0.015385
team_points 3
country_classification Classe D
Name: 721, dtype: object
date 2019-06-12 00:00:00
team Morocco
score 0.0
suf_score 1.0
rank 45.0
rank_suf 163.0
rank_change 2.0
total_points 1429.0
result 1
rank_dif -118.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 722, dtype: object
date 2019-06-13 00:00:00
team Egypt
score 1.0
suf_score 0.0
rank 57.0
rank_suf 131.0
rank_change 0.0
total_points 1384.0
result 0
rank_dif -74.0
points_by_rank 0.022901
team_points 3
country_classification Classe B
Name: 723, dtype: object
date 2019-06-14 00:00:00
team Cameroon
score 1.0
suf_score 1.0
rank 51.0
rank_suf 62.0
rank_change -3.0
total_points 1404.0
result 2
rank_dif -11.0
points_by_rank 0.016129
team_points 1
country_classification Classe A
Name: 724, dtype: object
date 2019-06-14 00:00:00
team Madagascar
score 1.0
suf_score 3.0
rank 108.0
rank_suf 103.0
rank_change 1.0
total_points 1198.0
result 1
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 725, dtype: object
date 2019-06-14 00:00:00
team Brazil
score 3.0
suf_score 0.0
rank 3.0
rank_suf 62.0
rank_change 0.0
total_points 1681.0
result 0
rank_dif -59.0
points_by_rank 0.048387
team_points 3
country_classification Classe S-
Name: 726, dtype: object
date 2019-06-15 00:00:00
team Venezuela
score 0.0
suf_score 0.0
rank 33.0
rank_suf 21.0
rank_change 4.0
total_points 1485.0
result 2
rank_dif 12.0
points_by_rank 0.047619
team_points 1
country_classification Classe A
Name: 727, dtype: object
date 2019-06-15 00:00:00
team Argentina
score 0.0
suf_score 2.0
rank 11.0
rank_suf 13.0
rank_change 0.0
total_points 1582.0
result 1
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 728, dtype: object
date 2019-06-15 00:00:00
team Mexico
score 7.0
suf_score 0.0
rank 18.0
rank_suf 175.0
rank_change 0.0
total_points 1557.0
result 0
rank_dif -157.0
points_by_rank 0.017143
team_points 3
country_classification Classe A
Name: 729, dtype: object
date 2019-06-15 00:00:00
team Ghana
score 0.0
suf_score 0.0
rank 50.0
rank_suf 72.0
rank_change 1.0
total_points 1423.0
result 2
rank_dif -22.0
points_by_rank 0.013889
team_points 1
country_classification Classe A
Name: 730, dtype: object
date 2019-06-15 00:00:00
team Indonesia
score 6.0
suf_score 0.0
rank 160.0
rank_suf 163.0
rank_change 1.0
total_points 1005.0
result 0
rank_dif -3.0
points_by_rank 0.018405
team_points 3
country_classification Classe C
Name: 731, dtype: object
date 2019-06-15 00:00:00
team Tanzania
score 1.0
suf_score 1.0
rank 131.0
rank_suf 109.0
rank_change 0.0
total_points 1105.0
result 2
rank_dif 22.0
points_by_rank 0.009174
team_points 1
country_classification Classe C
Name: 732, dtype: object
date 2019-06-16 00:00:00
team Paraguay
score 2.0
suf_score 2.0
rank 36.0
rank_suf 55.0
rank_change 0.0
total_points 1468.0
result 2
rank_dif -19.0
points_by_rank 0.018182
team_points 1
country_classification Classe A
Name: 733, dtype: object
date 2019-06-16 00:00:00
team Uruguay
score 4.0
suf_score 0.0
rank 8.0
rank_suf 60.0
rank_change 2.0
total_points 1615.0
result 0
rank_dif -52.0
points_by_rank 0.05
team_points 3
country_classification Classe S-
Name: 734, dtype: object
date 2019-06-16 00:00:00
team Haiti
score 2.0
suf_score 1.0
rank 101.0
rank_suf 174.0
rank_change 1.0
total_points 1219.0
result 0
rank_dif -73.0
points_by_rank 0.017241
team_points 3
country_classification Classe B
Name: 735, dtype: object
date 2019-06-16 00:00:00
team Costa Rica
score 4.0
suf_score 0.0
rank 39.0
rank_suf 129.0
rank_change 1.0
total_points 1453.0
result 0
rank_dif -90.0
points_by_rank 0.023256
team_points 3
country_classification Classe A
Name: 736, dtype: object
date 2019-06-16 00:00:00
team Algeria
score 3.0
suf_score 2.0
rank 68.0
rank_suf 62.0
rank_change -2.0
total_points 1346.0
result 0
rank_dif 6.0
points_by_rank 0.048387
team_points 3
country_classification Classe B
Name: 737, dtype: object
date 2019-06-16 00:00:00
team Egypt
score 3.0
suf_score 1.0
rank 58.0
rank_suf 71.0
rank_change 1.0
total_points 1384.0
result 0
rank_dif -13.0
points_by_rank 0.042254
team_points 3
country_classification Classe B
Name: 738, dtype: object
date 2019-06-16 00:00:00
team Morocco
score 2.0
suf_score 3.0
rank 47.0
rank_suf 81.0
rank_change 2.0
total_points 1429.0
result 1
rank_dif -34.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 739, dtype: object
date 2019-06-16 00:00:00
team Senegal
score 1.0
suf_score 0.0
rank 22.0
rank_suf 45.0
rank_change -1.0
total_points 1515.0
result 0
rank_dif -23.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 740, dtype: object
date 2019-06-17 00:00:00
team Japan
score 0.0
suf_score 4.0
rank 28.0
rank_suf 16.0
rank_change 2.0
total_points 1496.0
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 741, dtype: object
date 2019-06-17 00:00:00
team Curaçao
score 0.0
suf_score 1.0
rank 100.0
rank_suf 69.0
rank_change 0.0
total_points 1450.0
result 1
rank_dif 31.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 742, dtype: object
date 2019-06-17 00:00:00
team Jamaica
score 3.0
suf_score 2.0
rank 54.0
rank_suf 61.0
rank_change -2.0
total_points 1397.0
result 0
rank_dif -7.0
points_by_rank 0.04918
team_points 3
country_classification Classe B
Name: 743, dtype: object
date 2019-06-17 00:00:00
team Tunisia
score 2.0
suf_score 1.0
rank 25.0
rank_suf 134.0
rank_change -3.0
total_points 1501.0
result 0
rank_dif -109.0
points_by_rank 0.022388
team_points 3
country_classification Classe A
Name: 744, dtype: object
date 2019-06-18 00:00:00
team Bolivia
score 1.0
suf_score 3.0
rank 62.0
rank_suf 21.0
rank_change -1.0
total_points 1365.0
result 1
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 745, dtype: object
date 2019-06-18 00:00:00
team Brazil
score 0.0
suf_score 0.0
rank 3.0
rank_suf 33.0
rank_change 0.0
total_points 1681.0
result 2
rank_dif -30.0
points_by_rank 0.030303
team_points 1
country_classification Classe S-
Name: 746, dtype: object
date 2019-06-18 00:00:00
team Panama
score 2.0
suf_score 0.0
rank 75.0
rank_suf 92.0
rank_change 1.0
total_points 1322.0
result 0
rank_dif -17.0
points_by_rank 0.032609
team_points 3
country_classification Classe B
Name: 747, dtype: object
date 2019-06-18 00:00:00
team United States
score 4.0
suf_score 0.0
rank 30.0
rank_suf 177.0
rank_change 6.0
total_points 1495.0
result 0
rank_dif -147.0
points_by_rank 0.016949
team_points 3
country_classification Classe A
Name: 748, dtype: object
date 2019-06-18 00:00:00
team Benin
score 3.0
suf_score 1.0
rank 88.0
rank_suf 103.0
rank_change -3.0
total_points 1273.0
result 0
rank_dif -15.0
points_by_rank 0.029126
team_points 3
country_classification Classe B
Name: 749, dtype: object
date 2019-06-19 00:00:00
team Colombia
score 1.0
suf_score 0.0
rank 13.0
rank_suf 55.0
rank_change 1.0
total_points 1580.0
result 0
rank_dif -42.0
points_by_rank 0.054545
team_points 3
country_classification Classe A
Name: 750, dtype: object
date 2019-06-19 00:00:00
team Argentina
score 1.0
suf_score 1.0
rank 11.0
rank_suf 36.0
rank_change 0.0
total_points 1582.0
result 2
rank_dif -25.0
points_by_rank 0.027778
team_points 1
country_classification Classe A
Name: 751, dtype: object
date 2019-06-19 00:00:00
team Mexico
score 3.0
suf_score 1.0
rank 18.0
rank_suf 78.0
rank_change 0.0
total_points 1557.0
result 0
rank_dif -60.0
points_by_rank 0.038462
team_points 3
country_classification Classe A
Name: 752, dtype: object
date 2019-06-20 00:00:00
team Uruguay
score 2.0
suf_score 2.0
rank 8.0
rank_suf 28.0
rank_change 2.0
total_points 1615.0
result 2
rank_dif -20.0
points_by_rank 0.035714
team_points 1
country_classification Classe S-
Name: 753, dtype: object
date 2019-06-20 00:00:00
team Nicaragua
score 0.0
suf_score 2.0
rank 129.0
rank_suf 101.0
rank_change 0.0
total_points 1118.0
result 1
rank_dif 28.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 754, dtype: object
date 2019-06-20 00:00:00
team Costa Rica
score 2.0
suf_score 1.0
rank 39.0
rank_suf 174.0
rank_change 1.0
total_points 1453.0
result 0
rank_dif -135.0
points_by_rank 0.017241
team_points 3
country_classification Classe A
Name: 755, dtype: object
date 2019-06-21 00:00:00
team Egypt
score 1.0
suf_score 0.0
rank 58.0
rank_suf 109.0
rank_change 1.0
total_points 1384.0
result 0
rank_dif -51.0
points_by_rank 0.027523
team_points 3
country_classification Classe B
Name: 756, dtype: object
date 2019-06-21 00:00:00
team Ecuador
score 1.0
suf_score 2.0
rank 60.0
rank_suf 16.0
rank_change 1.0
total_points 1375.0
result 1
rank_dif 44.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 757, dtype: object
date 2019-06-21 00:00:00
team El Salvador
score 0.0
suf_score 0.0
rank 69.0
rank_suf 54.0
rank_change -2.0
total_points 1342.0
result 2
rank_dif 15.0
points_by_rank 0.018519
team_points 1
country_classification Classe B
Name: 758, dtype: object
date 2019-06-21 00:00:00
team Honduras
score 0.0
suf_score 1.0
rank 61.0
rank_suf 100.0
rank_change 0.0
total_points 1368.0
result 1
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 759, dtype: object
date 2019-06-22 00:00:00
team Nigeria
score 1.0
suf_score 0.0
rank 45.0
rank_suf 134.0
rank_change 3.0
total_points 1433.0
result 0
rank_dif -89.0
points_by_rank 0.022388
team_points 3
country_classification Classe A
Name: 760, dtype: object
date 2019-06-22 00:00:00
team Guinea
score 2.0
suf_score 2.0
rank 71.0
rank_suf 108.0
rank_change 3.0
total_points 1336.0
result 2
rank_dif -37.0
points_by_rank 0.009259
team_points 1
country_classification Classe B
Name: 761, dtype: object
date 2019-06-22 00:00:00
team Bolivia
score 1.0
suf_score 3.0
rank 62.0
rank_suf 33.0
rank_change -1.0
total_points 1365.0
result 1
rank_dif 29.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 762, dtype: object
date 2019-06-22 00:00:00
team Guyana
score 2.0
suf_score 4.0
rank 177.0
rank_suf 75.0
rank_change 2.0
total_points 954.0
result 1
rank_dif 102.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 763, dtype: object
date 2019-06-22 00:00:00
team United States
score 6.0
suf_score 0.0
rank 30.0
rank_suf 92.0
rank_change 6.0
total_points 1495.0
result 0
rank_dif -62.0
points_by_rank 0.032609
team_points 3
country_classification Classe A
Name: 764, dtype: object
date 2019-06-22 00:00:00
team Brazil
score 5.0
suf_score 0.0
rank 3.0
rank_suf 21.0
rank_change 0.0
total_points 1681.0
result 0
rank_dif -18.0
points_by_rank 0.142857
team_points 3
country_classification Classe S-
Name: 765, dtype: object
date 2019-06-23 00:00:00
team Senegal
score 2.0
suf_score 0.0
rank 22.0
rank_suf 131.0
rank_change -1.0
total_points 1515.0
result 0
rank_dif -109.0
points_by_rank 0.022901
team_points 3
country_classification Classe A
Name: 766, dtype: object
date 2019-06-23 00:00:00
team Algeria
score 2.0
suf_score 0.0
rank 68.0
rank_suf 105.0
rank_change -2.0
total_points 1346.0
result 0
rank_dif -37.0
points_by_rank 0.028571
team_points 3
country_classification Classe B
Name: 767, dtype: object
date 2019-06-23 00:00:00
team Morocco
score 1.0
suf_score 0.0
rank 47.0
rank_suf 113.0
rank_change 2.0
total_points 1429.0
result 0
rank_dif -66.0
points_by_rank 0.026549
team_points 3
country_classification Classe A
Name: 768, dtype: object
date 2019-06-23 00:00:00
team Colombia
score 1.0
suf_score 0.0
rank 13.0
rank_suf 36.0
rank_change 1.0
total_points 1580.0
result 0
rank_dif -23.0
points_by_rank 0.083333
team_points 3
country_classification Classe A
Name: 769, dtype: object
date 2019-06-23 00:00:00
team Qatar
score 0.0
suf_score 2.0
rank 55.0
rank_suf 11.0
rank_change 0.0
total_points 1396.0
result 1
rank_dif 44.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 770, dtype: object
date 2019-06-23 00:00:00
team Canada
score 7.0
suf_score 0.0
rank 78.0
rank_suf 175.0
rank_change 0.0
total_points 1314.0
result 0
rank_dif -97.0
points_by_rank 0.017143
team_points 3
country_classification Classe B
Name: 771, dtype: object
date 2019-06-24 00:00:00
team Tunisia
score 1.0
suf_score 1.0
rank 25.0
rank_suf 123.0
rank_change -3.0
total_points 1501.0
result 2
rank_dif -98.0
points_by_rank 0.00813
team_points 1
country_classification Classe A
Name: 772, dtype: object
date 2019-06-24 00:00:00
team Mali
score 4.0
suf_score 1.0
rank 62.0
rank_suf 103.0
rank_change -3.0
total_points 1365.0
result 0
rank_dif -41.0
points_by_rank 0.029126
team_points 3
country_classification Classe B
Name: 773, dtype: object
date 2019-06-24 00:00:00
team Chile
score 0.0
suf_score 1.0
rank 16.0
rank_suf 8.0
rank_change 1.0
total_points 1561.0
result 1
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 774, dtype: object
date 2019-06-24 00:00:00
team Ecuador
score 1.0
suf_score 1.0
rank 60.0
rank_suf 28.0
rank_change 1.0
total_points 1375.0
result 2
rank_dif 32.0
points_by_rank 0.035714
team_points 1
country_classification Classe B
Name: 775, dtype: object
date 2019-06-24 00:00:00
team Bermuda
score 2.0
suf_score 0.0
rank 174.0
rank_suf 129.0
rank_change -1.0
total_points 964.0
result 0
rank_dif 45.0
points_by_rank 0.023256
team_points 3
country_classification Classe D
Name: 776, dtype: object
date 2019-06-24 00:00:00
team Haiti
score 2.0
suf_score 1.0
rank 101.0
rank_suf 39.0
rank_change 1.0
total_points 1219.0
result 0
rank_dif 62.0
points_by_rank 0.076923
team_points 3
country_classification Classe B
Name: 777, dtype: object
date 2019-06-25 00:00:00
team Cameroon
score 2.0
suf_score 0.0
rank 51.0
rank_suf 118.0
rank_change -3.0
total_points 1404.0
result 0
rank_dif -67.0
points_by_rank 0.025424
team_points 3
country_classification Classe A
Name: 778, dtype: object
date 2019-06-25 00:00:00
team Ghana
score 2.0
suf_score 2.0
rank 50.0
rank_suf 88.0
rank_change 1.0
total_points 1423.0
result 2
rank_dif -38.0
points_by_rank 0.011364
team_points 1
country_classification Classe A
Name: 779, dtype: object
date 2019-06-25 00:00:00
team Jamaica
score 1.0
suf_score 1.0
rank 54.0
rank_suf 100.0
rank_change -2.0
total_points 1397.0
result 2
rank_dif -46.0
points_by_rank 0.01
team_points 1
country_classification Classe B
Name: 780, dtype: object
date 2019-06-25 00:00:00
team Honduras
score 4.0
suf_score 0.0
rank 61.0
rank_suf 69.0
rank_change 0.0
total_points 1368.0
result 0
rank_dif -8.0
points_by_rank 0.043478
team_points 3
country_classification Classe B
Name: 781, dtype: object
date 2019-06-26 00:00:00
team Uganda
score 1.0
suf_score 1.0
rank 80.0
rank_suf 109.0
rank_change 1.0
total_points 1299.0
result 2
rank_dif -29.0
points_by_rank 0.009174
team_points 1
country_classification Classe B
Name: 782, dtype: object
date 2019-06-26 00:00:00
team Nigeria
score 1.0
suf_score 0.0
rank 45.0
rank_suf 71.0
rank_change 3.0
total_points 1433.0
result 0
rank_dif -26.0
points_by_rank 0.042254
team_points 3
country_classification Classe A
Name: 783, dtype: object
date 2019-06-26 00:00:00
team Trinidad and Tobago
score 1.0
suf_score 1.0
rank 92.0
rank_suf 177.0
rank_change -1.0
total_points 1260.0
result 2
rank_dif -85.0
points_by_rank 0.00565
team_points 1
country_classification Classe B
Name: 784, dtype: object
date 2019-06-26 00:00:00
team United States
score 1.0
suf_score 0.0
rank 30.0
rank_suf 75.0
rank_change 6.0
total_points 1495.0
result 0
rank_dif -45.0
points_by_rank 0.04
team_points 3
country_classification Classe A
Name: 785, dtype: object
date 2019-06-27 00:00:00
team Madagascar
score 1.0
suf_score 0.0
rank 108.0
rank_suf 134.0
rank_change 1.0
total_points 1198.0
result 0
rank_dif -26.0
points_by_rank 0.022388
team_points 3
country_classification Classe C
Name: 786, dtype: object
date 2019-06-27 00:00:00
team Senegal
score 0.0
suf_score 1.0
rank 22.0
rank_suf 68.0
rank_change -1.0
total_points 1515.0
result 1
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 787, dtype: object
date 2019-06-27 00:00:00
team Kenya
score 3.0
suf_score 2.0
rank 105.0
rank_suf 131.0
rank_change -3.0
total_points 1207.0
result 0
rank_dif -26.0
points_by_rank 0.022901
team_points 3
country_classification Classe B
Name: 788, dtype: object
date 2019-06-27 00:00:00
team Brazil
score 0.0
suf_score 0.0
rank 3.0
rank_suf 36.0
rank_change 0.0
total_points 1681.0
result 2
rank_dif -33.0
points_by_rank 0.027778
team_points 1
country_classification Classe S-
Name: 789, dtype: object
date 2019-06-28 00:00:00
team South Africa
score 1.0
suf_score 0.0
rank 72.0
rank_suf 113.0
rank_change -1.0
total_points 1335.0
result 0
rank_dif -41.0
points_by_rank 0.026549
team_points 3
country_classification Classe B
Name: 790, dtype: object
date 2019-06-28 00:00:00
team Tunisia
score 1.0
suf_score 1.0
rank 25.0
rank_suf 62.0
rank_change -3.0
total_points 1501.0
result 2
rank_dif -37.0
points_by_rank 0.016129
team_points 1
country_classification Classe A
Name: 791, dtype: object
date 2019-06-28 00:00:00
team Colombia
score 0.0
suf_score 0.0
rank 13.0
rank_suf 16.0
rank_change 1.0
total_points 1580.0
result 2
rank_dif -3.0
points_by_rank 0.0625
team_points 1
country_classification Classe A
Name: 792, dtype: object
date 2019-06-28 00:00:00
team Venezuela
score 0.0
suf_score 2.0
rank 33.0
rank_suf 11.0
rank_change 4.0
total_points 1485.0
result 1
rank_dif 22.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 793, dtype: object
date 2019-06-29 00:00:00
team Mauritania
score 0.0
suf_score 0.0
rank 103.0
rank_suf 123.0
rank_change 0.0
total_points 1210.0
result 2
rank_dif -20.0
points_by_rank 0.00813
team_points 1
country_classification Classe B
Name: 794, dtype: object
date 2019-06-29 00:00:00
team Cameroon
score 0.0
suf_score 0.0
rank 51.0
rank_suf 50.0
rank_change -3.0
total_points 1404.0
result 2
rank_dif 1.0
points_by_rank 0.02
team_points 1
country_classification Classe A
Name: 795, dtype: object
date 2019-06-29 00:00:00
team Benin
score 0.0
suf_score 0.0
rank 88.0
rank_suf 118.0
rank_change -3.0
total_points 1273.0
result 2
rank_dif -30.0
points_by_rank 0.008475
team_points 1
country_classification Classe B
Name: 796, dtype: object
date 2019-06-29 00:00:00
team Uruguay
score 0.0
suf_score 0.0
rank 8.0
rank_suf 21.0
rank_change 2.0
total_points 1615.0
result 2
rank_dif -13.0
points_by_rank 0.047619
team_points 1
country_classification Classe S-
Name: 797, dtype: object
date 2019-06-29 00:00:00
team Haiti
score 3.0
suf_score 2.0
rank 101.0
rank_suf 78.0
rank_change 1.0
total_points 1219.0
result 0
rank_dif 23.0
points_by_rank 0.038462
team_points 3
country_classification Classe B
Name: 798, dtype: object
date 2019-06-29 00:00:00
team Mexico
score 1.0
suf_score 1.0
rank 18.0
rank_suf 39.0
rank_change 0.0
total_points 1557.0
result 2
rank_dif -21.0
points_by_rank 0.025641
team_points 1
country_classification Classe A
Name: 799, dtype: object
date 2019-06-30 00:00:00
team Egypt
score 2.0
suf_score 0.0
rank 58.0
rank_suf 80.0
rank_change 1.0
total_points 1384.0
result 0
rank_dif -22.0
points_by_rank 0.0375
team_points 3
country_classification Classe B
Name: 800, dtype: object
date 2019-06-30 00:00:00
team Burundi
score 0.0
suf_score 2.0
rank 134.0
rank_suf 71.0
rank_change -2.0
total_points 1092.0
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 801, dtype: object
date 2019-06-30 00:00:00
team Madagascar
score 2.0
suf_score 0.0
rank 108.0
rank_suf 45.0
rank_change 1.0
total_points 1198.0
result 0
rank_dif 63.0
points_by_rank 0.066667
team_points 3
country_classification Classe C
Name: 802, dtype: object
date 2019-06-30 00:00:00
team Jamaica
score 1.0
suf_score 0.0
rank 54.0
rank_suf 75.0
rank_change -2.0
total_points 1397.0
result 0
rank_dif -21.0
points_by_rank 0.04
team_points 3
country_classification Classe B
Name: 803, dtype: object
date 2019-06-30 00:00:00
team United States
score 1.0
suf_score 0.0
rank 30.0
rank_suf 100.0
rank_change 6.0
total_points 1495.0
result 0
rank_dif -70.0
points_by_rank 0.03
team_points 3
country_classification Classe A
Name: 804, dtype: object
date 2019-07-01 00:00:00
team Kenya
score 0.0
suf_score 3.0
rank 105.0
rank_suf 22.0
rank_change -3.0
total_points 1207.0
result 1
rank_dif 83.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 805, dtype: object
date 2019-07-01 00:00:00
team Tanzania
score 0.0
suf_score 3.0
rank 131.0
rank_suf 68.0
rank_change 0.0
total_points 1105.0
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 806, dtype: object
date 2019-07-01 00:00:00
team South Africa
score 0.0
suf_score 1.0
rank 72.0
rank_suf 47.0
rank_change -1.0
total_points 1335.0
result 1
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 807, dtype: object
date 2019-07-02 00:00:00
team Angola
score 0.0
suf_score 1.0
rank 123.0
rank_suf 62.0
rank_change 1.0
total_points 1142.0
result 1
rank_dif 61.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 808, dtype: object
date 2019-07-02 00:00:00
team Mauritania
score 0.0
suf_score 0.0
rank 103.0
rank_suf 25.0
rank_change 0.0
total_points 1210.0
result 2
rank_dif 78.0
points_by_rank 0.04
team_points 1
country_classification Classe B
Name: 809, dtype: object
date 2019-07-02 00:00:00
team Benin
score 0.0
suf_score 0.0
rank 88.0
rank_suf 51.0
rank_change -3.0
total_points 1273.0
result 2
rank_dif 37.0
points_by_rank 0.019608
team_points 1
country_classification Classe B
Name: 810, dtype: object
date 2019-07-02 00:00:00
team Guinea-Bissau
score 0.0
suf_score 2.0
rank 118.0
rank_suf 50.0
rank_change 0.0
total_points 1158.0
result 1
rank_dif 68.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 811, dtype: object
date 2019-07-02 00:00:00
team Brazil
score 2.0
suf_score 0.0
rank 3.0
rank_suf 11.0
rank_change 0.0
total_points 1681.0
result 0
rank_dif -8.0
points_by_rank 0.272727
team_points 3
country_classification Classe S-
Name: 812, dtype: object
date 2019-07-02 00:00:00
team Haiti
score 0.0
suf_score 1.0
rank 101.0
rank_suf 18.0
rank_change 1.0
total_points 1219.0
result 1
rank_dif 83.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 813, dtype: object
date 2019-07-03 00:00:00
team Chile
score 0.0
suf_score 3.0
rank 16.0
rank_suf 21.0
rank_change 1.0
total_points 1561.0
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 814, dtype: object
date 2019-07-03 00:00:00
team United States
score 3.0
suf_score 1.0
rank 30.0
rank_suf 54.0
rank_change 6.0
total_points 1495.0
result 0
rank_dif -24.0
points_by_rank 0.055556
team_points 3
country_classification Classe A
Name: 815, dtype: object
date 2019-07-05 00:00:00
team Morocco
score 1.0
suf_score 1.0
rank 47.0
rank_suf 88.0
rank_change 2.0
total_points 1429.0
result 2
rank_dif -41.0
points_by_rank 0.011364
team_points 1
country_classification Classe A
Name: 816, dtype: object
date 2019-07-05 00:00:00
team Uganda
score 0.0
suf_score 1.0
rank 80.0
rank_suf 22.0
rank_change 1.0
total_points 1299.0
result 1
rank_dif 58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 817, dtype: object
date 2019-07-06 00:00:00
team Egypt
score 0.0
suf_score 1.0
rank 58.0
rank_suf 72.0
rank_change 1.0
total_points 1384.0
result 1
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 818, dtype: object
date 2019-07-06 00:00:00
team Nigeria
score 3.0
suf_score 2.0
rank 45.0
rank_suf 51.0
rank_change 3.0
total_points 1433.0
result 0
rank_dif -6.0
points_by_rank 0.058824
team_points 3
country_classification Classe A
Name: 819, dtype: object
date 2019-07-06 00:00:00
team Argentina
score 2.0
suf_score 1.0
rank 11.0
rank_suf 16.0
rank_change 0.0
total_points 1582.0
result 0
rank_dif -5.0
points_by_rank 0.1875
team_points 3
country_classification Classe A
Name: 820, dtype: object
date 2019-07-07 00:00:00
team Algeria
score 3.0
suf_score 0.0
rank 68.0
rank_suf 71.0
rank_change -2.0
total_points 1346.0
result 0
rank_dif -3.0
points_by_rank 0.042254
team_points 3
country_classification Classe B
Name: 821, dtype: object
date 2019-07-07 00:00:00
team Brazil
score 3.0
suf_score 1.0
rank 3.0
rank_suf 21.0
rank_change 0.0
total_points 1681.0
result 0
rank_dif -18.0
points_by_rank 0.142857
team_points 3
country_classification Classe S-
Name: 822, dtype: object
date 2019-07-07 00:00:00
team United States
score 0.0
suf_score 1.0
rank 30.0
rank_suf 18.0
rank_change 6.0
total_points 1495.0
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 823, dtype: object
date 2019-07-07 00:00:00
team India
score 2.0
suf_score 4.0
rank 101.0
rank_suf 120.0
rank_change 0.0
total_points 1219.0
result 1
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 824, dtype: object
date 2019-07-08 00:00:00
team Ghana
score 1.0
suf_score 1.0
rank 50.0
rank_suf 25.0
rank_change 1.0
total_points 1423.0
result 2
rank_dif 25.0
points_by_rank 0.04
team_points 1
country_classification Classe A
Name: 825, dtype: object
date 2019-07-08 00:00:00
team Samoa
score 0.0
suf_score 6.0
rank 195.0
rank_suf 171.0
rank_change -2.0
total_points 896.0
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 826, dtype: object
date 2019-07-08 00:00:00
team American Samoa
score 0.0
suf_score 5.0
rank 190.0
rank_suf 155.0
rank_change 0.0
total_points 908.0
result 1
rank_dif 35.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 827, dtype: object
date 2019-07-08 00:00:00
team Tahiti
score 1.0
suf_score 2.0
rank 158.0
rank_suf 167.0
rank_change 0.0
total_points 1015.0
result 1
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 828, dtype: object
date 2019-07-10 00:00:00
team Nigeria
score 2.0
suf_score 1.0
rank 45.0
rank_suf 72.0
rank_change 3.0
total_points 1433.0
result 0
rank_dif -27.0
points_by_rank 0.041667
team_points 3
country_classification Classe A
Name: 829, dtype: object
date 2019-07-10 00:00:00
team Senegal
score 1.0
suf_score 0.0
rank 22.0
rank_suf 88.0
rank_change -1.0
total_points 1515.0
result 0
rank_dif -66.0
points_by_rank 0.034091
team_points 3
country_classification Classe A
Name: 830, dtype: object
date 2019-07-10 00:00:00
team Papua New Guinea
score 2.0
suf_score 0.0
rank 171.0
rank_suf 163.0
rank_change 2.0
total_points 984.0
result 0
rank_dif 8.0
points_by_rank 0.018405
team_points 3
country_classification Classe D
Name: 831, dtype: object
date 2019-07-10 00:00:00
team American Samoa
score 0.0
suf_score 9.0
rank 190.0
rank_suf 167.0
rank_change 0.0
total_points 908.0
result 1
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 832, dtype: object
date 2019-07-10 00:00:00
team Solomon Islands
score 0.0
suf_score 2.0
rank 140.0
rank_suf 155.0
rank_change 1.0
total_points 1077.0
result 1
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 833, dtype: object
date 2019-07-10 00:00:00
team Tajikistan
score 2.0
suf_score 0.0
rank 120.0
rank_suf 85.0
rank_change 0.0
total_points 1151.0
result 0
rank_dif 35.0
points_by_rank 0.035294
team_points 3
country_classification Classe C
Name: 834, dtype: object
date 2019-07-11 00:00:00
team Madagascar
score 0.0
suf_score 3.0
rank 108.0
rank_suf 25.0
rank_change 1.0
total_points 1198.0
result 1
rank_dif 83.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 835, dtype: object
date 2019-07-12 00:00:00
team Samoa
score 2.0
suf_score 0.0
rank 195.0
rank_suf 202.0
rank_change -2.0
total_points 896.0
result 0
rank_dif -7.0
points_by_rank 0.014851
team_points 3
country_classification Classe D
Name: 836, dtype: object
date 2019-07-12 00:00:00
team Solomon Islands
score 0.0
suf_score 3.0
rank 140.0
rank_suf 158.0
rank_change 1.0
total_points 1077.0
result 1
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 837, dtype: object
date 2019-07-12 00:00:00
team New Caledonia
score 1.0
suf_score 0.0
rank 155.0
rank_suf 167.0
rank_change 0.0
total_points 1026.0
result 0
rank_dif -12.0
points_by_rank 0.017964
team_points 3
country_classification Classe C
Name: 838, dtype: object
date 2019-07-14 00:00:00
team Algeria
score 2.0
suf_score 1.0
rank 68.0
rank_suf 45.0
rank_change -2.0
total_points 1346.0
result 0
rank_dif 23.0
points_by_rank 0.066667
team_points 3
country_classification Classe B
Name: 839, dtype: object
date 2019-07-14 00:00:00
team Senegal
score 1.0
suf_score 0.0
rank 22.0
rank_suf 25.0
rank_change -1.0
total_points 1515.0
result 0
rank_dif -3.0
points_by_rank 0.12
team_points 3
country_classification Classe A
Name: 840, dtype: object
date 2019-07-15 00:00:00
team Tonga
score 0.0
suf_score 14.0
rank 202.0
rank_suf 163.0
rank_change -1.0
total_points 868.0
result 1
rank_dif 39.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 841, dtype: object
date 2019-07-15 00:00:00
team Solomon Islands
score 13.0
suf_score 0.0
rank 140.0
rank_suf 190.0
rank_change 1.0
total_points 1077.0
result 0
rank_dif -50.0
points_by_rank 0.015789
team_points 3
country_classification Classe C
Name: 842, dtype: object
date 2019-07-15 00:00:00
team Tahiti
score 0.0
suf_score 3.0
rank 158.0
rank_suf 155.0
rank_change 0.0
total_points 1015.0
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 843, dtype: object
date 2019-07-16 00:00:00
team India
score 1.0
suf_score 1.0
rank 101.0
rank_suf 85.0
rank_change 0.0
total_points 1219.0
result 2
rank_dif 16.0
points_by_rank 0.011765
team_points 1
country_classification Classe B
Name: 844, dtype: object
date 2019-07-17 00:00:00
team Tunisia
score 0.0
suf_score 1.0
rank 25.0
rank_suf 45.0
rank_change -3.0
total_points 1501.0
result 1
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 845, dtype: object
date 2019-07-18 00:00:00
team Papua New Guinea
score 8.0
suf_score 0.0
rank 171.0
rank_suf 202.0
rank_change 2.0
total_points 984.0
result 0
rank_dif -31.0
points_by_rank 0.014851
team_points 3
country_classification Classe D
Name: 846, dtype: object
date 2019-07-18 00:00:00
team Samoa
score 0.0
suf_score 11.0
rank 195.0
rank_suf 163.0
rank_change -2.0
total_points 896.0
result 1
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 847, dtype: object
date 2019-07-18 00:00:00
team American Samoa
score 8.0
suf_score 1.0
rank 190.0
rank_suf 158.0
rank_change 0.0
total_points 908.0
result 0
rank_dif 32.0
points_by_rank 0.018987
team_points 3
country_classification Classe D
Name: 848, dtype: object
date 2019-07-18 00:00:00
team Fiji
score 4.0
suf_score 4.0
rank 167.0
rank_suf 140.0
rank_change 2.0
total_points 992.0
result 2
rank_dif 27.0
points_by_rank 0.007143
team_points 1
country_classification Classe D
Name: 849, dtype: object
date 2019-07-19 00:00:00
team Senegal
score 0.0
suf_score 1.0
rank 22.0
rank_suf 68.0
rank_change -1.0
total_points 1515.0
result 1
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 850, dtype: object
date 2019-07-20 00:00:00
team Papua New Guinea
score 1.0
suf_score 1.0
rank 171.0
rank_suf 167.0
rank_change 2.0
total_points 984.0
result 2
rank_dif 4.0
points_by_rank 0.005988
team_points 1
country_classification Classe D
Name: 851, dtype: object
date 2019-07-21 00:00:00
team Equatorial Guinea
score 1.0
suf_score 1.0
rank 141.0
rank_suf 153.0
rank_change -2.0
total_points 1074.0
result 2
rank_dif -12.0
points_by_rank 0.006536
team_points 1
country_classification Classe C
Name: 852, dtype: object
date 2019-07-26 00:00:00
team Djibouti
score 0.0
suf_score 1.0
rank 195.0
rank_suf 150.0
rank_change 0.0
total_points 896.0
result 1
rank_dif 45.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 853, dtype: object
date 2019-07-26 00:00:00
team Botswana
score 0.0
suf_score 0.0
rank 147.0
rank_suf 81.0
rank_change 0.0
total_points 1069.0
result 2
rank_dif 66.0
points_by_rank 0.012346
team_points 1
country_classification Classe C
Name: 854, dtype: object
date 2019-07-26 00:00:00
team Comoros
score 0.0
suf_score 2.0
rank 146.0
rank_suf 121.0
rank_change -2.0
total_points 1071.0
result 1
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 855, dtype: object
date 2019-07-27 00:00:00
team Burundi
score 2.0
suf_score 0.0
rank 148.0
rank_suf 169.0
rank_change 14.0
total_points 1061.0
result 0
rank_dif -21.0
points_by_rank 0.017751
team_points 3
country_classification Classe C
Name: 856, dtype: object
date 2019-07-27 00:00:00
team Somalia
score 1.0
suf_score 3.0
rank 202.0
rank_suf 80.0
rank_change 0.0
total_points 868.0
result 1
rank_dif 122.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 857, dtype: object
date 2019-07-27 00:00:00
team Guinea-Bissau
score 0.0
suf_score 4.0
rank 123.0
rank_suf 59.0
rank_change 5.0
total_points 1143.0
result 1
rank_dif 64.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 858, dtype: object
date 2019-07-28 00:00:00
team Chad
score 3.0
suf_score 3.0
rank 175.0
rank_suf 139.0
rank_change -1.0
total_points 956.0
result 2
rank_dif 36.0
points_by_rank 0.007194
team_points 1
country_classification Classe D
Name: 859, dtype: object
date 2019-07-28 00:00:00
team Tanzania
score 0.0
suf_score 0.0
rank 137.0
rank_suf 107.0
rank_change 6.0
total_points 1075.0
result 2
rank_dif 30.0
points_by_rank 0.009346
team_points 1
country_classification Classe C
Name: 860, dtype: object
date 2019-07-28 00:00:00
team Lesotho
score 3.0
suf_score 2.0
rank 144.0
rank_suf 70.0
rank_change -1.0
total_points 1072.0
result 0
rank_dif 74.0
points_by_rank 0.042857
team_points 3
country_classification Classe C
Name: 861, dtype: object
date 2019-07-28 00:00:00
team Madagascar
score 1.0
suf_score 0.0
rank 96.0
rank_suf 116.0
rank_change -12.0
total_points 1251.0
result 0
rank_dif -20.0
points_by_rank 0.025862
team_points 3
country_classification Classe B
Name: 862, dtype: object
date 2019-07-28 00:00:00
team Eswatini
score 1.0
suf_score 1.0
rank 139.0
rank_suf 122.0
rank_change -2.0
total_points 1074.0
result 2
rank_dif 17.0
points_by_rank 0.008197
team_points 1
country_classification Classe C
Name: 863, dtype: object
date 2019-07-28 00:00:00
team Liberia
score 1.0
suf_score 0.0
rank 152.0
rank_suf 20.0
rank_change -1.0
total_points 1044.0
result 0
rank_dif 132.0
points_by_rank 0.15
team_points 3
country_classification Classe C
Name: 864, dtype: object
date 2019-07-28 00:00:00
team Benin
score 0.0
suf_score 0.0
rank 82.0
rank_suf 128.0
rank_change -6.0
total_points 1295.0
result 2
rank_dif -46.0
points_by_rank 0.007812
team_points 1
country_classification Classe B
Name: 865, dtype: object
date 2019-07-29 00:00:00
team Mauritius
score 0.0
suf_score 4.0
rank 157.0
rank_suf 112.0
rank_change 0.0
total_points 1019.0
result 1
rank_dif 45.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 866, dtype: object
date 2019-08-03 00:00:00
team Uganda
score 4.0
suf_score 1.0
rank 80.0
rank_suf 202.0
rank_change 0.0
total_points 1305.0
result 0
rank_dif -122.0
points_by_rank 0.014851
team_points 3
country_classification Classe B
Name: 867, dtype: object
date 2019-08-03 00:00:00
team Angola
score 1.0
suf_score 1.0
rank 122.0
rank_suf 139.0
rank_change -1.0
total_points 1144.0
result 2
rank_dif -17.0
points_by_rank 0.007194
team_points 1
country_classification Classe C
Name: 868, dtype: object
date 2019-08-03 00:00:00
team Zambia
score 3.0
suf_score 2.0
rank 81.0
rank_suf 147.0
rank_change 0.0
total_points 1299.0
result 0
rank_dif -66.0
points_by_rank 0.020408
team_points 3
country_classification Classe B
Name: 869, dtype: object
date 2019-08-03 00:00:00
team Senegal
score 3.0
suf_score 0.0
rank 20.0
rank_suf 152.0
rank_change -2.0
total_points 1550.0
result 0
rank_dif -132.0
points_by_rank 0.019737
team_points 3
country_classification Classe A
Name: 870, dtype: object
date 2019-08-04 00:00:00
team Equatorial Guinea
score 2.0
suf_score 1.0
rank 139.0
rank_suf 175.0
rank_change -2.0
total_points 1074.0
result 0
rank_dif -36.0
points_by_rank 0.017143
team_points 3
country_classification Classe C
Name: 871, dtype: object
date 2019-08-04 00:00:00
team Ethiopia
score 4.0
suf_score 3.0
rank 150.0
rank_suf 195.0
rank_change 0.0
total_points 1049.0
result 0
rank_dif -45.0
points_by_rank 0.015385
team_points 3
country_classification Classe C
Name: 872, dtype: object
date 2019-08-04 00:00:00
team Kenya
score 0.0
suf_score 0.0
rank 107.0
rank_suf 137.0
rank_change 2.0
total_points 1201.0
result 2
rank_dif -30.0
points_by_rank 0.007299
team_points 1
country_classification Classe B
Name: 873, dtype: object
date 2019-08-04 00:00:00
team South Sudan
score 1.0
suf_score 2.0
rank 169.0
rank_suf 148.0
rank_change 1.0
total_points 989.0
result 1
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 874, dtype: object
date 2019-08-04 00:00:00
team Mozambique
score 3.0
suf_score 2.0
rank 116.0
rank_suf 96.0
rank_change -1.0
total_points 1163.0
result 0
rank_dif 20.0
points_by_rank 0.03125
team_points 3
country_classification Classe C
Name: 875, dtype: object
date 2019-08-04 00:00:00
team Namibia
score 0.0
suf_score 0.0
rank 121.0
rank_suf 146.0
rank_change 8.0
total_points 1148.0
result 2
rank_dif -25.0
points_by_rank 0.006849
team_points 1
country_classification Classe C
Name: 876, dtype: object
date 2019-08-04 00:00:00
team South Africa
score 0.0
suf_score 3.0
rank 70.0
rank_suf 144.0
rank_change -2.0
total_points 1338.0
result 1
rank_dif -74.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 877, dtype: object
date 2019-08-04 00:00:00
team Zimbabwe
score 3.0
suf_score 1.0
rank 112.0
rank_suf 157.0
rank_change 3.0
total_points 1174.0
result 0
rank_dif -45.0
points_by_rank 0.019108
team_points 3
country_classification Classe C
Name: 878, dtype: object
date 2019-08-04 00:00:00
team Mali
score 3.0
suf_score 0.0
rank 59.0
rank_suf 123.0
rank_change -3.0
total_points 1389.0
result 0
rank_dif -64.0
points_by_rank 0.02439
team_points 3
country_classification Classe B
Name: 879, dtype: object
date 2019-08-04 00:00:00
team Togo
score 1.0
suf_score 0.0
rank 128.0
rank_suf 82.0
rank_change 0.0
total_points 1127.0
result 0
rank_dif 46.0
points_by_rank 0.036585
team_points 3
country_classification Classe C
Name: 880, dtype: object
date 2019-08-14 00:00:00
team Dominican Republic
score 0.0
suf_score 0.0
rank 155.0
rank_suf 144.0
rank_change 1.0
total_points 1028.0
result 2
rank_dif 11.0
points_by_rank 0.006944
team_points 1
country_classification Classe C
Name: 881, dtype: object
date 2019-08-29 00:00:00
team United Arab Emirates
score 4.0
suf_score 0.0
rank 65.0
rank_suf 155.0
rank_change -2.0
total_points 1360.0
result 0
rank_dif -90.0
points_by_rank 0.019355
team_points 3
country_classification Classe B
Name: 882, dtype: object
date 2019-08-30 00:00:00
team China PR
score 4.0
suf_score 1.0
rank 71.0
rank_suf 135.0
rank_change -2.0
total_points 1333.0
result 0
rank_dif -64.0
points_by_rank 0.022222
team_points 3
country_classification Classe B
Name: 883, dtype: object
date 2019-08-30 00:00:00
team Malaysia
score 0.0
suf_score 1.0
rank 159.0
rank_suf 99.0
rank_change 0.0
total_points 1009.0
result 1
rank_dif 60.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 884, dtype: object
date 2019-08-31 00:00:00
team United Arab Emirates
score 5.0
suf_score 1.0
rank 65.0
rank_suf 200.0
rank_change -2.0
total_points 1360.0
result 0
rank_dif -135.0
points_by_rank 0.015
team_points 3
country_classification Classe B
Name: 885, dtype: object
date 2019-09-04 00:00:00
team Libya
score 0.0
suf_score 1.0
rank 105.0
rank_suf 61.0
rank_change 0.0
total_points 1207.0
result 1
rank_dif 44.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 886, dtype: object
date 2019-09-04 00:00:00
team Burundi
score 1.0
suf_score 1.0
rank 148.0
rank_suf 137.0
rank_change 14.0
total_points 1061.0
result 2
rank_dif 11.0
points_by_rank 0.007299
team_points 1
country_classification Classe C
Name: 887, dtype: object
date 2019-09-04 00:00:00
team Djibouti
score 2.0
suf_score 1.0
rank 195.0
rank_suf 139.0
rank_change 0.0
total_points 896.0
result 0
rank_dif 56.0
points_by_rank 0.021583
team_points 3
country_classification Classe D
Name: 888, dtype: object
date 2019-09-04 00:00:00
team Eritrea
score 1.0
suf_score 2.0
rank 202.0
rank_suf 121.0
rank_change 0.0
total_points 868.0
result 1
rank_dif 81.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 889, dtype: object
date 2019-09-04 00:00:00
team Ethiopia
score 0.0
suf_score 0.0
rank 150.0
rank_suf 144.0
rank_change 0.0
total_points 1049.0
result 2
rank_dif 6.0
points_by_rank 0.006944
team_points 1
country_classification Classe C
Name: 890, dtype: object
date 2019-09-04 00:00:00
team Liberia
score 3.0
suf_score 1.0
rank 152.0
rank_suf 114.0
rank_change -1.0
total_points 1044.0
result 0
rank_dif 38.0
points_by_rank 0.026316
team_points 3
country_classification Classe C
Name: 891, dtype: object
date 2019-09-04 00:00:00
team Mauritius
score 0.0
suf_score 1.0
rank 157.0
rank_suf 116.0
rank_change 0.0
total_points 1019.0
result 1
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 892, dtype: object
date 2019-09-04 00:00:00
team South Sudan
score 1.0
suf_score 1.0
rank 169.0
rank_suf 139.0
rank_change 1.0
total_points 989.0
result 2
rank_dif 30.0
points_by_rank 0.007194
team_points 1
country_classification Classe D
Name: 893, dtype: object
date 2019-09-05 00:00:00
team Argentina
score 0.0
suf_score 0.0
rank 10.0
rank_suf 14.0
rank_change -1.0
total_points 1610.0
result 2
rank_dif -4.0
points_by_rank 0.071429
team_points 1
country_classification Classe S-
Name: 894, dtype: object
date 2019-09-05 00:00:00
team Honduras
score 4.0
suf_score 0.0
rank 67.0
rank_suf 180.0
rank_change 6.0
total_points 1350.0
result 0
rank_dif -113.0
points_by_rank 0.016667
team_points 3
country_classification Classe B
Name: 895, dtype: object
date 2019-09-05 00:00:00
team South Korea
score 2.0
suf_score 2.0
rank 37.0
rank_suf 94.0
rank_change 0.0
total_points 1467.0
result 2
rank_dif -57.0
points_by_rank 0.010638
team_points 1
country_classification Classe A
Name: 896, dtype: object
date 2019-09-05 00:00:00
team Montenegro
score 2.0
suf_score 1.0
rank 55.0
rank_suf 45.0
rank_change 2.0
total_points 1401.0
result 0
rank_dif 10.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 897, dtype: object
date 2019-09-05 00:00:00
team Northern Ireland
score 1.0
suf_score 0.0
rank 29.0
rank_suf 91.0
rank_change 1.0
total_points 1496.0
result 0
rank_dif -62.0
points_by_rank 0.032967
team_points 3
country_classification Classe A
Name: 898, dtype: object
date 2019-09-05 00:00:00
team Peru
score 0.0
suf_score 1.0
rank 19.0
rank_suf 66.0
rank_change -2.0
total_points 1552.0
result 1
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 899, dtype: object
date 2019-09-05 00:00:00
team Saudi Arabia
score 1.0
suf_score 1.0
rank 68.0
rank_suf 59.0
rank_change -1.0
total_points 1342.0
result 2
rank_dif 9.0
points_by_rank 0.016949
team_points 1
country_classification Classe B
Name: 900, dtype: object
date 2019-09-05 00:00:00
team Republic of Ireland
score 1.0
suf_score 1.0
rank 32.0
rank_suf 11.0
rank_change 0.0
total_points 1489.0
result 2
rank_dif 21.0
points_by_rank 0.090909
team_points 1
country_classification Classe A
Name: 901, dtype: object
date 2019-09-05 00:00:00
team Gibraltar
score 0.0
suf_score 6.0
rank 198.0
rank_suf 13.0
rank_change 0.0
total_points 893.0
result 1
rank_dif 185.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 902, dtype: object
date 2019-09-05 00:00:00
team Faroe Islands
score 0.0
suf_score 4.0
rank 108.0
rank_suf 18.0
rank_change 1.0
total_points 1200.0
result 1
rank_dif 90.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 903, dtype: object
date 2019-09-05 00:00:00
team Norway
score 2.0
suf_score 0.0
rank 50.0
rank_suf 181.0
rank_change 3.0
total_points 1429.0
result 0
rank_dif -131.0
points_by_rank 0.016575
team_points 3
country_classification Classe A
Name: 904, dtype: object
date 2019-09-05 00:00:00
team Romania
score 1.0
suf_score 2.0
rank 28.0
rank_suf 9.0
rank_change 1.0
total_points 1497.0
result 1
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 905, dtype: object
date 2019-09-05 00:00:00
team Israel
score 1.0
suf_score 1.0
rank 84.0
rank_suf 71.0
rank_change 2.0
total_points 1286.0
result 2
rank_dif 13.0
points_by_rank 0.014085
team_points 1
country_classification Classe B
Name: 906, dtype: object
date 2019-09-05 00:00:00
team Armenia
score 1.0
suf_score 3.0
rank 98.0
rank_suf 16.0
rank_change 1.0
total_points 1230.0
result 1
rank_dif 82.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 907, dtype: object
date 2019-09-05 00:00:00
team Bosnia and Herzegovina
score 5.0
suf_score 0.0
rank 42.0
rank_suf 182.0
rank_change 3.0
total_points 1453.0
result 0
rank_dif -140.0
points_by_rank 0.016484
team_points 3
country_classification Classe A
Name: 908, dtype: object
date 2019-09-05 00:00:00
team Finland
score 1.0
suf_score 0.0
rank 57.0
rank_suf 54.0
rank_change 1.0
total_points 1394.0
result 0
rank_dif 3.0
points_by_rank 0.055556
team_points 3
country_classification Classe B
Name: 909, dtype: object
date 2019-09-05 00:00:00
team Japan
score 2.0
suf_score 0.0
rank 33.0
rank_suf 39.0
rank_change 5.0
total_points 1481.0
result 0
rank_dif -6.0
points_by_rank 0.076923
team_points 3
country_classification Classe A
Name: 910, dtype: object
date 2019-09-05 00:00:00
team Bermuda
score 1.0
suf_score 4.0
rank 174.0
rank_suf 74.0
rank_change 0.0
total_points 972.0
result 1
rank_dif 100.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 911, dtype: object
date 2019-09-05 00:00:00
team Dominica
score 1.0
suf_score 2.0
rank 176.0
rank_suf 151.0
rank_change -1.0
total_points 954.0
result 1
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 912, dtype: object
date 2019-09-05 00:00:00
team Guatemala
score 10.0
suf_score 0.0
rank 144.0
rank_suf 209.0
rank_change -1.0
total_points 1072.0
result 0
rank_dif -65.0
points_by_rank 0.014354
team_points 3
country_classification Classe C
Name: 913, dtype: object
date 2019-09-05 00:00:00
team Guam
score 0.0
suf_score 1.0
rank 190.0
rank_suf 152.0
rank_change 0.0
total_points 908.0
result 1
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 914, dtype: object
date 2019-09-05 00:00:00
team Philippines
score 2.0
suf_score 5.0
rank 126.0
rank_suf 87.0
rank_change 0.0
total_points 1131.0
result 1
rank_dif 39.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 915, dtype: object
date 2019-09-05 00:00:00
team Kuwait
score 7.0
suf_score 0.0
rank 156.0
rank_suf 166.0
rank_change 0.0
total_points 1022.0
result 0
rank_dif -10.0
points_by_rank 0.018072
team_points 3
country_classification Classe C
Name: 916, dtype: object
date 2019-09-05 00:00:00
team Cambodia
score 1.0
suf_score 1.0
rank 170.0
rank_suf 139.0
rank_change 1.0
total_points 988.0
result 2
rank_dif 31.0
points_by_rank 0.007194
team_points 1
country_classification Classe D
Name: 917, dtype: object
date 2019-09-05 00:00:00
team Bahrain
score 1.0
suf_score 1.0
rank 109.0
rank_suf 77.0
rank_change -1.0
total_points 1188.0
result 2
rank_dif 32.0
points_by_rank 0.012987
team_points 1
country_classification Classe C
Name: 918, dtype: object
date 2019-09-05 00:00:00
team Palestine
score 2.0
suf_score 0.0
rank 102.0
rank_suf 84.0
rank_change 2.0
total_points 1224.0
result 0
rank_dif 18.0
points_by_rank 0.035714
team_points 3
country_classification Classe B
Name: 919, dtype: object
date 2019-09-05 00:00:00
team Singapore
score 2.0
suf_score 2.0
rank 162.0
rank_suf 142.0
rank_change 0.0
total_points 999.0
result 2
rank_dif 20.0
points_by_rank 0.007042
team_points 1
country_classification Classe D
Name: 920, dtype: object
date 2019-09-05 00:00:00
team India
score 1.0
suf_score 2.0
rank 103.0
rank_suf 87.0
rank_change 2.0
total_points 1214.0
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 921, dtype: object
date 2019-09-05 00:00:00
team Qatar
score 6.0
suf_score 0.0
rank 62.0
rank_suf 149.0
rank_change 7.0
total_points 1375.0
result 0
rank_dif -87.0
points_by_rank 0.020134
team_points 3
country_classification Classe B
Name: 922, dtype: object
date 2019-09-05 00:00:00
team Mongolia
score 1.0
suf_score 0.0
rank 187.0
rank_suf 135.0
rank_change 0.0
total_points 914.0
result 0
rank_dif 52.0
points_by_rank 0.022222
team_points 3
country_classification Classe D
Name: 923, dtype: object
date 2019-09-05 00:00:00
team Thailand
score 0.0
suf_score 0.0
rank 115.0
rank_suf 97.0
rank_change -1.0
total_points 1165.0
result 2
rank_dif 18.0
points_by_rank 0.010309
team_points 1
country_classification Classe C
Name: 924, dtype: object
date 2019-09-05 00:00:00
team Indonesia
score 2.0
suf_score 3.0
rank 160.0
rank_suf 159.0
rank_change 0.0
total_points 1008.0
result 1
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 925, dtype: object
date 2019-09-05 00:00:00
team Sri Lanka
score 0.0
suf_score 2.0
rank 200.0
rank_suf 132.0
rank_change -1.0
total_points 886.0
result 1
rank_dif 68.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 926, dtype: object
date 2019-09-05 00:00:00
team Chad
score 1.0
suf_score 3.0
rank 175.0
rank_suf 129.0
rank_change -1.0
total_points 956.0
result 1
rank_dif 46.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 927, dtype: object
date 2019-09-05 00:00:00
team Seychelles
score 0.0
suf_score 3.0
rank 192.0
rank_suf 133.0
rank_change -2.0
total_points 904.0
result 1
rank_dif 59.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 928, dtype: object
date 2019-09-05 00:00:00
team Somalia
score 1.0
suf_score 0.0
rank 202.0
rank_suf 112.0
rank_change 0.0
total_points 868.0
result 0
rank_dif 90.0
points_by_rank 0.026786
team_points 3
country_classification Classe D
Name: 929, dtype: object
date 2019-09-06 00:00:00
team Brazil
score 2.0
suf_score 2.0
rank 2.0
rank_suf 8.0
rank_change -1.0
total_points 1726.0
result 2
rank_dif -6.0
points_by_rank 0.125
team_points 1
country_classification Classe S
Name: 930, dtype: object
date 2019-09-06 00:00:00
team Costa Rica
score 1.0
suf_score 2.0
rank 44.0
rank_suf 5.0
rank_change 5.0
total_points 1445.0
result 1
rank_dif 39.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 931, dtype: object
date 2019-09-06 00:00:00
team Morocco
score 1.0
suf_score 1.0
rank 41.0
rank_suf 61.0
rank_change -6.0
total_points 1461.0
result 2
rank_dif -20.0
points_by_rank 0.016393
team_points 1
country_classification Classe A
Name: 932, dtype: object
date 2019-09-06 00:00:00
team Tunisia
score 1.0
suf_score 0.0
rank 29.0
rank_suf 106.0
rank_change 4.0
total_points 1496.0
result 0
rank_dif -77.0
points_by_rank 0.028302
team_points 3
country_classification Classe A
Name: 933, dtype: object
date 2019-09-06 00:00:00
team United States
score 0.0
suf_score 3.0
rank 22.0
rank_suf 12.0
rank_change -8.0
total_points 1548.0
result 1
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 934, dtype: object
date 2019-09-06 00:00:00
team Estonia
score 1.0
suf_score 2.0
rank 100.0
rank_suf 84.0
rank_change 1.0
total_points 1228.0
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 935, dtype: object
date 2019-09-06 00:00:00
team Germany
score 2.0
suf_score 4.0
rank 15.0
rank_suf 16.0
rank_change 4.0
total_points 1582.0
result 1
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 936, dtype: object
date 2019-09-06 00:00:00
team Wales
score 2.0
suf_score 1.0
rank 24.0
rank_suf 109.0
rank_change 1.0
total_points 1514.0
result 0
rank_dif -85.0
points_by_rank 0.027523
team_points 3
country_classification Classe A
Name: 937, dtype: object
date 2019-09-06 00:00:00
team Slovakia
score 0.0
suf_score 4.0
rank 31.0
rank_suf 7.0
rank_change 0.0
total_points 1491.0
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 938, dtype: object
date 2019-09-06 00:00:00
team Austria
score 6.0
suf_score 0.0
rank 27.0
rank_suf 134.0
rank_change 1.0
total_points 1498.0
result 0
rank_dif -107.0
points_by_rank 0.022388
team_points 3
country_classification Classe A
Name: 939, dtype: object
date 2019-09-06 00:00:00
team Slovenia
score 2.0
suf_score 0.0
rank 63.0
rank_suf 20.0
rank_change -2.0
total_points 1363.0
result 0
rank_dif 43.0
points_by_rank 0.15
team_points 3
country_classification Classe B
Name: 940, dtype: object
date 2019-09-06 00:00:00
team Cyprus
score 1.0
suf_score 1.0
rank 93.0
rank_suf 112.0
rank_change 0.0
total_points 1258.0
result 2
rank_dif -19.0
points_by_rank 0.008929
team_points 1
country_classification Classe B
Name: 941, dtype: object
date 2019-09-06 00:00:00
team Scotland
score 1.0
suf_score 2.0
rank 48.0
rank_suf 46.0
rank_change 3.0
total_points 1433.0
result 1
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 942, dtype: object
date 2019-09-06 00:00:00
team San Marino
score 0.0
suf_score 4.0
rank 211.0
rank_suf 1.0
rank_change 0.0
total_points 839.0
result 1
rank_dif 210.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 943, dtype: object
date 2019-09-06 00:00:00
team Aruba
score 0.0
suf_score 1.0
rank 189.0
rank_suf 178.0
rank_change 0.0
total_points 909.0
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 944, dtype: object
date 2019-09-06 00:00:00
team Jamaica
score 6.0
suf_score 0.0
rank 52.0
rank_suf 124.0
rank_change -2.0
total_points 1425.0
result 0
rank_dif -72.0
points_by_rank 0.024194
team_points 3
country_classification Classe A
Name: 945, dtype: object
date 2019-09-06 00:00:00
team Comoros
score 1.0
suf_score 1.0
rank 146.0
rank_suf 128.0
rank_change -2.0
total_points 1071.0
result 2
rank_dif 18.0
points_by_rank 0.007812
team_points 1
country_classification Classe C
Name: 946, dtype: object
date 2019-09-06 00:00:00
team Gambia
score 0.0
suf_score 1.0
rank 161.0
rank_suf 122.0
rank_change 0.0
total_points 1006.0
result 1
rank_dif 39.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 947, dtype: object
date 2019-09-07 00:00:00
team Libya
score 2.0
suf_score 0.0
rank 105.0
rank_suf 104.0
rank_change 0.0
total_points 1207.0
result 0
rank_dif 1.0
points_by_rank 0.028846
team_points 3
country_classification Classe B
Name: 948, dtype: object
date 2019-09-07 00:00:00
team Kosovo
score 2.0
suf_score 1.0
rank 120.0
rank_suf 43.0
rank_change -1.0
total_points 1149.0
result 0
rank_dif 77.0
points_by_rank 0.069767
team_points 3
country_classification Classe C
Name: 949, dtype: object
date 2019-09-07 00:00:00
team England
score 4.0
suf_score 0.0
rank 4.0
rank_suf 60.0
rank_change 0.0
total_points 1652.0
result 0
rank_dif -56.0
points_by_rank 0.05
team_points 3
country_classification Classe S-
Name: 950, dtype: object
date 2019-09-07 00:00:00
team Lithuania
score 0.0
suf_score 3.0
rank 130.0
rank_suf 25.0
rank_change -2.0
total_points 1101.0
result 1
rank_dif 105.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 951, dtype: object
date 2019-09-07 00:00:00
team Serbia
score 2.0
suf_score 4.0
rank 35.0
rank_suf 6.0
rank_change 1.0
total_points 1477.0
result 1
rank_dif 29.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 952, dtype: object
date 2019-09-07 00:00:00
team Iceland
score 3.0
suf_score 0.0
rank 36.0
rank_suf 171.0
rank_change 1.0
total_points 1473.0
result 0
rank_dif -135.0
points_by_rank 0.017544
team_points 3
country_classification Classe A
Name: 953, dtype: object
date 2019-09-07 00:00:00
team France
score 4.0
suf_score 1.0
rank 3.0
rank_suf 64.0
rank_change 1.0
total_points 1718.0
result 0
rank_dif -61.0
points_by_rank 0.046875
team_points 3
country_classification Classe S
Name: 954, dtype: object
date 2019-09-07 00:00:00
team Turkey
score 1.0
suf_score 0.0
rank 37.0
rank_suf 136.0
rank_change 0.0
total_points 1467.0
result 0
rank_dif -99.0
points_by_rank 0.022059
team_points 3
country_classification Classe A
Name: 955, dtype: object
date 2019-09-07 00:00:00
team Canada
score 6.0
suf_score 0.0
rank 78.0
rank_suf 179.0
rank_change 0.0
total_points 1312.0
result 0
rank_dif -101.0
points_by_rank 0.01676
team_points 3
country_classification Classe B
Name: 956, dtype: object
date 2019-09-07 00:00:00
team Curaçao
score 1.0
suf_score 0.0
rank 100.0
rank_suf 83.0
rank_change 0.0
total_points 1450.0
result 0
rank_dif 17.0
points_by_rank 0.036145
team_points 3
country_classification Classe A
Name: 957, dtype: object
date 2019-09-07 00:00:00
team Montserrat
score 2.0
suf_score 1.0
rank 196.0
rank_suf 155.0
rank_change -1.0
total_points 895.0
result 0
rank_dif 41.0
points_by_rank 0.019355
team_points 3
country_classification Classe D
Name: 958, dtype: object
date 2019-09-07 00:00:00
team Botswana
score 0.0
suf_score 0.0
rank 147.0
rank_suf 126.0
rank_change 0.0
total_points 1069.0
result 2
rank_dif 21.0
points_by_rank 0.007937
team_points 1
country_classification Classe C
Name: 959, dtype: object
date 2019-09-08 00:00:00
team Kenya
score 1.0
suf_score 1.0
rank 107.0
rank_suf 80.0
rank_change 2.0
total_points 1201.0
result 2
rank_dif 27.0
points_by_rank 0.0125
team_points 1
country_classification Classe B
Name: 960, dtype: object
date 2019-09-08 00:00:00
team Switzerland
score 4.0
suf_score 0.0
rank 11.0
rank_suf 198.0
rank_change 2.0
total_points 1605.0
result 0
rank_dif -187.0
points_by_rank 0.015152
team_points 3
country_classification Classe S-
Name: 961, dtype: object
date 2019-09-08 00:00:00
team Georgia
score 0.0
suf_score 0.0
rank 94.0
rank_suf 13.0
rank_change 0.0
total_points 1255.0
result 2
rank_dif 81.0
points_by_rank 0.076923
team_points 1
country_classification Classe B
Name: 962, dtype: object
date 2019-09-08 00:00:00
team Romania
score 1.0
suf_score 0.0
rank 28.0
rank_suf 181.0
rank_change 1.0
total_points 1497.0
result 0
rank_dif -153.0
points_by_rank 0.016575
team_points 3
country_classification Classe A
Name: 963, dtype: object
date 2019-09-08 00:00:00
team Spain
score 4.0
suf_score 0.0
rank 9.0
rank_suf 108.0
rank_change 2.0
total_points 1617.0
result 0
rank_dif -99.0
points_by_rank 0.027778
team_points 3
country_classification Classe S-
Name: 964, dtype: object
date 2019-09-08 00:00:00
team Sweden
score 1.0
suf_score 1.0
rank 18.0
rank_suf 50.0
rank_change 1.0
total_points 1558.0
result 2
rank_dif -32.0
points_by_rank 0.02
team_points 1
country_classification Classe A
Name: 965, dtype: object
date 2019-09-08 00:00:00
team Armenia
score 4.0
suf_score 2.0
rank 98.0
rank_suf 42.0
rank_change 1.0
total_points 1230.0
result 0
rank_dif 56.0
points_by_rank 0.071429
team_points 3
country_classification Classe B
Name: 966, dtype: object
date 2019-09-08 00:00:00
team Finland
score 1.0
suf_score 2.0
rank 57.0
rank_suf 16.0
rank_change 1.0
total_points 1394.0
result 1
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 967, dtype: object
date 2019-09-08 00:00:00
team Greece
score 1.0
suf_score 1.0
rank 54.0
rank_suf 182.0
rank_change 2.0
total_points 1403.0
result 2
rank_dif -128.0
points_by_rank 0.005495
team_points 1
country_classification Classe A
Name: 968, dtype: object
date 2019-09-08 00:00:00
team Panama
score 0.0
suf_score 2.0
rank 74.0
rank_suf 174.0
rank_change -1.0
total_points 1331.0
result 1
rank_dif -100.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 969, dtype: object
date 2019-09-08 00:00:00
team Belize
score 1.0
suf_score 2.0
rank 167.0
rank_suf 173.0
rank_change 1.0
total_points 994.0
result 1
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 970, dtype: object
date 2019-09-08 00:00:00
team Suriname
score 6.0
suf_score 0.0
rank 151.0
rank_suf 137.0
rank_change -1.0
total_points 1045.0
result 0
rank_dif 14.0
points_by_rank 0.021898
team_points 3
country_classification Classe C
Name: 971, dtype: object
date 2019-09-08 00:00:00
team Cayman Islands
score 3.0
suf_score 2.0
rank 204.0
rank_suf 163.0
rank_change -1.0
total_points 867.0
result 0
rank_dif 41.0
points_by_rank 0.018405
team_points 3
country_classification Classe D
Name: 972, dtype: object
date 2019-09-08 00:00:00
team Equatorial Guinea
score 1.0
suf_score 0.0
rank 139.0
rank_suf 169.0
rank_change -2.0
total_points 1074.0
result 0
rank_dif -30.0
points_by_rank 0.017751
team_points 3
country_classification Classe C
Name: 973, dtype: object
date 2019-09-08 00:00:00
team Lesotho
score 1.0
suf_score 1.0
rank 144.0
rank_suf 150.0
rank_change -1.0
total_points 1072.0
result 2
rank_dif -6.0
points_by_rank 0.006667
team_points 1
country_classification Classe C
Name: 974, dtype: object
date 2019-09-08 00:00:00
team Sierra Leone
score 1.0
suf_score 0.0
rank 114.0
rank_suf 152.0
rank_change -1.0
total_points 1172.0
result 0
rank_dif -38.0
points_by_rank 0.019737
team_points 3
country_classification Classe C
Name: 975, dtype: object
date 2019-09-08 00:00:00
team Tanzania
score 1.0
suf_score 1.0
rank 137.0
rank_suf 148.0
rank_change 6.0
total_points 1075.0
result 2
rank_dif -11.0
points_by_rank 0.006757
team_points 1
country_classification Classe C
Name: 976, dtype: object
date 2019-09-09 00:00:00
team Algeria
score 1.0
suf_score 0.0
rank 40.0
rank_suf 82.0
rank_change -28.0
total_points 1463.0
result 0
rank_dif -42.0
points_by_rank 0.036585
team_points 3
country_classification Classe A
Name: 977, dtype: object
date 2019-09-09 00:00:00
team Iraq
score 0.0
suf_score 0.0
rank 77.0
rank_suf 84.0
rank_change 0.0
total_points 1315.0
result 2
rank_dif -7.0
points_by_rank 0.011905
team_points 1
country_classification Classe B
Name: 978, dtype: object
date 2019-09-09 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 24.0
rank_suf 84.0
rank_change 1.0
total_points 1514.0
result 0
rank_dif -60.0
points_by_rank 0.035714
team_points 3
country_classification Classe A
Name: 979, dtype: object
date 2019-09-09 00:00:00
team Northern Ireland
score 0.0
suf_score 2.0
rank 29.0
rank_suf 15.0
rank_change 1.0
total_points 1496.0
result 1
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 980, dtype: object
date 2019-09-09 00:00:00
team Estonia
score 0.0
suf_score 4.0
rank 100.0
rank_suf 16.0
rank_change 1.0
total_points 1228.0
result 1
rank_dif 84.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 981, dtype: object
date 2019-09-09 00:00:00
team Azerbaijan
score 1.0
suf_score 1.0
rank 109.0
rank_suf 7.0
rank_change -1.0
total_points 1188.0
result 2
rank_dif 102.0
points_by_rank 0.142857
team_points 1
country_classification Classe C
Name: 982, dtype: object
date 2019-09-09 00:00:00
team Hungary
score 1.0
suf_score 2.0
rank 45.0
rank_suf 31.0
rank_change 3.0
total_points 1442.0
result 1
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 983, dtype: object
date 2019-09-09 00:00:00
team Poland
score 0.0
suf_score 0.0
rank 20.0
rank_suf 27.0
rank_change 1.0
total_points 1550.0
result 2
rank_dif -7.0
points_by_rank 0.037037
team_points 1
country_classification Classe A
Name: 984, dtype: object
date 2019-09-09 00:00:00
team Slovenia
score 3.0
suf_score 2.0
rank 63.0
rank_suf 84.0
rank_change -2.0
total_points 1363.0
result 0
rank_dif -21.0
points_by_rank 0.035714
team_points 3
country_classification Classe B
Name: 985, dtype: object
date 2019-09-09 00:00:00
team Latvia
score 0.0
suf_score 2.0
rank 134.0
rank_suf 71.0
rank_change -3.0
total_points 1086.0
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 986, dtype: object
date 2019-09-09 00:00:00
team Scotland
score 0.0
suf_score 4.0
rank 48.0
rank_suf 1.0
rank_change 3.0
total_points 1433.0
result 1
rank_dif 47.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 987, dtype: object
date 2019-09-09 00:00:00
team Russia
score 1.0
suf_score 0.0
rank 46.0
rank_suf 112.0
rank_change 3.0
total_points 1436.0
result 0
rank_dif -66.0
points_by_rank 0.026786
team_points 3
country_classification Classe A
Name: 988, dtype: object
date 2019-09-09 00:00:00
team San Marino
score 0.0
suf_score 4.0
rank 211.0
rank_suf 93.0
rank_change 0.0
total_points 839.0
result 1
rank_dif 118.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 989, dtype: object
date 2019-09-09 00:00:00
team Antigua and Barbuda
score 2.0
suf_score 1.0
rank 124.0
rank_suf 189.0
rank_change 0.0
total_points 1136.0
result 0
rank_dif -65.0
points_by_rank 0.015873
team_points 3
country_classification Classe C
Name: 990, dtype: object
date 2019-09-09 00:00:00
team Guyana
score 0.0
suf_score 4.0
rank 178.0
rank_suf 52.0
rank_change 1.0
total_points 953.0
result 1
rank_dif 126.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 991, dtype: object
date 2019-09-10 00:00:00
team Argentina
score 4.0
suf_score 0.0
rank 10.0
rank_suf 12.0
rank_change -1.0
total_points 1610.0
result 0
rank_dif -2.0
points_by_rank 0.25
team_points 3
country_classification Classe S-
Name: 992, dtype: object
date 2019-09-10 00:00:00
team Brazil
score 0.0
suf_score 1.0
rank 2.0
rank_suf 19.0
rank_change -1.0
total_points 1726.0
result 1
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 993, dtype: object
date 2019-09-10 00:00:00
team Colombia
score 0.0
suf_score 0.0
rank 8.0
rank_suf 26.0
rank_change -5.0
total_points 1622.0
result 2
rank_dif -18.0
points_by_rank 0.038462
team_points 1
country_classification Classe S-
Name: 994, dtype: object
date 2019-09-10 00:00:00
team Ecuador
score 3.0
suf_score 0.0
rank 66.0
rank_suf 73.0
rank_change 6.0
total_points 1359.0
result 0
rank_dif -7.0
points_by_rank 0.041096
team_points 3
country_classification Classe B
Name: 995, dtype: object
date 2019-09-10 00:00:00
team Honduras
score 2.0
suf_score 1.0
rank 67.0
rank_suf 14.0
rank_change 6.0
total_points 1350.0
result 0
rank_dif 53.0
points_by_rank 0.214286
team_points 3
country_classification Classe B
Name: 996, dtype: object
date 2019-09-10 00:00:00
team Jordan
score 2.0
suf_score 4.0
rank 99.0
rank_suf 39.0
rank_change 1.0
total_points 1229.0
result 1
rank_dif 60.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 997, dtype: object
date 2019-09-10 00:00:00
team Morocco
score 1.0
suf_score 0.0
rank 41.0
rank_suf 104.0
rank_change -6.0
total_points 1461.0
result 0
rank_dif -63.0
points_by_rank 0.028846
team_points 3
country_classification Classe A
Name: 998, dtype: object
date 2019-09-10 00:00:00
team Oman
score 1.0
suf_score 0.0
rank 87.0
rank_suf 87.0
rank_change 1.0
total_points 1277.0
result 0
rank_dif 0.0
points_by_rank 0.034483
team_points 3
country_classification Classe B
Name: 999, dtype: object
date 2019-09-10 00:00:00
team Republic of Ireland
score 3.0
suf_score 1.0
rank 32.0
rank_suf 60.0
rank_change 0.0
total_points 1489.0
result 0
rank_dif -28.0
points_by_rank 0.05
team_points 3
country_classification Classe A
Name: 1000, dtype: object
date 2019-09-10 00:00:00
team Ukraine
score 2.0
suf_score 2.0
rank 25.0
rank_suf 33.0
rank_change 1.0
total_points 1513.0
result 2
rank_dif -8.0
points_by_rank 0.030303
team_points 1
country_classification Classe A
Name: 1001, dtype: object
date 2019-09-10 00:00:00
team United States
score 1.0
suf_score 1.0
rank 22.0
rank_suf 5.0
rank_change -8.0
total_points 1548.0
result 2
rank_dif 17.0
points_by_rank 0.2
team_points 1
country_classification Classe A
Name: 1002, dtype: object
date 2019-09-10 00:00:00
team England
score 5.0
suf_score 3.0
rank 4.0
rank_suf 120.0
rank_change 0.0
total_points 1652.0
result 0
rank_dif -116.0
points_by_rank 0.025
team_points 3
country_classification Classe S-
Name: 1003, dtype: object
date 2019-09-10 00:00:00
team Montenegro
score 0.0
suf_score 3.0
rank 55.0
rank_suf 43.0
rank_change 2.0
total_points 1401.0
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1004, dtype: object
date 2019-09-10 00:00:00
team Luxembourg
score 1.0
suf_score 3.0
rank 91.0
rank_suf 35.0
rank_change 1.0
total_points 1265.0
result 1
rank_dif 56.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1005, dtype: object
date 2019-09-10 00:00:00
team Lithuania
score 1.0
suf_score 5.0
rank 130.0
rank_suf 6.0
rank_change -2.0
total_points 1101.0
result 1
rank_dif 124.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1006, dtype: object
date 2019-09-10 00:00:00
team Albania
score 4.0
suf_score 2.0
rank 64.0
rank_suf 36.0
rank_change -2.0
total_points 1362.0
result 0
rank_dif 28.0
points_by_rank 0.083333
team_points 3
country_classification Classe B
Name: 1007, dtype: object
date 2019-09-10 00:00:00
team France
score 3.0
suf_score 0.0
rank 3.0
rank_suf 136.0
rank_change 1.0
total_points 1718.0
result 0
rank_dif -133.0
points_by_rank 0.022059
team_points 3
country_classification Classe S
Name: 1008, dtype: object
date 2019-09-10 00:00:00
team Moldova
score 0.0
suf_score 4.0
rank 171.0
rank_suf 37.0
rank_change 1.0
total_points 985.0
result 1
rank_dif 134.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1009, dtype: object
date 2019-09-10 00:00:00
team Cuba
score 0.0
suf_score 1.0
rank 179.0
rank_suf 78.0
rank_change 4.0
total_points 950.0
result 1
rank_dif 101.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1010, dtype: object
date 2019-09-10 00:00:00
team Haiti
score 1.0
suf_score 1.0
rank 83.0
rank_suf 100.0
rank_change -18.0
total_points 1288.0
result 2
rank_dif -17.0
points_by_rank 0.01
team_points 1
country_classification Classe B
Name: 1011, dtype: object
date 2019-09-10 00:00:00
team Dominican Republic
score 1.0
suf_score 0.0
rank 155.0
rank_suf 68.0
rank_change 1.0
total_points 1028.0
result 0
rank_dif 87.0
points_by_rank 0.044118
team_points 3
country_classification Classe C
Name: 1012, dtype: object
date 2019-09-10 00:00:00
team Puerto Rico
score 0.0
suf_score 5.0
rank 180.0
rank_suf 144.0
rank_change 0.0
total_points 940.0
result 1
rank_dif 36.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1013, dtype: object
date 2019-09-10 00:00:00
team Guam
score 1.0
suf_score 4.0
rank 190.0
rank_suf 126.0
rank_change 0.0
total_points 908.0
result 1
rank_dif 64.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1014, dtype: object
date 2019-09-10 00:00:00
team Maldives
score 0.0
suf_score 5.0
rank 152.0
rank_suf 71.0
rank_change 1.0
total_points 1044.0
result 1
rank_dif 81.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1015, dtype: object
date 2019-09-10 00:00:00
team Kuwait
score 0.0
suf_score 3.0
rank 156.0
rank_suf 46.0
rank_change 0.0
total_points 1022.0
result 1
rank_dif 110.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1016, dtype: object
date 2019-09-10 00:00:00
team Cambodia
score 0.0
suf_score 1.0
rank 170.0
rank_suf 109.0
rank_change 1.0
total_points 988.0
result 1
rank_dif 61.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1017, dtype: object
date 2019-09-10 00:00:00
team Hong Kong
score 0.0
suf_score 2.0
rank 139.0
rank_suf 23.0
rank_change -2.0
total_points 1074.0
result 1
rank_dif 116.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1018, dtype: object
date 2019-09-10 00:00:00
team Yemen
score 2.0
suf_score 2.0
rank 142.0
rank_suf 68.0
rank_change -2.0
total_points 1073.0
result 2
rank_dif 74.0
points_by_rank 0.014706
team_points 1
country_classification Classe C
Name: 1019, dtype: object
date 2019-09-10 00:00:00
team Singapore
score 2.0
suf_score 1.0
rank 162.0
rank_suf 102.0
rank_change 0.0
total_points 999.0
result 0
rank_dif 60.0
points_by_rank 0.029412
team_points 3
country_classification Classe D
Name: 1020, dtype: object
date 2019-09-10 00:00:00
team Afghanistan
score 1.0
suf_score 0.0
rank 149.0
rank_suf 182.0
rank_change 0.0
total_points 1058.0
result 0
rank_dif -33.0
points_by_rank 0.016484
team_points 3
country_classification Classe C
Name: 1021, dtype: object
date 2019-09-10 00:00:00
team Qatar
score 0.0
suf_score 0.0
rank 62.0
rank_suf 103.0
rank_change 7.0
total_points 1375.0
result 2
rank_dif -41.0
points_by_rank 0.009709
team_points 1
country_classification Classe B
Name: 1022, dtype: object
date 2019-09-10 00:00:00
team Mongolia
score 0.0
suf_score 1.0
rank 187.0
rank_suf 119.0
rank_change 0.0
total_points 914.0
result 1
rank_dif 68.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1023, dtype: object
date 2019-09-10 00:00:00
team Myanmar
score 0.0
suf_score 2.0
rank 135.0
rank_suf 33.0
rank_change -3.0
total_points 1084.0
result 1
rank_dif 102.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1024, dtype: object
date 2019-09-10 00:00:00
team Indonesia
score 0.0
suf_score 3.0
rank 160.0
rank_suf 115.0
rank_change 0.0
total_points 1008.0
result 1
rank_dif 45.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1025, dtype: object
date 2019-09-10 00:00:00
team Malaysia
score 1.0
suf_score 2.0
rank 159.0
rank_suf 65.0
rank_change 0.0
total_points 1009.0
result 1
rank_dif 94.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1026, dtype: object
date 2019-09-10 00:00:00
team Turkmenistan
score 0.0
suf_score 2.0
rank 132.0
rank_suf 37.0
rank_change -3.0
total_points 1091.0
result 1
rank_dif 95.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1027, dtype: object
date 2019-09-10 00:00:00
team Angola
score 2.0
suf_score 1.0
rank 122.0
rank_suf 161.0
rank_change -1.0
total_points 1144.0
result 0
rank_dif -39.0
points_by_rank 0.018634
team_points 3
country_classification Classe C
Name: 1028, dtype: object
date 2019-09-10 00:00:00
team Malawi
score 1.0
suf_score 0.0
rank 126.0
rank_suf 147.0
rank_change 0.0
total_points 1131.0
result 0
rank_dif -21.0
points_by_rank 0.020408
team_points 3
country_classification Classe C
Name: 1029, dtype: object
date 2019-09-10 00:00:00
team Mozambique
score 2.0
suf_score 0.0
rank 116.0
rank_suf 157.0
rank_change -1.0
total_points 1163.0
result 0
rank_dif -41.0
points_by_rank 0.019108
team_points 3
country_classification Classe C
Name: 1030, dtype: object
date 2019-09-10 00:00:00
team Namibia
score 2.0
suf_score 0.0
rank 121.0
rank_suf 202.0
rank_change 8.0
total_points 1148.0
result 0
rank_dif -81.0
points_by_rank 0.014851
team_points 3
country_classification Classe C
Name: 1031, dtype: object
date 2019-09-10 00:00:00
team Rwanda
score 7.0
suf_score 0.0
rank 133.0
rank_suf 192.0
rank_change -3.0
total_points 1088.0
result 0
rank_dif -59.0
points_by_rank 0.015625
team_points 3
country_classification Classe C
Name: 1032, dtype: object
date 2019-09-10 00:00:00
team Sudan
score 0.0
suf_score 0.0
rank 129.0
rank_suf 175.0
rank_change -1.0
total_points 1106.0
result 2
rank_dif -46.0
points_by_rank 0.005714
team_points 1
country_classification Classe C
Name: 1033, dtype: object
date 2019-09-10 00:00:00
team Eswatini
score 0.0
suf_score 0.0
rank 139.0
rank_suf 195.0
rank_change -2.0
total_points 1074.0
result 2
rank_dif -56.0
points_by_rank 0.005128
team_points 1
country_classification Classe C
Name: 1034, dtype: object
date 2019-09-10 00:00:00
team Togo
score 2.0
suf_score 0.0
rank 128.0
rank_suf 146.0
rank_change 0.0
total_points 1127.0
result 0
rank_dif -18.0
points_by_rank 0.020548
team_points 3
country_classification Classe C
Name: 1035, dtype: object
date 2019-09-10 00:00:00
team Zimbabwe
score 3.0
suf_score 1.0
rank 112.0
rank_suf 202.0
rank_change 3.0
total_points 1174.0
result 0
rank_dif -90.0
points_by_rank 0.014851
team_points 3
country_classification Classe C
Name: 1036, dtype: object
date 2019-09-21 00:00:00
team Burundi
score 0.0
suf_score 3.0
rank 144.0
rank_suf 80.0
rank_change -4.0
total_points 1065.0
result 1
rank_dif 64.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1037, dtype: object
date 2019-09-21 00:00:00
team Algeria
score 0.0
suf_score 0.0
rank 38.0
rank_suf 39.0
rank_change -2.0
total_points 1466.0
result 2
rank_dif -1.0
points_by_rank 0.025641
team_points 1
country_classification Classe A
Name: 1038, dtype: object
date 2019-09-21 00:00:00
team Tunisia
score 1.0
suf_score 0.0
rank 29.0
rank_suf 102.0
rank_change 0.0
total_points 1493.0
result 0
rank_dif -73.0
points_by_rank 0.029412
team_points 3
country_classification Classe A
Name: 1039, dtype: object
date 2019-09-21 00:00:00
team Mauritania
score 0.0
suf_score 0.0
rank 105.0
rank_suf 57.0
rank_change -1.0
total_points 1206.0
result 2
rank_dif 48.0
points_by_rank 0.017544
team_points 1
country_classification Classe B
Name: 1040, dtype: object
date 2019-09-21 00:00:00
team Senegal
score 1.0
suf_score 0.0
rank 20.0
rank_suf 74.0
rank_change 0.0
total_points 1546.0
result 0
rank_dif -54.0
points_by_rank 0.040541
team_points 3
country_classification Classe A
Name: 1041, dtype: object
date 2019-09-22 00:00:00
team Equatorial Guinea
score 2.0
suf_score 2.0
rank 134.0
rank_suf 90.0
rank_change -5.0
total_points 1084.0
result 2
rank_dif 44.0
points_by_rank 0.011111
team_points 1
country_classification Classe C
Name: 1042, dtype: object
date 2019-09-22 00:00:00
team Ethiopia
score 0.0
suf_score 1.0
rank 151.0
rank_suf 130.0
rank_change 1.0
total_points 1054.0
result 1
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1043, dtype: object
date 2019-09-22 00:00:00
team Tanzania
score 0.0
suf_score 1.0
rank 135.0
rank_suf 128.0
rank_change -2.0
total_points 1083.0
result 1
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1044, dtype: object
date 2019-09-22 00:00:00
team Madagascar
score 1.0
suf_score 0.0
rank 95.0
rank_suf 120.0
rank_change -1.0
total_points 1249.0
result 0
rank_dif -25.0
points_by_rank 0.025
team_points 3
country_classification Classe B
Name: 1045, dtype: object
date 2019-09-22 00:00:00
team Eswatini
score 0.0
suf_score 1.0
rank 150.0
rank_suf 81.0
rank_change 11.0
total_points 1055.0
result 1
rank_dif 69.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1046, dtype: object
date 2019-09-22 00:00:00
team Zimbabwe
score 3.0
suf_score 1.0
rank 118.0
rank_suf 137.0
rank_change 6.0
total_points 1165.0
result 0
rank_dif -19.0
points_by_rank 0.021898
team_points 3
country_classification Classe C
Name: 1047, dtype: object
date 2019-09-22 00:00:00
team Ghana
score 0.0
suf_score 1.0
rank 51.0
rank_suf 61.0
rank_change 1.0
total_points 1429.0
result 1
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1048, dtype: object
date 2019-09-22 00:00:00
team Togo
score 4.0
suf_score 1.0
rank 124.0
rank_suf 34.0
rank_change -4.0
total_points 1140.0
result 0
rank_dif 90.0
points_by_rank 0.088235
team_points 3
country_classification Classe C
Name: 1049, dtype: object
date 2019-09-29 00:00:00
team Bangladesh
score 4.0
suf_score 1.0
rank 187.0
rank_suf 185.0
rank_change 5.0
total_points 912.0
result 0
rank_dif 2.0
points_by_rank 0.016216
team_points 3
country_classification Classe D
Name: 1050, dtype: object
date 2019-09-30 00:00:00
team Botswana
score 0.0
suf_score 0.0
rank 148.0
rank_suf 152.0
rank_change 1.0
total_points 1059.0
result 2
rank_dif -4.0
points_by_rank 0.006579
team_points 1
country_classification Classe C
Name: 1051, dtype: object
date 2019-10-02 00:00:00
team Mexico
score 2.0
suf_score 0.0
rank 12.0
rank_suf 100.0
rank_change 0.0
total_points 1603.0
result 0
rank_dif -88.0
points_by_rank 0.03
team_points 3
country_classification Classe S-
Name: 1052, dtype: object
date 2019-10-03 00:00:00
team Bangladesh
score 2.0
suf_score 0.0
rank 187.0
rank_suf 185.0
rank_change 5.0
total_points 912.0
result 0
rank_dif 2.0
points_by_rank 0.016216
team_points 3
country_classification Classe D
Name: 1053, dtype: object
date 2019-10-05 00:00:00
team Jordan
score 0.0
suf_score 0.0
rank 98.0
rank_suf 157.0
rank_change -1.0
total_points 1235.0
result 2
rank_dif -59.0
points_by_rank 0.006369
team_points 1
country_classification Classe B
Name: 1054, dtype: object
date 2019-10-05 00:00:00
team Malaysia
score 6.0
suf_score 0.0
rank 158.0
rank_suf 202.0
rank_change -1.0
total_points 1015.0
result 0
rank_dif -44.0
points_by_rank 0.014851
team_points 3
country_classification Classe C
Name: 1055, dtype: object
date 2019-10-09 00:00:00
team Djibouti
score 1.0
suf_score 1.0
rank 186.0
rank_suf 166.0
rank_change -9.0
total_points 913.0
result 2
rank_dif 20.0
points_by_rank 0.006024
team_points 1
country_classification Classe D
Name: 1056, dtype: object
date 2019-10-09 00:00:00
team Liberia
score 1.0
suf_score 0.0
rank 152.0
rank_suf 177.0
rank_change 0.0
total_points 1053.0
result 0
rank_dif -25.0
points_by_rank 0.016949
team_points 3
country_classification Classe C
Name: 1057, dtype: object
date 2019-10-09 00:00:00
team South Sudan
score 2.0
suf_score 1.0
rank 173.0
rank_suf 198.0
rank_change 4.0
total_points 977.0
result 0
rank_dif -25.0
points_by_rank 0.015152
team_points 3
country_classification Classe D
Name: 1058, dtype: object
date 2019-10-09 00:00:00
team Bahrain
score 2.0
suf_score 3.0
rank 105.0
rank_suf 109.0
rank_change -4.0
total_points 1206.0
result 1
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1059, dtype: object
date 2019-10-09 00:00:00
team Germany
score 2.0
suf_score 2.0
rank 16.0
rank_suf 10.0
rank_change 1.0
total_points 1580.0
result 2
rank_dif 6.0
points_by_rank 0.1
team_points 1
country_classification Classe A
Name: 1060, dtype: object
date 2019-10-10 00:00:00
team Belarus
score 0.0
suf_score 0.0
rank 82.0
rank_suf 102.0
rank_change -2.0
total_points 1294.0
result 2
rank_dif -20.0
points_by_rank 0.009804
team_points 1
country_classification Classe B
Name: 1061, dtype: object
date 2019-10-10 00:00:00
team Netherlands
score 3.0
suf_score 1.0
rank 13.0
rank_suf 33.0
rank_change -3.0
total_points 1586.0
result 0
rank_dif -20.0
points_by_rank 0.090909
team_points 3
country_classification Classe A
Name: 1062, dtype: object
date 2019-10-10 00:00:00
team Croatia
score 3.0
suf_score 0.0
rank 8.0
rank_suf 50.0
rank_change 1.0
total_points 1625.0
result 0
rank_dif -42.0
points_by_rank 0.06
team_points 3
country_classification Classe S-
Name: 1063, dtype: object
date 2019-10-10 00:00:00
team Slovakia
score 1.0
suf_score 1.0
rank 29.0
rank_suf 23.0
rank_change -2.0
total_points 1493.0
result 2
rank_dif 6.0
points_by_rank 0.043478
team_points 1
country_classification Classe A
Name: 1064, dtype: object
date 2019-10-10 00:00:00
team Austria
score 3.0
suf_score 1.0
rank 27.0
rank_suf 86.0
rank_change 0.0
total_points 1503.0
result 0
rank_dif -59.0
points_by_rank 0.034884
team_points 3
country_classification Classe A
Name: 1065, dtype: object
date 2019-10-10 00:00:00
team North Macedonia
score 2.0
suf_score 1.0
rank 69.0
rank_suf 58.0
rank_change -2.0
total_points 1339.0
result 0
rank_dif 11.0
points_by_rank 0.051724
team_points 3
country_classification Classe B
Name: 1066, dtype: object
date 2019-10-10 00:00:00
team Latvia
score 0.0
suf_score 3.0
rank 139.0
rank_suf 22.0
rank_change 5.0
total_points 1075.0
result 1
rank_dif 117.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1067, dtype: object
date 2019-10-10 00:00:00
team Kazakhstan
score 1.0
suf_score 2.0
rank 116.0
rank_suf 92.0
rank_change 4.0
total_points 1169.0
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1068, dtype: object
date 2019-10-10 00:00:00
team Belgium
score 9.0
suf_score 0.0
rank 1.0
rank_suf 210.0
rank_change 0.0
total_points 1752.0
result 0
rank_dif -209.0
points_by_rank 0.014286
team_points 3
country_classification Classe S
Name: 1069, dtype: object
date 2019-10-10 00:00:00
team Russia
score 4.0
suf_score 0.0
rank 42.0
rank_suf 52.0
rank_change -4.0
total_points 1455.0
result 0
rank_dif -10.0
points_by_rank 0.057692
team_points 3
country_classification Classe A
Name: 1070, dtype: object
date 2019-10-10 00:00:00
team Brazil
score 1.0
suf_score 1.0
rank 3.0
rank_suf 20.0
rank_change 1.0
total_points 1719.0
result 2
rank_dif -17.0
points_by_rank 0.05
team_points 1
country_classification Classe S
Name: 1071, dtype: object
date 2019-10-10 00:00:00
team Gabon
score 1.0
suf_score 0.0
rank 88.0
rank_suf 61.0
rank_change -2.0
total_points 1272.0
result 0
rank_dif 27.0
points_by_rank 0.04918
team_points 3
country_classification Classe B
Name: 1072, dtype: object
date 2019-10-10 00:00:00
team Kosovo
score 1.0
suf_score 0.0
rank 119.0
rank_suf 197.0
rank_change -1.0
total_points 1164.0
result 0
rank_dif -78.0
points_by_rank 0.015228
team_points 3
country_classification Classe C
Name: 1073, dtype: object
date 2019-10-10 00:00:00
team Niger
score 1.0
suf_score 1.0
rank 107.0
rank_suf 81.0
rank_change 3.0
total_points 1201.0
result 2
rank_dif 26.0
points_by_rank 0.012346
team_points 1
country_classification Classe B
Name: 1074, dtype: object
date 2019-10-10 00:00:00
team Serbia
score 1.0
suf_score 0.0
rank 35.0
rank_suf 40.0
rank_change 0.0
total_points 1476.0
result 0
rank_dif -5.0
points_by_rank 0.075
team_points 3
country_classification Classe A
Name: 1075, dtype: object
date 2019-10-10 00:00:00
team Thailand
score 1.0
suf_score 1.0
rank 114.0
rank_suf 90.0
rank_change -1.0
total_points 1175.0
result 2
rank_dif 24.0
points_by_rank 0.011111
team_points 1
country_classification Classe C
Name: 1076, dtype: object
date 2019-10-10 00:00:00
team Venezuela
score 4.0
suf_score 1.0
rank 26.0
rank_suf 72.0
rank_change 0.0
total_points 1506.0
result 0
rank_dif -46.0
points_by_rank 0.041667
team_points 3
country_classification Classe A
Name: 1077, dtype: object
date 2019-10-10 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 2.0
rank 100.0
rank_suf 67.0
rank_change -1.0
total_points 1226.0
result 1
rank_dif 33.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1078, dtype: object
date 2019-10-10 00:00:00
team Haiti
score 1.0
suf_score 1.0
rank 86.0
rank_suf 43.0
rank_change 3.0
total_points 1277.0
result 2
rank_dif 43.0
points_by_rank 0.023256
team_points 1
country_classification Classe B
Name: 1079, dtype: object
date 2019-10-10 00:00:00
team British Virgin Islands
score 0.0
suf_score 4.0
rank 203.0
rank_suf 208.0
rank_change -1.0
total_points 867.0
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1080, dtype: object
date 2019-10-10 00:00:00
team Syria
score 2.0
suf_score 1.0
rank 85.0
rank_suf 153.0
rank_change -2.0
total_points 1280.0
result 0
rank_dif -68.0
points_by_rank 0.019608
team_points 3
country_classification Classe B
Name: 1081, dtype: object
date 2019-10-10 00:00:00
team China PR
score 7.0
suf_score 0.0
rank 68.0
rank_suf 195.0
rank_change -3.0
total_points 1340.0
result 0
rank_dif -127.0
points_by_rank 0.015385
team_points 3
country_classification Classe B
Name: 1082, dtype: object
date 2019-10-10 00:00:00
team Jordan
score 0.0
suf_score 0.0
rank 98.0
rank_suf 156.0
rank_change -1.0
total_points 1235.0
result 2
rank_dif -58.0
points_by_rank 0.00641
team_points 1
country_classification Classe B
Name: 1083, dtype: object
date 2019-10-10 00:00:00
team Australia
score 5.0
suf_score 0.0
rank 44.0
rank_suf 161.0
rank_change -2.0
total_points 1441.0
result 0
rank_dif -117.0
points_by_rank 0.018634
team_points 3
country_classification Classe A
Name: 1084, dtype: object
date 2019-10-10 00:00:00
team Iran
score 14.0
suf_score 0.0
rank 23.0
rank_suf 169.0
rank_change 0.0
total_points 1522.0
result 0
rank_dif -146.0
points_by_rank 0.017751
team_points 3
country_classification Classe A
Name: 1085, dtype: object
date 2019-10-10 00:00:00
team Iraq
score 2.0
suf_score 0.0
rank 79.0
rank_suf 143.0
rank_change 2.0
total_points 1314.0
result 0
rank_dif -64.0
points_by_rank 0.020979
team_points 3
country_classification Classe B
Name: 1086, dtype: object
date 2019-10-10 00:00:00
team Uzbekistan
score 5.0
suf_score 0.0
rank 88.0
rank_suf 137.0
rank_change 4.0
total_points 1272.0
result 0
rank_dif -49.0
points_by_rank 0.021898
team_points 3
country_classification Classe B
Name: 1087, dtype: object
date 2019-10-10 00:00:00
team Saudi Arabia
score 3.0
suf_score 0.0
rank 70.0
rank_suf 157.0
rank_change 2.0
total_points 1336.0
result 0
rank_dif -87.0
points_by_rank 0.019108
team_points 3
country_classification Classe B
Name: 1088, dtype: object
date 2019-10-10 00:00:00
team Bangladesh
score 0.0
suf_score 2.0
rank 187.0
rank_suf 62.0
rank_change 5.0
total_points 912.0
result 1
rank_dif 125.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1089, dtype: object
date 2019-10-10 00:00:00
team Oman
score 3.0
suf_score 0.0
rank 84.0
rank_suf 146.0
rank_change -3.0
total_points 1292.0
result 0
rank_dif -62.0
points_by_rank 0.020548
team_points 3
country_classification Classe B
Name: 1090, dtype: object
date 2019-10-10 00:00:00
team Japan
score 6.0
suf_score 0.0
rank 31.0
rank_suf 183.0
rank_change -2.0
total_points 1490.0
result 0
rank_dif -152.0
points_by_rank 0.016393
team_points 3
country_classification Classe A
Name: 1091, dtype: object
date 2019-10-10 00:00:00
team United Arab Emirates
score 5.0
suf_score 0.0
rank 66.0
rank_suf 167.0
rank_change 1.0
total_points 1365.0
result 0
rank_dif -101.0
points_by_rank 0.017964
team_points 3
country_classification Classe B
Name: 1092, dtype: object
date 2019-10-10 00:00:00
team Vietnam
score 1.0
suf_score 0.0
rank 99.0
rank_suf 158.0
rank_change 2.0
total_points 1231.0
result 0
rank_dif -59.0
points_by_rank 0.018987
team_points 3
country_classification Classe B
Name: 1093, dtype: object
date 2019-10-10 00:00:00
team Lebanon
score 2.0
suf_score 1.0
rank 94.0
rank_suf 131.0
rank_change 7.0
total_points 1253.0
result 0
rank_dif -37.0
points_by_rank 0.022901
team_points 3
country_classification Classe B
Name: 1094, dtype: object
date 2019-10-10 00:00:00
team South Korea
score 8.0
suf_score 0.0
rank 37.0
rank_suf 202.0
rank_change 0.0
total_points 1470.0
result 0
rank_dif -165.0
points_by_rank 0.014851
team_points 3
country_classification Classe A
Name: 1095, dtype: object
date 2019-10-11 00:00:00
team Czech Republic
score 2.0
suf_score 1.0
rank 44.0
rank_suf 4.0
rank_change 1.0
total_points 1441.0
result 0
rank_dif 40.0
points_by_rank 0.75
team_points 3
country_classification Classe A
Name: 1096, dtype: object
date 2019-10-11 00:00:00
team Montenegro
score 0.0
suf_score 0.0
rank 59.0
rank_suf 62.0
rank_change 4.0
total_points 1389.0
result 2
rank_dif -3.0
points_by_rank 0.016129
team_points 1
country_classification Classe B
Name: 1097, dtype: object
date 2019-10-11 00:00:00
team Portugal
score 3.0
suf_score 0.0
rank 5.0
rank_suf 93.0
rank_change -1.0
total_points 1643.0
result 0
rank_dif -88.0
points_by_rank 0.032258
team_points 3
country_classification Classe S-
Name: 1098, dtype: object
date 2019-10-11 00:00:00
team Ukraine
score 2.0
suf_score 0.0
rank 25.0
rank_suf 131.0
rank_change 0.0
total_points 1516.0
result 0
rank_dif -106.0
points_by_rank 0.022901
team_points 3
country_classification Classe A
Name: 1099, dtype: object
date 2019-10-11 00:00:00
team Iceland
score 0.0
suf_score 1.0
rank 41.0
rank_suf 2.0
rank_change 5.0
total_points 1461.0
result 1
rank_dif 39.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1100, dtype: object
date 2019-10-11 00:00:00
team Andorra
score 1.0
suf_score 0.0
rank 139.0
rank_suf 172.0
rank_change 3.0
total_points 1075.0
result 0
rank_dif -33.0
points_by_rank 0.017442
team_points 3
country_classification Classe C
Name: 1101, dtype: object
date 2019-10-11 00:00:00
team Turkey
score 1.0
suf_score 0.0
rank 36.0
rank_suf 64.0
rank_change -1.0
total_points 1475.0
result 0
rank_dif -28.0
points_by_rank 0.046875
team_points 3
country_classification Classe A
Name: 1102, dtype: object
date 2019-10-11 00:00:00
team Morocco
score 1.0
suf_score 1.0
rank 39.0
rank_suf 102.0
rank_change -2.0
total_points 1463.0
result 2
rank_dif -63.0
points_by_rank 0.009804
team_points 1
country_classification Classe A
Name: 1103, dtype: object
date 2019-10-11 00:00:00
team Uruguay
score 1.0
suf_score 0.0
rank 6.0
rank_suf 19.0
rank_change 1.0
total_points 1639.0
result 0
rank_dif -13.0
points_by_rank 0.157895
team_points 3
country_classification Classe S-
Name: 1104, dtype: object
date 2019-10-11 00:00:00
team United States
score 7.0
suf_score 0.0
rank 21.0
rank_suf 178.0
rank_change -1.0
total_points 1545.0
result 0
rank_dif -157.0
points_by_rank 0.016854
team_points 3
country_classification Classe A
Name: 1105, dtype: object
date 2019-10-11 00:00:00
team Bermuda
score 1.0
suf_score 5.0
rank 167.0
rank_suf 12.0
rank_change -7.0
total_points 987.0
result 1
rank_dif 155.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1106, dtype: object
date 2019-10-11 00:00:00
team Antigua and Barbuda
score 2.0
suf_score 1.0
rank 126.0
rank_suf 176.0
rank_change 2.0
total_points 1137.0
result 0
rank_dif -50.0
points_by_rank 0.017045
team_points 3
country_classification Classe C
Name: 1107, dtype: object
date 2019-10-11 00:00:00
team Nicaragua
score 3.0
suf_score 1.0
rank 148.0
rank_suf 180.0
rank_change 11.0
total_points 1059.0
result 0
rank_dif -32.0
points_by_rank 0.016667
team_points 3
country_classification Classe C
Name: 1108, dtype: object
date 2019-10-12 00:00:00
team Georgia
score 0.0
suf_score 0.0
rank 91.0
rank_suf 28.0
rank_change -3.0
total_points 1264.0
result 2
rank_dif 63.0
points_by_rank 0.035714
team_points 1
country_classification Classe B
Name: 1109, dtype: object
date 2019-10-12 00:00:00
team Denmark
score 1.0
suf_score 0.0
rank 14.0
rank_suf 11.0
rank_change 1.0
total_points 1584.0
result 0
rank_dif 3.0
points_by_rank 0.272727
team_points 3
country_classification Classe A
Name: 1110, dtype: object
date 2019-10-12 00:00:00
team Faroe Islands
score 0.0
suf_score 3.0
rank 109.0
rank_suf 31.0
rank_change 1.0
total_points 1191.0
result 1
rank_dif 78.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1111, dtype: object
date 2019-10-12 00:00:00
team Malta
score 0.0
suf_score 4.0
rank 179.0
rank_suf 18.0
rank_change -2.0
total_points 933.0
result 1
rank_dif 161.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1112, dtype: object
date 2019-10-12 00:00:00
team Norway
score 1.0
suf_score 1.0
rank 47.0
rank_suf 7.0
rank_change -3.0
total_points 1435.0
result 2
rank_dif 40.0
points_by_rank 0.142857
team_points 1
country_classification Classe A
Name: 1113, dtype: object
date 2019-10-12 00:00:00
team Bosnia and Herzegovina
score 4.0
suf_score 1.0
rank 46.0
rank_suf 54.0
rank_change 4.0
total_points 1438.0
result 0
rank_dif -8.0
points_by_rank 0.055556
team_points 3
country_classification Classe A
Name: 1114, dtype: object
date 2019-10-12 00:00:00
team Italy
score 2.0
suf_score 0.0
rank 15.0
rank_suf 60.0
rank_change -1.0
total_points 1583.0
result 0
rank_dif -45.0
points_by_rank 0.05
team_points 3
country_classification Classe A
Name: 1115, dtype: object
date 2019-10-12 00:00:00
team Liechtenstein
score 1.0
suf_score 1.0
rank 182.0
rank_suf 96.0
rank_change 0.0
total_points 928.0
result 2
rank_dif 86.0
points_by_rank 0.010417
team_points 1
country_classification Classe D
Name: 1116, dtype: object
date 2019-10-12 00:00:00
team Colombia
score 0.0
suf_score 0.0
rank 9.0
rank_suf 17.0
rank_change 1.0
total_points 1622.0
result 2
rank_dif -8.0
points_by_rank 0.058824
team_points 1
country_classification Classe S-
Name: 1117, dtype: object
date 2019-10-12 00:00:00
team Guinea
score 0.0
suf_score 1.0
rank 74.0
rank_suf 147.0
rank_change -1.0
total_points 1325.0
result 1
rank_dif -73.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1118, dtype: object
date 2019-10-12 00:00:00
team Tunisia
score 0.0
suf_score 0.0
rank 29.0
rank_suf 53.0
rank_change 0.0
total_points 1493.0
result 2
rank_dif -24.0
points_by_rank 0.018868
team_points 1
country_classification Classe A
Name: 1119, dtype: object
date 2019-10-12 00:00:00
team Montserrat
score 0.0
suf_score 2.0
rank 187.0
rank_suf 72.0
rank_change -9.0
total_points 912.0
result 1
rank_dif 115.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1120, dtype: object
date 2019-10-12 00:00:00
team Jamaica
score 2.0
suf_score 0.0
rank 47.0
rank_suf 195.0
rank_change -5.0
total_points 1435.0
result 0
rank_dif -148.0
points_by_rank 0.015385
team_points 3
country_classification Classe A
Name: 1121, dtype: object
date 2019-10-12 00:00:00
team Anguilla
score 0.0
suf_score 5.0
rank 209.0
rank_suf 133.0
rank_change 0.0
total_points 849.0
result 1
rank_dif 76.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1122, dtype: object
date 2019-10-13 00:00:00
team Belarus
score 1.0
suf_score 2.0
rank 82.0
rank_suf 13.0
rank_change -2.0
total_points 1294.0
result 1
rank_dif 69.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1123, dtype: object
date 2019-10-13 00:00:00
team Estonia
score 0.0
suf_score 3.0
rank 102.0
rank_suf 16.0
rank_change 2.0
total_points 1212.0
result 1
rank_dif 86.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1124, dtype: object
date 2019-10-13 00:00:00
team Hungary
score 1.0
suf_score 0.0
rank 50.0
rank_suf 109.0
rank_change 5.0
total_points 1430.0
result 0
rank_dif -59.0
points_by_rank 0.027523
team_points 3
country_classification Classe A
Name: 1125, dtype: object
date 2019-10-13 00:00:00
team Wales
score 1.0
suf_score 1.0
rank 23.0
rank_suf 8.0
rank_change -1.0
total_points 1522.0
result 2
rank_dif 15.0
points_by_rank 0.125
team_points 1
country_classification Classe A
Name: 1126, dtype: object
date 2019-10-13 00:00:00
team Poland
score 2.0
suf_score 0.0
rank 22.0
rank_suf 69.0
rank_change 2.0
total_points 1532.0
result 0
rank_dif -47.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 1127, dtype: object
date 2019-10-13 00:00:00
team Slovenia
score 0.0
suf_score 1.0
rank 58.0
rank_suf 27.0
rank_change -5.0
total_points 1390.0
result 1
rank_dif 31.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1128, dtype: object
date 2019-10-13 00:00:00
team Scotland
score 6.0
suf_score 0.0
rank 52.0
rank_suf 210.0
rank_change 4.0
total_points 1415.0
result 0
rank_dif -158.0
points_by_rank 0.014286
team_points 3
country_classification Classe A
Name: 1129, dtype: object
date 2019-10-13 00:00:00
team Cyprus
score 0.0
suf_score 5.0
rank 92.0
rank_suf 42.0
rank_change -1.0
total_points 1261.0
result 1
rank_dif 50.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1130, dtype: object
date 2019-10-13 00:00:00
team Kazakhstan
score 0.0
suf_score 2.0
rank 116.0
rank_suf 1.0
rank_change 4.0
total_points 1169.0
result 1
rank_dif 115.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1131, dtype: object
date 2019-10-13 00:00:00
team Gambia
score 1.0
suf_score 1.0
rank 166.0
rank_suf 186.0
rank_change 5.0
total_points 988.0
result 2
rank_dif -20.0
points_by_rank 0.005376
team_points 1
country_classification Classe D
Name: 1132, dtype: object
date 2019-10-13 00:00:00
team Chad
score 1.0
suf_score 0.0
rank 177.0
rank_suf 152.0
rank_change 2.0
total_points 950.0
result 0
rank_dif 25.0
points_by_rank 0.019737
team_points 3
country_classification Classe D
Name: 1133, dtype: object
date 2019-10-13 00:00:00
team Seychelles
score 0.0
suf_score 1.0
rank 198.0
rank_suf 173.0
rank_change 6.0
total_points 888.0
result 1
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1134, dtype: object
date 2019-10-13 00:00:00
team Benin
score 2.0
suf_score 2.0
rank 83.0
rank_suf 81.0
rank_change 1.0
total_points 1293.0
result 2
rank_dif 2.0
points_by_rank 0.012346
team_points 1
country_classification Classe B
Name: 1135, dtype: object
date 2019-10-13 00:00:00
team Brazil
score 1.0
suf_score 1.0
rank 3.0
rank_suf 34.0
rank_change 1.0
total_points 1719.0
result 2
rank_dif -31.0
points_by_rank 0.029412
team_points 1
country_classification Classe S
Name: 1136, dtype: object
date 2019-10-13 00:00:00
team Ecuador
score 1.0
suf_score 6.0
rank 65.0
rank_suf 10.0
rank_change -1.0
total_points 1370.0
result 1
rank_dif 55.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1137, dtype: object
date 2019-10-13 00:00:00
team Equatorial Guinea
score 1.0
suf_score 1.0
rank 134.0
rank_suf 124.0
rank_change -5.0
total_points 1084.0
result 2
rank_dif 10.0
points_by_rank 0.008065
team_points 1
country_classification Classe C
Name: 1138, dtype: object
date 2019-10-13 00:00:00
team Ethiopia
score 0.0
suf_score 1.0
rank 151.0
rank_suf 80.0
rank_change 1.0
total_points 1054.0
result 1
rank_dif 71.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1139, dtype: object
date 2019-10-13 00:00:00
team Kenya
score 0.0
suf_score 1.0
rank 107.0
rank_suf 112.0
rank_change 0.0
total_points 1201.0
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1140, dtype: object
date 2019-10-13 00:00:00
team Lesotho
score 1.0
suf_score 1.0
rank 137.0
rank_suf 124.0
rank_change -7.0
total_points 1078.0
result 2
rank_dif 13.0
points_by_rank 0.008065
team_points 1
country_classification Classe C
Name: 1141, dtype: object
date 2019-10-13 00:00:00
team Niger
score 0.0
suf_score 2.0
rank 107.0
rank_suf 111.0
rank_change 3.0
total_points 1201.0
result 1
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1142, dtype: object
date 2019-10-13 00:00:00
team Slovakia
score 1.0
suf_score 1.0
rank 29.0
rank_suf 40.0
rank_change -2.0
total_points 1493.0
result 2
rank_dif -11.0
points_by_rank 0.025
team_points 1
country_classification Classe A
Name: 1143, dtype: object
date 2019-10-13 00:00:00
team South Africa
score 2.0
suf_score 1.0
rank 71.0
rank_suf 57.0
rank_change 1.0
total_points 1331.0
result 0
rank_dif 14.0
points_by_rank 0.052632
team_points 3
country_classification Classe B
Name: 1144, dtype: object
date 2019-10-13 00:00:00
team Costa Rica
score 0.0
suf_score 0.0
rank 43.0
rank_suf 100.0
rank_change -1.0
total_points 1442.0
result 2
rank_dif -57.0
points_by_rank 0.01
team_points 1
country_classification Classe A
Name: 1145, dtype: object
date 2019-10-14 00:00:00
team Kosovo
score 2.0
suf_score 0.0
rank 119.0
rank_suf 59.0
rank_change -1.0
total_points 1164.0
result 0
rank_dif 60.0
points_by_rank 0.050847
team_points 3
country_classification Classe C
Name: 1146, dtype: object
date 2019-10-14 00:00:00
team Bulgaria
score 0.0
suf_score 6.0
rank 62.0
rank_suf 4.0
rank_change 2.0
total_points 1377.0
result 1
rank_dif 58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1147, dtype: object
date 2019-10-14 00:00:00
team Lithuania
score 1.0
suf_score 2.0
rank 131.0
rank_suf 35.0
rank_change 1.0
total_points 1094.0
result 1
rank_dif 96.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1148, dtype: object
date 2019-10-14 00:00:00
team Ukraine
score 2.0
suf_score 1.0
rank 25.0
rank_suf 5.0
rank_change 0.0
total_points 1516.0
result 0
rank_dif 20.0
points_by_rank 0.6
team_points 3
country_classification Classe A
Name: 1149, dtype: object
date 2019-10-14 00:00:00
team Iceland
score 2.0
suf_score 0.0
rank 41.0
rank_suf 139.0
rank_change 5.0
total_points 1461.0
result 0
rank_dif -98.0
points_by_rank 0.021583
team_points 3
country_classification Classe A
Name: 1150, dtype: object
date 2019-10-14 00:00:00
team France
score 1.0
suf_score 1.0
rank 2.0
rank_suf 36.0
rank_change -1.0
total_points 1725.0
result 2
rank_dif -34.0
points_by_rank 0.027778
team_points 1
country_classification Classe S
Name: 1151, dtype: object
date 2019-10-14 00:00:00
team Moldova
score 0.0
suf_score 4.0
rank 172.0
rank_suf 64.0
rank_change 1.0
total_points 978.0
result 1
rank_dif 108.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1152, dtype: object
date 2019-10-14 00:00:00
team Czech Republic
score 2.0
suf_score 3.0
rank 44.0
rank_suf 33.0
rank_change 1.0
total_points 1441.0
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1153, dtype: object
date 2019-10-14 00:00:00
team Egypt
score 1.0
suf_score 0.0
rank 49.0
rank_suf 148.0
rank_change 0.0
total_points 1431.0
result 0
rank_dif -99.0
points_by_rank 0.02027
team_points 3
country_classification Classe A
Name: 1154, dtype: object
date 2019-10-14 00:00:00
team Rwanda
score 0.0
suf_score 0.0
rank 130.0
rank_suf 135.0
rank_change -3.0
total_points 1104.0
result 2
rank_dif -5.0
points_by_rank 0.007407
team_points 1
country_classification Classe C
Name: 1155, dtype: object
date 2019-10-14 00:00:00
team Venezuela
score 2.0
suf_score 0.0
rank 26.0
rank_suf 100.0
rank_change 0.0
total_points 1506.0
result 0
rank_dif -74.0
points_by_rank 0.03
team_points 3
country_classification Classe A
Name: 1156, dtype: object
date 2019-10-14 00:00:00
team Guyana
score 5.0
suf_score 1.0
rank 176.0
rank_suf 126.0
rank_change -2.0
total_points 960.0
result 0
rank_dif 50.0
points_by_rank 0.02381
team_points 3
country_classification Classe D
Name: 1157, dtype: object
date 2019-10-14 00:00:00
team Dominica
score 0.0
suf_score 4.0
rank 180.0
rank_suf 148.0
rank_change 4.0
total_points 932.0
result 1
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1158, dtype: object
date 2019-10-15 00:00:00
team Gibraltar
score 2.0
suf_score 3.0
rank 197.0
rank_suf 91.0
rank_change -1.0
total_points 889.0
result 1
rank_dif 106.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1159, dtype: object
date 2019-10-15 00:00:00
team Switzerland
score 2.0
suf_score 0.0
rank 11.0
rank_suf 28.0
rank_change 0.0
total_points 1604.0
result 0
rank_dif -17.0
points_by_rank 0.107143
team_points 3
country_classification Classe S-
Name: 1160, dtype: object
date 2019-10-15 00:00:00
team Faroe Islands
score 1.0
suf_score 0.0
rank 109.0
rank_suf 179.0
rank_change 1.0
total_points 1191.0
result 0
rank_dif -70.0
points_by_rank 0.01676
team_points 3
country_classification Classe C
Name: 1161, dtype: object
date 2019-10-15 00:00:00
team Sweden
score 1.0
suf_score 1.0
rank 18.0
rank_suf 7.0
rank_change 0.0
total_points 1560.0
result 2
rank_dif 11.0
points_by_rank 0.142857
team_points 1
country_classification Classe A
Name: 1162, dtype: object
date 2019-10-15 00:00:00
team Romania
score 1.0
suf_score 1.0
rank 31.0
rank_suf 47.0
rank_change 3.0
total_points 1490.0
result 2
rank_dif -16.0
points_by_rank 0.021277
team_points 1
country_classification Classe A
Name: 1163, dtype: object
date 2019-10-15 00:00:00
team Israel
score 3.0
suf_score 1.0
rank 86.0
rank_suf 139.0
rank_change 2.0
total_points 1277.0
result 0
rank_dif -53.0
points_by_rank 0.021583
team_points 3
country_classification Classe B
Name: 1164, dtype: object
date 2019-10-15 00:00:00
team Finland
score 3.0
suf_score 0.0
rank 54.0
rank_suf 96.0
rank_change -3.0
total_points 1398.0
result 0
rank_dif -42.0
points_by_rank 0.03125
team_points 3
country_classification Classe B
Name: 1165, dtype: object
date 2019-10-15 00:00:00
team Liechtenstein
score 0.0
suf_score 5.0
rank 182.0
rank_suf 15.0
rank_change 0.0
total_points 928.0
result 1
rank_dif 167.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1166, dtype: object
date 2019-10-15 00:00:00
team Greece
score 2.0
suf_score 1.0
rank 60.0
rank_suf 46.0
rank_change 6.0
total_points 1382.0
result 0
rank_dif 14.0
points_by_rank 0.065217
team_points 3
country_classification Classe B
Name: 1167, dtype: object
date 2019-10-15 00:00:00
team Algeria
score 3.0
suf_score 0.0
rank 38.0
rank_suf 9.0
rank_change -2.0
total_points 1466.0
result 0
rank_dif 29.0
points_by_rank 0.333333
team_points 3
country_classification Classe A
Name: 1168, dtype: object
date 2019-10-15 00:00:00
team Bermuda
score 0.0
suf_score 0.0
rank 167.0
rank_suf 133.0
rank_change -7.0
total_points 987.0
result 2
rank_dif 34.0
points_by_rank 0.007519
team_points 1
country_classification Classe D
Name: 1169, dtype: object
date 2019-10-15 00:00:00
team Bolivia
score 3.0
suf_score 1.0
rank 72.0
rank_suf 86.0
rank_change -1.0
total_points 1327.0
result 0
rank_dif -14.0
points_by_rank 0.034884
team_points 3
country_classification Classe B
Name: 1170, dtype: object
date 2019-10-15 00:00:00
team Chile
score 3.0
suf_score 2.0
rank 17.0
rank_suf 74.0
rank_change 3.0
total_points 1576.0
result 0
rank_dif -57.0
points_by_rank 0.040541
team_points 3
country_classification Classe A
Name: 1171, dtype: object
date 2019-10-15 00:00:00
team Denmark
score 4.0
suf_score 0.0
rank 14.0
rank_suf 93.0
rank_change 1.0
total_points 1584.0
result 0
rank_dif -79.0
points_by_rank 0.032258
team_points 3
country_classification Classe A
Name: 1172, dtype: object
date 2019-10-15 00:00:00
team Kuwait
score 1.0
suf_score 1.0
rank 156.0
rank_suf 131.0
rank_change 0.0
total_points 1029.0
result 2
rank_dif 25.0
points_by_rank 0.007634
team_points 1
country_classification Classe C
Name: 1173, dtype: object
date 2019-10-15 00:00:00
team Mauritania
score 0.0
suf_score 0.0
rank 105.0
rank_suf 102.0
rank_change -1.0
total_points 1206.0
result 2
rank_dif 3.0
points_by_rank 0.009804
team_points 1
country_classification Classe B
Name: 1174, dtype: object
date 2019-10-15 00:00:00
team Morocco
score 2.0
suf_score 3.0
rank 39.0
rank_suf 88.0
rank_change -2.0
total_points 1463.0
result 1
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1175, dtype: object
date 2019-10-15 00:00:00
team Peru
score 1.0
suf_score 1.0
rank 19.0
rank_suf 6.0
rank_change 0.0
total_points 1551.0
result 2
rank_dif 13.0
points_by_rank 0.166667
team_points 1
country_classification Classe A
Name: 1176, dtype: object
date 2019-10-15 00:00:00
team Canada
score 2.0
suf_score 0.0
rank 75.0
rank_suf 21.0
rank_change -3.0
total_points 1322.0
result 0
rank_dif 54.0
points_by_rank 0.142857
team_points 3
country_classification Classe B
Name: 1177, dtype: object
date 2019-10-15 00:00:00
team Mexico
score 3.0
suf_score 1.0
rank 12.0
rank_suf 77.0
rank_change 0.0
total_points 1603.0
result 0
rank_dif -65.0
points_by_rank 0.038961
team_points 3
country_classification Classe S-
Name: 1178, dtype: object
date 2019-10-15 00:00:00
team Dominican Republic
score 0.0
suf_score 0.0
rank 155.0
rank_suf 187.0
rank_change 0.0
total_points 1032.0
result 2
rank_dif -32.0
points_by_rank 0.005348
team_points 1
country_classification Classe C
Name: 1179, dtype: object
date 2019-10-15 00:00:00
team Aruba
score 0.0
suf_score 6.0
rank 195.0
rank_suf 47.0
rank_change 6.0
total_points 890.0
result 1
rank_dif 148.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1180, dtype: object
date 2019-10-15 00:00:00
team Anguilla
score 2.0
suf_score 3.0
rank 209.0
rank_suf 181.0
rank_change 0.0
total_points 849.0
result 1
rank_dif 28.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1181, dtype: object
date 2019-10-15 00:00:00
team Syria
score 4.0
suf_score 0.0
rank 85.0
rank_suf 195.0
rank_change -2.0
total_points 1280.0
result 0
rank_dif -110.0
points_by_rank 0.015385
team_points 3
country_classification Classe B
Name: 1182, dtype: object
date 2019-10-15 00:00:00
team Philippines
score 0.0
suf_score 0.0
rank 127.0
rank_suf 68.0
rank_change 1.0
total_points 1130.0
result 2
rank_dif 59.0
points_by_rank 0.014706
team_points 1
country_classification Classe C
Name: 1183, dtype: object
date 2019-10-15 00:00:00
team Jordan
score 3.0
suf_score 0.0
rank 98.0
rank_suf 161.0
rank_change -1.0
total_points 1235.0
result 0
rank_dif -63.0
points_by_rank 0.018634
team_points 3
country_classification Classe B
Name: 1184, dtype: object
date 2019-10-15 00:00:00
team Cambodia
score 0.0
suf_score 4.0
rank 169.0
rank_suf 79.0
rank_change -1.0
total_points 982.0
result 1
rank_dif 90.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1185, dtype: object
date 2019-10-15 00:00:00
team Bahrain
score 1.0
suf_score 0.0
rank 105.0
rank_suf 23.0
rank_change -4.0
total_points 1206.0
result 0
rank_dif 82.0
points_by_rank 0.130435
team_points 3
country_classification Classe B
Name: 1186, dtype: object
date 2019-10-15 00:00:00
team Palestine
score 0.0
suf_score 0.0
rank 101.0
rank_suf 70.0
rank_change -1.0
total_points 1223.0
result 2
rank_dif 31.0
points_by_rank 0.014286
team_points 1
country_classification Classe B
Name: 1187, dtype: object
date 2019-10-15 00:00:00
team Singapore
score 1.0
suf_score 3.0
rank 157.0
rank_suf 88.0
rank_change -5.0
total_points 1019.0
result 1
rank_dif 69.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1188, dtype: object
date 2019-10-15 00:00:00
team India
score 1.0
suf_score 1.0
rank 104.0
rank_suf 187.0
rank_change 1.0
total_points 1207.0
result 2
rank_dif -83.0
points_by_rank 0.005348
team_points 1
country_classification Classe B
Name: 1189, dtype: object
date 2019-10-15 00:00:00
team Qatar
score 2.0
suf_score 1.0
rank 62.0
rank_suf 84.0
rank_change 0.0
total_points 1377.0
result 0
rank_dif -22.0
points_by_rank 0.035714
team_points 3
country_classification Classe B
Name: 1190, dtype: object
date 2019-10-15 00:00:00
team Tajikistan
score 0.0
suf_score 3.0
rank 115.0
rank_suf 31.0
rank_change -4.0
total_points 1174.0
result 1
rank_dif 84.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1191, dtype: object
date 2019-10-15 00:00:00
team Thailand
score 2.0
suf_score 1.0
rank 114.0
rank_suf 66.0
rank_change -1.0
total_points 1175.0
result 0
rank_dif 48.0
points_by_rank 0.045455
team_points 3
country_classification Classe C
Name: 1192, dtype: object
date 2019-10-15 00:00:00
team Indonesia
score 1.0
suf_score 3.0
rank 167.0
rank_suf 99.0
rank_change 7.0
total_points 987.0
result 1
rank_dif 68.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1193, dtype: object
date 2019-10-15 00:00:00
team Sri Lanka
score 0.0
suf_score 3.0
rank 202.0
rank_suf 94.0
rank_change 2.0
total_points 872.0
result 1
rank_dif 108.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1194, dtype: object
date 2019-10-18 00:00:00
team Sudan
score 1.0
suf_score 2.0
rank 128.0
rank_suf 135.0
rank_change -1.0
total_points 1111.0
result 1
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1195, dtype: object
date 2019-10-19 00:00:00
team Rwanda
score 1.0
suf_score 1.0
rank 130.0
rank_suf 151.0
rank_change -3.0
total_points 1104.0
result 2
rank_dif -21.0
points_by_rank 0.006623
team_points 1
country_classification Classe C
Name: 1196, dtype: object
date 2019-10-19 00:00:00
team Uganda
score 3.0
suf_score 0.0
rank 80.0
rank_suf 144.0
rank_change 0.0
total_points 1305.0
result 0
rank_dif -64.0
points_by_rank 0.020833
team_points 3
country_classification Classe B
Name: 1197, dtype: object
date 2019-10-19 00:00:00
team Morocco
score 3.0
suf_score 0.0
rank 39.0
rank_suf 38.0
rank_change -2.0
total_points 1463.0
result 0
rank_dif 1.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 1198, dtype: object
date 2019-10-19 00:00:00
team Namibia
score 2.0
suf_score 0.0
rank 120.0
rank_suf 95.0
rank_change -1.0
total_points 1162.0
result 0
rank_dif 25.0
points_by_rank 0.031579
team_points 3
country_classification Classe C
Name: 1199, dtype: object
date 2019-10-19 00:00:00
team Zambia
score 2.0
suf_score 2.0
rank 81.0
rank_suf 150.0
rank_change 0.0
total_points 1299.0
result 2
rank_dif -69.0
points_by_rank 0.006667
team_points 1
country_classification Classe B
Name: 1200, dtype: object
date 2019-10-19 00:00:00
team Nigeria
score 2.0
suf_score 0.0
rank 34.0
rank_suf 124.0
rank_change 1.0
total_points 1482.0
result 0
rank_dif -90.0
points_by_rank 0.024194
team_points 3
country_classification Classe A
Name: 1201, dtype: object
date 2019-10-20 00:00:00
team Congo
score 1.0
suf_score 0.0
rank 90.0
rank_suf 134.0
rank_change -1.0
total_points 1265.0
result 0
rank_dif -44.0
points_by_rank 0.022388
team_points 3
country_classification Classe B
Name: 1202, dtype: object
date 2019-10-20 00:00:00
team Libya
score 1.0
suf_score 2.0
rank 102.0
rank_suf 29.0
rank_change -3.0
total_points 1212.0
result 1
rank_dif 73.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1203, dtype: object
date 2019-10-20 00:00:00
team Lesotho
score 0.0
suf_score 0.0
rank 137.0
rank_suf 118.0
rank_change -7.0
total_points 1078.0
result 2
rank_dif 19.0
points_by_rank 0.008475
team_points 1
country_classification Classe C
Name: 1204, dtype: object
date 2019-10-20 00:00:00
team Guinea
score 1.0
suf_score 0.0
rank 74.0
rank_suf 20.0
rank_change -1.0
total_points 1325.0
result 0
rank_dif 54.0
points_by_rank 0.15
team_points 3
country_classification Classe B
Name: 1205, dtype: object
date 2019-10-20 00:00:00
team Mali
score 2.0
suf_score 0.0
rank 57.0
rank_suf 105.0
rank_change -2.0
total_points 1391.0
result 0
rank_dif -48.0
points_by_rank 0.028571
team_points 3
country_classification Classe B
Name: 1206, dtype: object
date 2019-10-20 00:00:00
team Burkina Faso
score 0.0
suf_score 0.0
rank 61.0
rank_suf 51.0
rank_change 0.0
total_points 1381.0
result 2
rank_dif 10.0
points_by_rank 0.019608
team_points 1
country_classification Classe B
Name: 1207, dtype: object
date 2019-11-07 00:00:00
team Egypt
score 1.0
suf_score 0.0
rank 49.0
rank_suf 152.0
rank_change 0.0
total_points 1433.0
result 0
rank_dif -103.0
points_by_rank 0.019737
team_points 3
country_classification Classe A
Name: 1208, dtype: object
date 2019-11-07 00:00:00
team Nicaragua
score 0.0
suf_score 0.0
rank 137.0
rank_suf 179.0
rank_change -11.0
total_points 1077.0
result 2
rank_dif -42.0
points_by_rank 0.005587
team_points 1
country_classification Classe C
Name: 1209, dtype: object
date 2019-11-09 00:00:00
team Malaysia
score 1.0
suf_score 0.0
rank 158.0
rank_suf 116.0
rank_change 0.0
total_points 1009.0
result 0
rank_dif 42.0
points_by_rank 0.025862
team_points 3
country_classification Classe C
Name: 1210, dtype: object
date 2019-11-09 00:00:00
team Namibia
score 0.0
suf_score 2.0
rank 119.0
rank_suf 81.0
rank_change -1.0
total_points 1163.0
result 1
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1211, dtype: object
date 2019-11-10 00:00:00
team Nicaragua
score 0.0
suf_score 1.0
rank 137.0
rank_suf 179.0
rank_change -11.0
total_points 1077.0
result 1
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1212, dtype: object
date 2019-11-10 00:00:00
team Trinidad and Tobago
score 15.0
suf_score 0.0
rank 102.0
rank_suf 209.0
rank_change 2.0
total_points 1213.0
result 0
rank_dif -107.0
points_by_rank 0.014354
team_points 3
country_classification Classe B
Name: 1213, dtype: object
date 2019-11-13 00:00:00
team Namibia
score 2.0
suf_score 1.0
rank 119.0
rank_suf 176.0
rank_change -1.0
total_points 1163.0
result 0
rank_dif -57.0
points_by_rank 0.017045
team_points 3
country_classification Classe C
Name: 1214, dtype: object
date 2019-11-13 00:00:00
team Malawi
score 1.0
suf_score 0.0
rank 124.0
rank_suf 162.0
rank_change 0.0
total_points 1140.0
result 0
rank_dif -38.0
points_by_rank 0.018519
team_points 3
country_classification Classe C
Name: 1215, dtype: object
date 2019-11-13 00:00:00
team Burkina Faso
score 0.0
suf_score 0.0
rank 60.0
rank_suf 79.0
rank_change -1.0
total_points 1378.0
result 2
rank_dif -19.0
points_by_rank 0.012658
team_points 1
country_classification Classe B
Name: 1216, dtype: object
date 2019-11-13 00:00:00
team Angola
score 1.0
suf_score 3.0
rank 120.0
rank_suf 166.0
rank_change -1.0
total_points 1161.0
result 1
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1217, dtype: object
date 2019-11-13 00:00:00
team Central African Republic
score 2.0
suf_score 0.0
rank 112.0
rank_suf 143.0
rank_change 1.0
total_points 1186.0
result 0
rank_dif -31.0
points_by_rank 0.020979
team_points 3
country_classification Classe C
Name: 1218, dtype: object
date 2019-11-13 00:00:00
team Guinea-Bissau
score 3.0
suf_score 0.0
rank 123.0
rank_suf 147.0
rank_change 0.0
total_points 1155.0
result 0
rank_dif -24.0
points_by_rank 0.020408
team_points 3
country_classification Classe C
Name: 1219, dtype: object
date 2019-11-13 00:00:00
team Senegal
score 2.0
suf_score 0.0
rank 20.0
rank_suf 92.0
rank_change 0.0
total_points 1546.0
result 0
rank_dif -72.0
points_by_rank 0.032609
team_points 3
country_classification Classe A
Name: 1220, dtype: object
date 2019-11-13 00:00:00
team Nigeria
score 2.0
suf_score 1.0
rank 35.0
rank_suf 82.0
rank_change 1.0
total_points 1481.0
result 0
rank_dif -47.0
points_by_rank 0.036585
team_points 3
country_classification Classe A
Name: 1221, dtype: object
date 2019-11-13 00:00:00
team Sierra Leone
score 1.0
suf_score 1.0
rank 117.0
rank_suf 138.0
rank_change 0.0
total_points 1167.0
result 2
rank_dif -21.0
points_by_rank 0.007246
team_points 1
country_classification Classe C
Name: 1222, dtype: object
date 2019-11-14 00:00:00
team Mali
score 2.0
suf_score 2.0
rank 59.0
rank_suf 78.0
rank_change 2.0
total_points 1386.0
result 2
rank_dif -19.0
points_by_rank 0.012821
team_points 1
country_classification Classe B
Name: 1223, dtype: object
date 2019-11-14 00:00:00
team Ghana
score 2.0
suf_score 0.0
rank 51.0
rank_suf 72.0
rank_change 0.0
total_points 1426.0
result 0
rank_dif -21.0
points_by_rank 0.041667
team_points 3
country_classification Classe A
Name: 1224, dtype: object
date 2019-11-14 00:00:00
team Mozambique
score 2.0
suf_score 0.0
rank 112.0
rank_suf 129.0
rank_change 0.0
total_points 1186.0
result 0
rank_dif -17.0
points_by_rank 0.023256
team_points 3
country_classification Classe C
Name: 1225, dtype: object
date 2019-11-14 00:00:00
team Egypt
score 1.0
suf_score 1.0
rank 49.0
rank_suf 108.0
rank_change 0.0
total_points 1433.0
result 2
rank_dif -59.0
points_by_rank 0.009259
team_points 1
country_classification Classe A
Name: 1226, dtype: object
date 2019-11-14 00:00:00
team Togo
score 0.0
suf_score 1.0
rank 124.0
rank_suf 142.0
rank_change 0.0
total_points 1140.0
result 1
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1227, dtype: object
date 2019-11-14 00:00:00
team Algeria
score 5.0
suf_score 0.0
rank 38.0
rank_suf 81.0
rank_change 0.0
total_points 1469.0
result 0
rank_dif -43.0
points_by_rank 0.037037
team_points 3
country_classification Classe A
Name: 1228, dtype: object
date 2019-11-14 00:00:00
team England
score 7.0
suf_score 0.0
rank 4.0
rank_suf 61.0
rank_change 0.0
total_points 1651.0
result 0
rank_dif -57.0
points_by_rank 0.04918
team_points 3
country_classification Classe S-
Name: 1229, dtype: object
date 2019-11-14 00:00:00
team Czech Republic
score 2.0
suf_score 1.0
rank 43.0
rank_suf 114.0
rank_change -1.0
total_points 1454.0
result 0
rank_dif -71.0
points_by_rank 0.026316
team_points 3
country_classification Classe A
Name: 1230, dtype: object
date 2019-11-14 00:00:00
team Portugal
score 6.0
suf_score 0.0
rank 6.0
rank_suf 132.0
rank_change 1.0
total_points 1632.0
result 0
rank_dif -126.0
points_by_rank 0.022727
team_points 3
country_classification Classe S-
Name: 1231, dtype: object
date 2019-11-14 00:00:00
team Serbia
score 3.0
suf_score 2.0
rank 33.0
rank_suf 96.0
rank_change -2.0
total_points 1485.0
result 0
rank_dif -63.0
points_by_rank 0.03125
team_points 3
country_classification Classe A
Name: 1232, dtype: object
date 2019-11-14 00:00:00
team Turkey
score 0.0
suf_score 0.0
rank 32.0
rank_suf 40.0
rank_change -4.0
total_points 1490.0
result 2
rank_dif -8.0
points_by_rank 0.025
team_points 1
country_classification Classe A
Name: 1233, dtype: object
date 2019-11-14 00:00:00
team Albania
score 2.0
suf_score 2.0
rank 65.0
rank_suf 136.0
rank_change 1.0
total_points 1367.0
result 2
rank_dif -71.0
points_by_rank 0.007353
team_points 1
country_classification Classe B
Name: 1234, dtype: object
date 2019-11-14 00:00:00
team France
score 2.0
suf_score 1.0
rank 2.0
rank_suf 175.0
rank_change 0.0
total_points 1726.0
result 0
rank_dif -173.0
points_by_rank 0.017143
team_points 3
country_classification Classe S
Name: 1235, dtype: object
date 2019-11-14 00:00:00
team Curaçao
score 1.0
suf_score 2.0
rank 100.0
rank_suf 47.0
rank_change 0.0
total_points 1450.0
result 1
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1236, dtype: object
date 2019-11-14 00:00:00
team Bahamas
score 3.0
suf_score 0.0
rank 201.0
rank_suf 208.0
rank_change -7.0
total_points 867.0
result 0
rank_dif -7.0
points_by_rank 0.014423
team_points 3
country_classification Classe D
Name: 1237, dtype: object
date 2019-11-14 00:00:00
team Bulgaria
score 0.0
suf_score 1.0
rank 61.0
rank_suf 41.0
rank_change -1.0
total_points 1371.0
result 1
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1238, dtype: object
date 2019-11-14 00:00:00
team Cambodia
score 1.0
suf_score 1.0
rank 172.0
rank_suf 186.0
rank_change 3.0
total_points 974.0
result 2
rank_dif -14.0
points_by_rank 0.005376
team_points 1
country_classification Classe D
Name: 1239, dtype: object
date 2019-11-14 00:00:00
team Ecuador
score 3.0
suf_score 0.0
rank 63.0
rank_suf 102.0
rank_change -2.0
total_points 1368.0
result 0
rank_dif -39.0
points_by_rank 0.029412
team_points 3
country_classification Classe B
Name: 1240, dtype: object
date 2019-11-14 00:00:00
team Qatar
score 2.0
suf_score 0.0
rank 57.0
rank_suf 159.0
rank_change -5.0
total_points 1391.0
result 0
rank_dif -102.0
points_by_rank 0.018868
team_points 3
country_classification Classe B
Name: 1241, dtype: object
date 2019-11-14 00:00:00
team Republic of Ireland
score 3.0
suf_score 1.0
rank 36.0
rank_suf 121.0
rank_change 8.0
total_points 1480.0
result 0
rank_dif -85.0
points_by_rank 0.024793
team_points 3
country_classification Classe A
Name: 1242, dtype: object
date 2019-11-14 00:00:00
team Ukraine
score 1.0
suf_score 0.0
rank 22.0
rank_suf 104.0
rank_change -3.0
total_points 1536.0
result 0
rank_dif -82.0
points_by_rank 0.028846
team_points 3
country_classification Classe A
Name: 1243, dtype: object
date 2019-11-14 00:00:00
team Maldives
score 1.0
suf_score 2.0
rank 154.0
rank_suf 126.0
rank_change 1.0
total_points 1039.0
result 1
rank_dif 28.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1244, dtype: object
date 2019-11-14 00:00:00
team Syria
score 2.0
suf_score 1.0
rank 83.0
rank_suf 69.0
rank_change -2.0
total_points 1292.0
result 0
rank_dif 14.0
points_by_rank 0.043478
team_points 3
country_classification Classe B
Name: 1245, dtype: object
date 2019-11-14 00:00:00
team Jordan
score 0.0
suf_score 1.0
rank 98.0
rank_suf 44.0
rank_change 0.0
total_points 1236.0
result 1
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1246, dtype: object
date 2019-11-14 00:00:00
team Iraq
score 2.0
suf_score 1.0
rank 74.0
rank_suf 27.0
rank_change -5.0
total_points 1327.0
result 0
rank_dif 47.0
points_by_rank 0.111111
team_points 3
country_classification Classe B
Name: 1247, dtype: object
date 2019-11-14 00:00:00
team Hong Kong
score 0.0
suf_score 0.0
rank 145.0
rank_suf 101.0
rank_change 2.0
total_points 1061.0
result 2
rank_dif 44.0
points_by_rank 0.009901
team_points 1
country_classification Classe C
Name: 1248, dtype: object
date 2019-11-14 00:00:00
team Uzbekistan
score 2.0
suf_score 3.0
rank 85.0
rank_suf 69.0
rank_change -3.0
total_points 1287.0
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1249, dtype: object
date 2019-11-14 00:00:00
team Yemen
score 1.0
suf_score 0.0
rank 141.0
rank_suf 99.0
rank_change 4.0
total_points 1070.0
result 0
rank_dif 42.0
points_by_rank 0.030303
team_points 3
country_classification Classe C
Name: 1250, dtype: object
date 2019-11-14 00:00:00
team Afghanistan
score 1.0
suf_score 1.0
rank 149.0
rank_suf 106.0
rank_change 3.0
total_points 1054.0
result 2
rank_dif 43.0
points_by_rank 0.009434
team_points 1
country_classification Classe C
Name: 1251, dtype: object
date 2019-11-14 00:00:00
team Oman
score 4.0
suf_score 1.0
rank 84.0
rank_suf 184.0
rank_change 0.0
total_points 1289.0
result 0
rank_dif -100.0
points_by_rank 0.016304
team_points 3
country_classification Classe B
Name: 1252, dtype: object
date 2019-11-14 00:00:00
team Myanmar
score 4.0
suf_score 3.0
rank 147.0
rank_suf 116.0
rank_change 2.0
total_points 1055.0
result 0
rank_dif 31.0
points_by_rank 0.025862
team_points 3
country_classification Classe C
Name: 1253, dtype: object
date 2019-11-14 00:00:00
team Vietnam
score 1.0
suf_score 0.0
rank 97.0
rank_suf 67.0
rank_change -2.0
total_points 1245.0
result 0
rank_dif 30.0
points_by_rank 0.044776
team_points 3
country_classification Classe B
Name: 1254, dtype: object
date 2019-11-14 00:00:00
team Malaysia
score 2.0
suf_score 1.0
rank 158.0
rank_suf 109.0
rank_change 0.0
total_points 1009.0
result 0
rank_dif 49.0
points_by_rank 0.027523
team_points 3
country_classification Classe C
Name: 1255, dtype: object
date 2019-11-14 00:00:00
team Lebanon
score 0.0
suf_score 0.0
rank 91.0
rank_suf 39.0
rank_change -3.0
total_points 1266.0
result 2
rank_dif 52.0
points_by_rank 0.025641
team_points 1
country_classification Classe B
Name: 1256, dtype: object
date 2019-11-15 00:00:00
team Morocco
score 0.0
suf_score 0.0
rank 42.0
rank_suf 105.0
rank_change 3.0
total_points 1457.0
result 2
rank_dif -63.0
points_by_rank 0.009524
team_points 1
country_classification Classe A
Name: 1257, dtype: object
date 2019-11-15 00:00:00
team Zimbabwe
score 0.0
suf_score 0.0
rank 117.0
rank_suf 146.0
rank_change -1.0
total_points 1167.0
result 2
rank_dif -29.0
points_by_rank 0.006849
team_points 1
country_classification Classe C
Name: 1258, dtype: object
date 2019-11-15 00:00:00
team Tanzania
score 2.0
suf_score 1.0
rank 133.0
rank_suf 135.0
rank_change -2.0
total_points 1084.0
result 0
rank_dif -2.0
points_by_rank 0.022222
team_points 3
country_classification Classe C
Name: 1259, dtype: object
date 2019-11-15 00:00:00
team Tunisia
score 4.0
suf_score 1.0
rank 29.0
rank_suf 103.0
rank_change 0.0
total_points 1495.0
result 0
rank_dif -74.0
points_by_rank 0.029126
team_points 3
country_classification Classe A
Name: 1260, dtype: object
date 2019-11-15 00:00:00
team Denmark
score 6.0
suf_score 0.0
rank 14.0
rank_suf 196.0
rank_change 0.0
total_points 1599.0
result 0
rank_dif -182.0
points_by_rank 0.015306
team_points 3
country_classification Classe A
Name: 1261, dtype: object
date 2019-11-15 00:00:00
team Switzerland
score 1.0
suf_score 0.0
rank 13.0
rank_suf 90.0
rank_change 2.0
total_points 1601.0
result 0
rank_dif -77.0
points_by_rank 0.033333
team_points 3
country_classification Classe S-
Name: 1262, dtype: object
date 2019-11-15 00:00:00
team Norway
score 4.0
suf_score 0.0
rank 45.0
rank_suf 110.0
rank_change -2.0
total_points 1441.0
result 0
rank_dif -65.0
points_by_rank 0.027273
team_points 3
country_classification Classe A
Name: 1263, dtype: object
date 2019-11-15 00:00:00
team Spain
score 7.0
suf_score 0.0
rank 8.0
rank_suf 182.0
rank_change 1.0
total_points 1625.0
result 0
rank_dif -174.0
points_by_rank 0.016484
team_points 3
country_classification Classe S-
Name: 1264, dtype: object
date 2019-11-15 00:00:00
team Romania
score 0.0
suf_score 2.0
rank 29.0
rank_suf 18.0
rank_change -2.0
total_points 1495.0
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1265, dtype: object
date 2019-11-15 00:00:00
team Finland
score 3.0
suf_score 0.0
rank 55.0
rank_suf 181.0
rank_change 1.0
total_points 1395.0
result 0
rank_dif -126.0
points_by_rank 0.016575
team_points 3
country_classification Classe B
Name: 1266, dtype: object
date 2019-11-15 00:00:00
team Brazil
score 0.0
suf_score 1.0
rank 3.0
rank_suf 9.0
rank_change 0.0
total_points 1715.0
result 1
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 1267, dtype: object
date 2019-11-15 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 3.0
rank 48.0
rank_suf 15.0
rank_change 2.0
total_points 1435.0
result 1
rank_dif 33.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1268, dtype: object
date 2019-11-15 00:00:00
team Armenia
score 0.0
suf_score 1.0
rank 99.0
rank_suf 58.0
rank_change 3.0
total_points 1226.0
result 1
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1269, dtype: object
date 2019-11-15 00:00:00
team United States
score 4.0
suf_score 1.0
rank 23.0
rank_suf 69.0
rank_change 2.0
total_points 1530.0
result 0
rank_dif -46.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 1270, dtype: object
date 2019-11-15 00:00:00
team Panama
score 0.0
suf_score 3.0
rank 80.0
rank_suf 11.0
rank_change 3.0
total_points 1310.0
result 1
rank_dif 69.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1271, dtype: object
date 2019-11-15 00:00:00
team Antigua and Barbuda
score 0.0
suf_score 2.0
rank 127.0
rank_suf 45.0
rank_change 1.0
total_points 1129.0
result 1
rank_dif 82.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1272, dtype: object
date 2019-11-15 00:00:00
team Guyana
score 4.0
suf_score 2.0
rank 174.0
rank_suf 195.0
rank_change -2.0
total_points 969.0
result 0
rank_dif -21.0
points_by_rank 0.015385
team_points 3
country_classification Classe D
Name: 1273, dtype: object
date 2019-11-15 00:00:00
team Suriname
score 4.0
suf_score 0.0
rank 150.0
rank_suf 187.0
rank_change 8.0
total_points 1052.0
result 0
rank_dif -37.0
points_by_rank 0.016043
team_points 3
country_classification Classe C
Name: 1274, dtype: object
date 2019-11-15 00:00:00
team Colombia
score 1.0
suf_score 0.0
rank 10.0
rank_suf 19.0
rank_change 1.0
total_points 1615.0
result 0
rank_dif -9.0
points_by_rank 0.157895
team_points 3
country_classification Classe S-
Name: 1275, dtype: object
date 2019-11-15 00:00:00
team Hungary
score 1.0
suf_score 2.0
rank 50.0
rank_suf 5.0
rank_change 0.0
total_points 1429.0
result 1
rank_dif 45.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1276, dtype: object
date 2019-11-16 00:00:00
team Madagascar
score 1.0
suf_score 0.0
rank 95.0
rank_suf 151.0
rank_change 0.0
total_points 1249.0
result 0
rank_dif -56.0
points_by_rank 0.019868
team_points 3
country_classification Classe B
Name: 1277, dtype: object
date 2019-11-16 00:00:00
team Northern Ireland
score 0.0
suf_score 0.0
rank 34.0
rank_suf 12.0
rank_change 1.0
total_points 1483.0
result 2
rank_dif 22.0
points_by_rank 0.083333
team_points 1
country_classification Classe A
Name: 1278, dtype: object
date 2019-11-16 00:00:00
team Germany
score 4.0
suf_score 0.0
rank 16.0
rank_suf 86.0
rank_change 0.0
total_points 1586.0
result 0
rank_dif -70.0
points_by_rank 0.034884
team_points 3
country_classification Classe A
Name: 1279, dtype: object
date 2019-11-16 00:00:00
team Croatia
score 3.0
suf_score 1.0
rank 7.0
rank_suf 31.0
rank_change -1.0
total_points 1631.0
result 0
rank_dif -24.0
points_by_rank 0.096774
team_points 3
country_classification Classe S-
Name: 1280, dtype: object
date 2019-11-16 00:00:00
team Azerbaijan
score 0.0
suf_score 2.0
rank 111.0
rank_suf 24.0
rank_change 2.0
total_points 1189.0
result 1
rank_dif 87.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1281, dtype: object
date 2019-11-16 00:00:00
team Slovenia
score 1.0
suf_score 0.0
rank 65.0
rank_suf 143.0
rank_change 7.0
total_points 1367.0
result 0
rank_dif -78.0
points_by_rank 0.020979
team_points 3
country_classification Classe B
Name: 1282, dtype: object
date 2019-11-16 00:00:00
team Austria
score 2.0
suf_score 1.0
rank 25.0
rank_suf 68.0
rank_change -2.0
total_points 1520.0
result 0
rank_dif -43.0
points_by_rank 0.044118
team_points 3
country_classification Classe A
Name: 1283, dtype: object
date 2019-11-16 00:00:00
team Israel
score 1.0
suf_score 2.0
rank 89.0
rank_suf 21.0
rank_change 3.0
total_points 1278.0
result 1
rank_dif 68.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1284, dtype: object
date 2019-11-16 00:00:00
team Cyprus
score 1.0
suf_score 2.0
rank 93.0
rank_suf 53.0
rank_change 1.0
total_points 1263.0
result 1
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1285, dtype: object
date 2019-11-16 00:00:00
team San Marino
score 1.0
suf_score 3.0
rank 209.0
rank_suf 121.0
rank_change -1.0
total_points 831.0
result 1
rank_dif 88.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1286, dtype: object
date 2019-11-16 00:00:00
team Russia
score 1.0
suf_score 4.0
rank 37.0
rank_suf 1.0
rank_change -5.0
total_points 1474.0
result 1
rank_dif 36.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1287, dtype: object
date 2019-11-16 00:00:00
team El Salvador
score 1.0
suf_score 0.0
rank 73.0
rank_suf 189.0
rank_change 1.0
total_points 1336.0
result 0
rank_dif -116.0
points_by_rank 0.015873
team_points 3
country_classification Classe B
Name: 1288, dtype: object
date 2019-11-16 00:00:00
team Guatemala
score 5.0
suf_score 0.0
rank 131.0
rank_suf 178.0
rank_change -2.0
total_points 1094.0
result 0
rank_dif -47.0
points_by_rank 0.016854
team_points 3
country_classification Classe C
Name: 1289, dtype: object
date 2019-11-17 00:00:00
team Chad
score 0.0
suf_score 2.0
rank 176.0
rank_suf 59.0
rank_change -1.0
total_points 955.0
result 1
rank_dif 117.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1290, dtype: object
date 2019-11-17 00:00:00
team Guinea
score 2.0
suf_score 0.0
rank 78.0
rank_suf 119.0
rank_change 4.0
total_points 1317.0
result 0
rank_dif -41.0
points_by_rank 0.02521
team_points 3
country_classification Classe B
Name: 1291, dtype: object
date 2019-11-17 00:00:00
team South Sudan
score 1.0
suf_score 2.0
rank 162.0
rank_suf 60.0
rank_change -11.0
total_points 997.0
result 1
rank_dif 102.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1292, dtype: object
date 2019-11-17 00:00:00
team Uganda
score 2.0
suf_score 0.0
rank 79.0
rank_suf 124.0
rank_change -1.0
total_points 1311.0
result 0
rank_dif -45.0
points_by_rank 0.024194
team_points 3
country_classification Classe B
Name: 1293, dtype: object
date 2019-11-17 00:00:00
team South Africa
score 1.0
suf_score 0.0
rank 72.0
rank_suf 128.0
rank_change 1.0
total_points 1337.0
result 0
rank_dif -56.0
points_by_rank 0.023438
team_points 3
country_classification Classe B
Name: 1294, dtype: object
date 2019-11-17 00:00:00
team Gabon
score 2.0
suf_score 1.0
rank 87.0
rank_suf 120.0
rank_change -1.0
total_points 1285.0
result 0
rank_dif -33.0
points_by_rank 0.025
team_points 3
country_classification Classe B
Name: 1295, dtype: object
date 2019-11-17 00:00:00
team Rwanda
score 0.0
suf_score 1.0
rank 129.0
rank_suf 52.0
rank_change -1.0
total_points 1106.0
result 1
rank_dif 77.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1296, dtype: object
date 2019-11-17 00:00:00
team Congo
score 3.0
suf_score 0.0
rank 92.0
rank_suf 123.0
rank_change 2.0
total_points 1265.0
result 0
rank_dif -31.0
points_by_rank 0.02439
team_points 3
country_classification Classe B
Name: 1297, dtype: object
date 2019-11-17 00:00:00
team Eswatini
score 1.0
suf_score 4.0
rank 147.0
rank_suf 20.0
rank_change -3.0
total_points 1055.0
result 1
rank_dif 127.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1298, dtype: object
date 2019-11-17 00:00:00
team Benin
score 1.0
suf_score 0.0
rank 82.0
rank_suf 117.0
rank_change -1.0
total_points 1293.0
result 0
rank_dif -35.0
points_by_rank 0.025641
team_points 3
country_classification Classe B
Name: 1299, dtype: object
date 2019-11-17 00:00:00
team Lesotho
score 2.0
suf_score 4.0
rank 138.0
rank_suf 35.0
rank_change 1.0
total_points 1076.0
result 1
rank_dif 103.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1300, dtype: object
date 2019-11-17 00:00:00
team Kosovo
score 0.0
suf_score 4.0
rank 114.0
rank_suf 4.0
rank_change -5.0
total_points 1184.0
result 1
rank_dif 110.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1301, dtype: object
date 2019-11-17 00:00:00
team Bulgaria
score 1.0
suf_score 0.0
rank 61.0
rank_suf 43.0
rank_change -1.0
total_points 1371.0
result 0
rank_dif 18.0
points_by_rank 0.069767
team_points 3
country_classification Classe B
Name: 1302, dtype: object
date 2019-11-17 00:00:00
team Luxembourg
score 0.0
suf_score 2.0
rank 96.0
rank_suf 6.0
rank_change 3.0
total_points 1248.0
result 1
rank_dif 90.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1303, dtype: object
date 2019-11-17 00:00:00
team Serbia
score 2.0
suf_score 2.0
rank 33.0
rank_suf 22.0
rank_change -2.0
total_points 1485.0
result 2
rank_dif 11.0
points_by_rank 0.045455
team_points 1
country_classification Classe A
Name: 1304, dtype: object
date 2019-11-17 00:00:00
team Albania
score 0.0
suf_score 2.0
rank 65.0
rank_suf 2.0
rank_change 1.0
total_points 1367.0
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1305, dtype: object
date 2019-11-17 00:00:00
team Andorra
score 0.0
suf_score 2.0
rank 136.0
rank_suf 32.0
rank_change -3.0
total_points 1080.0
result 1
rank_dif 104.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1306, dtype: object
date 2019-11-17 00:00:00
team Moldova
score 1.0
suf_score 2.0
rank 175.0
rank_suf 40.0
rank_change 3.0
total_points 963.0
result 1
rank_dif 135.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1307, dtype: object
date 2019-11-17 00:00:00
team Honduras
score 4.0
suf_score 0.0
rank 63.0
rank_suf 102.0
rank_change -4.0
total_points 1368.0
result 0
rank_dif -39.0
points_by_rank 0.029412
team_points 3
country_classification Classe B
Name: 1308, dtype: object
date 2019-11-17 00:00:00
team Costa Rica
score 1.0
suf_score 1.0
rank 47.0
rank_suf 88.0
rank_change 4.0
total_points 1436.0
result 2
rank_dif -41.0
points_by_rank 0.011364
team_points 1
country_classification Classe A
Name: 1309, dtype: object
date 2019-11-17 00:00:00
team Grenada
score 3.0
suf_score 2.0
rank 160.0
rank_suf 168.0
rank_change 0.0
total_points 1001.0
result 0
rank_dif -8.0
points_by_rank 0.017857
team_points 3
country_classification Classe C
Name: 1310, dtype: object
date 2019-11-17 00:00:00
team Lithuania
score 1.0
suf_score 0.0
rank 132.0
rank_suf 121.0
rank_change 1.0
total_points 1086.0
result 0
rank_dif 11.0
points_by_rank 0.024793
team_points 3
country_classification Classe C
Name: 1311, dtype: object
date 2019-11-18 00:00:00
team Comoros
score 0.0
suf_score 0.0
rank 142.0
rank_suf 49.0
rank_change -5.0
total_points 1067.0
result 2
rank_dif 93.0
points_by_rank 0.020408
team_points 1
country_classification Classe C
Name: 1312, dtype: object
date 2019-11-18 00:00:00
team Kenya
score 1.0
suf_score 1.0
rank 108.0
rank_suf 124.0
rank_change 1.0
total_points 1195.0
result 2
rank_dif -16.0
points_by_rank 0.008065
team_points 1
country_classification Classe C
Name: 1313, dtype: object
date 2019-11-18 00:00:00
team Botswana
score 0.0
suf_score 1.0
rank 146.0
rank_suf 38.0
rank_change -2.0
total_points 1057.0
result 1
rank_dif 108.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1314, dtype: object
date 2019-11-18 00:00:00
team Niger
score 2.0
suf_score 6.0
rank 107.0
rank_suf 95.0
rank_change 0.0
total_points 1198.0
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1315, dtype: object
date 2019-11-18 00:00:00
team Republic of Ireland
score 1.0
suf_score 1.0
rank 36.0
rank_suf 14.0
rank_change 8.0
total_points 1480.0
result 2
rank_dif 22.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 1316, dtype: object
date 2019-11-18 00:00:00
team Gibraltar
score 1.0
suf_score 6.0
rank 196.0
rank_suf 13.0
rank_change -1.0
total_points 882.0
result 1
rank_dif 183.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1317, dtype: object
date 2019-11-18 00:00:00
team Malta
score 1.0
suf_score 2.0
rank 182.0
rank_suf 45.0
rank_change 3.0
total_points 924.0
result 1
rank_dif 137.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1318, dtype: object
date 2019-11-18 00:00:00
team Spain
score 5.0
suf_score 0.0
rank 8.0
rank_suf 29.0
rank_change 1.0
total_points 1625.0
result 0
rank_dif -21.0
points_by_rank 0.103448
team_points 3
country_classification Classe S-
Name: 1319, dtype: object
date 2019-11-18 00:00:00
team Sweden
score 3.0
suf_score 0.0
rank 18.0
rank_suf 110.0
rank_change 0.0
total_points 1563.0
result 0
rank_dif -92.0
points_by_rank 0.027273
team_points 3
country_classification Classe A
Name: 1320, dtype: object
date 2019-11-18 00:00:00
team Italy
score 9.0
suf_score 1.0
rank 15.0
rank_suf 99.0
rank_change 0.0
total_points 1593.0
result 0
rank_dif -84.0
points_by_rank 0.030303
team_points 3
country_classification Classe A
Name: 1321, dtype: object
date 2019-11-18 00:00:00
team Liechtenstein
score 0.0
suf_score 3.0
rank 181.0
rank_suf 48.0
rank_change -1.0
total_points 933.0
result 1
rank_dif 133.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1322, dtype: object
date 2019-11-18 00:00:00
team Greece
score 2.0
suf_score 1.0
rank 58.0
rank_suf 55.0
rank_change -2.0
total_points 1388.0
result 0
rank_dif 3.0
points_by_rank 0.054545
team_points 3
country_classification Classe B
Name: 1323, dtype: object
date 2019-11-18 00:00:00
team Jamaica
score 1.0
suf_score 1.0
rank 45.0
rank_suf 174.0
rank_change -2.0
total_points 1441.0
result 2
rank_dif -129.0
points_by_rank 0.005747
team_points 1
country_classification Classe A
Name: 1324, dtype: object
date 2019-11-18 00:00:00
team Aruba
score 2.0
suf_score 3.0
rank 195.0
rank_suf 127.0
rank_change 0.0
total_points 885.0
result 1
rank_dif 68.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1325, dtype: object
date 2019-11-18 00:00:00
team Nicaragua
score 1.0
suf_score 2.0
rank 137.0
rank_suf 150.0
rank_change -11.0
total_points 1077.0
result 1
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1326, dtype: object
date 2019-11-18 00:00:00
team Argentina
score 2.0
suf_score 2.0
rank 9.0
rank_suf 5.0
rank_change -1.0
total_points 1617.0
result 2
rank_dif 4.0
points_by_rank 0.2
team_points 1
country_classification Classe S-
Name: 1327, dtype: object
date 2019-11-19 00:00:00
team Burundi
score 0.0
suf_score 3.0
rank 143.0
rank_suf 42.0
rank_change -1.0
total_points 1063.0
result 1
rank_dif 101.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1328, dtype: object
date 2019-11-19 00:00:00
team Mauritania
score 2.0
suf_score 0.0
rank 105.0
rank_suf 112.0
rank_change 0.0
total_points 1205.0
result 0
rank_dif -7.0
points_by_rank 0.026786
team_points 3
country_classification Classe B
Name: 1329, dtype: object
date 2019-11-19 00:00:00
team Zambia
score 1.0
suf_score 2.0
rank 81.0
rank_suf 117.0
rank_change 0.0
total_points 1299.0
result 1
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1330, dtype: object
date 2019-11-19 00:00:00
team Equatorial Guinea
score 0.0
suf_score 1.0
rank 135.0
rank_suf 29.0
rank_change 1.0
total_points 1083.0
result 1
rank_dif 106.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1331, dtype: object
date 2019-11-19 00:00:00
team Libya
score 2.0
suf_score 1.0
rank 103.0
rank_suf 133.0
rank_change 1.0
total_points 1211.0
result 0
rank_dif -30.0
points_by_rank 0.022556
team_points 3
country_classification Classe B
Name: 1332, dtype: object
date 2019-11-19 00:00:00
team Germany
score 6.0
suf_score 1.0
rank 16.0
rank_suf 34.0
rank_change 0.0
total_points 1586.0
result 0
rank_dif -18.0
points_by_rank 0.088235
team_points 3
country_classification Classe A
Name: 1333, dtype: object
date 2019-11-19 00:00:00
team Netherlands
score 5.0
suf_score 0.0
rank 12.0
rank_suf 104.0
rank_change -1.0
total_points 1602.0
result 0
rank_dif -92.0
points_by_rank 0.028846
team_points 3
country_classification Classe S-
Name: 1334, dtype: object
date 2019-11-19 00:00:00
team Wales
score 2.0
suf_score 0.0
rank 24.0
rank_suf 50.0
rank_change 1.0
total_points 1524.0
result 0
rank_dif -26.0
points_by_rank 0.06
team_points 3
country_classification Classe A
Name: 1335, dtype: object
date 2019-11-19 00:00:00
team Slovakia
score 2.0
suf_score 0.0
rank 31.0
rank_suf 111.0
rank_change 2.0
total_points 1493.0
result 0
rank_dif -80.0
points_by_rank 0.027027
team_points 3
country_classification Classe A
Name: 1336, dtype: object
date 2019-11-19 00:00:00
team North Macedonia
score 1.0
suf_score 0.0
rank 68.0
rank_suf 89.0
rank_change -1.0
total_points 1344.0
result 0
rank_dif -21.0
points_by_rank 0.033708
team_points 3
country_classification Classe B
Name: 1337, dtype: object
date 2019-11-19 00:00:00
team Japan
score 1.0
suf_score 4.0
rank 28.0
rank_suf 26.0
rank_change -3.0
total_points 1498.0
result 1
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1338, dtype: object
date 2019-11-19 00:00:00
team Poland
score 3.0
suf_score 2.0
rank 21.0
rank_suf 65.0
rank_change -1.0
total_points 1544.0
result 0
rank_dif -44.0
points_by_rank 0.046154
team_points 3
country_classification Classe A
Name: 1339, dtype: object
date 2019-11-19 00:00:00
team Latvia
score 1.0
suf_score 0.0
rank 143.0
rank_suf 25.0
rank_change 4.0
total_points 1063.0
result 0
rank_dif 118.0
points_by_rank 0.12
team_points 3
country_classification Classe C
Name: 1340, dtype: object
date 2019-11-19 00:00:00
team Scotland
score 3.0
suf_score 1.0
rank 53.0
rank_suf 121.0
rank_change 1.0
total_points 1406.0
result 0
rank_dif -68.0
points_by_rank 0.024793
team_points 3
country_classification Classe A
Name: 1341, dtype: object
date 2019-11-19 00:00:00
team Belgium
score 6.0
suf_score 1.0
rank 1.0
rank_suf 93.0
rank_change 0.0
total_points 1755.0
result 0
rank_dif -92.0
points_by_rank 0.032258
team_points 3
country_classification Classe S
Name: 1342, dtype: object
date 2019-11-19 00:00:00
team San Marino
score 0.0
suf_score 5.0
rank 209.0
rank_suf 37.0
rank_change -1.0
total_points 831.0
result 1
rank_dif 172.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1343, dtype: object
date 2019-11-19 00:00:00
team Cuba
score 0.0
suf_score 4.0
rank 179.0
rank_suf 23.0
rank_change 1.0
total_points 938.0
result 1
rank_dif 156.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1344, dtype: object
date 2019-11-19 00:00:00
team Mexico
score 2.0
suf_score 1.0
rank 11.0
rank_suf 168.0
rank_change -1.0
total_points 1613.0
result 0
rank_dif -157.0
points_by_rank 0.017857
team_points 3
country_classification Classe S-
Name: 1345, dtype: object
date 2019-11-19 00:00:00
team El Salvador
score 2.0
suf_score 0.0
rank 73.0
rank_suf 153.0
rank_change 1.0
total_points 1336.0
result 0
rank_dif -80.0
points_by_rank 0.019608
team_points 3
country_classification Classe B
Name: 1346, dtype: object
date 2019-11-19 00:00:00
team Barbados
score 3.0
suf_score 0.0
rank 160.0
rank_suf 193.0
rank_change -10.0
total_points 1001.0
result 0
rank_dif -33.0
points_by_rank 0.015544
team_points 3
country_classification Classe C
Name: 1347, dtype: object
date 2019-11-19 00:00:00
team Puerto Rico
score 3.0
suf_score 0.0
rank 178.0
rank_suf 209.0
rank_change -3.0
total_points 940.0
result 0
rank_dif -31.0
points_by_rank 0.014354
team_points 3
country_classification Classe D
Name: 1348, dtype: object
date 2019-11-19 00:00:00
team Brazil
score 3.0
suf_score 0.0
rank 3.0
rank_suf 39.0
rank_change 0.0
total_points 1715.0
result 0
rank_dif -36.0
points_by_rank 0.076923
team_points 3
country_classification Classe S
Name: 1349, dtype: object
date 2019-11-19 00:00:00
team Croatia
score 2.0
suf_score 1.0
rank 7.0
rank_suf 90.0
rank_change -1.0
total_points 1631.0
result 0
rank_dif -83.0
points_by_rank 0.033333
team_points 3
country_classification Classe S-
Name: 1350, dtype: object
date 2019-11-19 00:00:00
team Ecuador
score 0.0
suf_score 1.0
rank 63.0
rank_suf 10.0
rank_change -2.0
total_points 1368.0
result 1
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1351, dtype: object
date 2019-11-19 00:00:00
team Montenegro
score 2.0
suf_score 0.0
rank 61.0
rank_suf 86.0
rank_change 2.0
total_points 1371.0
result 0
rank_dif -25.0
points_by_rank 0.034884
team_points 3
country_classification Classe B
Name: 1352, dtype: object
date 2019-11-19 00:00:00
team Saudi Arabia
score 0.0
suf_score 0.0
rank 69.0
rank_suf 41.0
rank_change -1.0
total_points 1339.0
result 2
rank_dif 28.0
points_by_rank 0.02439
team_points 1
country_classification Classe B
Name: 1353, dtype: object
date 2019-11-19 00:00:00
team Maldives
score 3.0
suf_score 1.0
rank 154.0
rank_suf 196.0
rank_change 1.0
total_points 1039.0
result 0
rank_dif -42.0
points_by_rank 0.015306
team_points 3
country_classification Classe C
Name: 1354, dtype: object
date 2019-11-19 00:00:00
team Syria
score 1.0
suf_score 0.0
rank 83.0
rank_suf 126.0
rank_change -2.0
total_points 1292.0
result 0
rank_dif -43.0
points_by_rank 0.02381
team_points 3
country_classification Classe B
Name: 1355, dtype: object
date 2019-11-19 00:00:00
team Nepal
score 0.0
suf_score 1.0
rank 167.0
rank_suf 156.0
rank_change 6.0
total_points 988.0
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1356, dtype: object
date 2019-11-19 00:00:00
team Iraq
score 0.0
suf_score 0.0
rank 74.0
rank_suf 101.0
rank_change -5.0
total_points 1327.0
result 2
rank_dif -27.0
points_by_rank 0.009901
team_points 1
country_classification Classe B
Name: 1357, dtype: object
date 2019-11-19 00:00:00
team Hong Kong
score 2.0
suf_score 0.0
rank 145.0
rank_suf 172.0
rank_change 2.0
total_points 1061.0
result 0
rank_dif -27.0
points_by_rank 0.017442
team_points 3
country_classification Classe C
Name: 1358, dtype: object
date 2019-11-19 00:00:00
team Uzbekistan
score 2.0
suf_score 0.0
rank 85.0
rank_suf 99.0
rank_change -3.0
total_points 1287.0
result 0
rank_dif -14.0
points_by_rank 0.030303
team_points 3
country_classification Classe B
Name: 1359, dtype: object
date 2019-11-19 00:00:00
team Yemen
score 1.0
suf_score 2.0
rank 141.0
rank_suf 159.0
rank_change 4.0
total_points 1070.0
result 1
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1360, dtype: object
date 2019-11-19 00:00:00
team Afghanistan
score 0.0
suf_score 1.0
rank 149.0
rank_suf 57.0
rank_change 3.0
total_points 1054.0
result 1
rank_dif 92.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1361, dtype: object
date 2019-11-19 00:00:00
team Oman
score 1.0
suf_score 0.0
rank 84.0
rank_suf 106.0
rank_change 0.0
total_points 1289.0
result 0
rank_dif -22.0
points_by_rank 0.028302
team_points 3
country_classification Classe B
Name: 1362, dtype: object
date 2019-11-19 00:00:00
team Myanmar
score 1.0
suf_score 0.0
rank 147.0
rank_suf 186.0
rank_change 2.0
total_points 1055.0
result 0
rank_dif -39.0
points_by_rank 0.016129
team_points 3
country_classification Classe C
Name: 1363, dtype: object
date 2019-11-19 00:00:00
team Vietnam
score 0.0
suf_score 0.0
rank 97.0
rank_suf 109.0
rank_change -2.0
total_points 1245.0
result 2
rank_dif -12.0
points_by_rank 0.009174
team_points 1
country_classification Classe B
Name: 1364, dtype: object
date 2019-11-19 00:00:00
team Malaysia
score 2.0
suf_score 0.0
rank 158.0
rank_suf 171.0
rank_change 0.0
total_points 1009.0
result 0
rank_dif -13.0
points_by_rank 0.017544
team_points 3
country_classification Classe C
Name: 1365, dtype: object
date 2019-11-19 00:00:00
team Turkmenistan
score 2.0
suf_score 0.0
rank 133.0
rank_suf 203.0
rank_change 2.0
total_points 1084.0
result 0
rank_dif -70.0
points_by_rank 0.014778
team_points 3
country_classification Classe C
Name: 1366, dtype: object
date 2019-11-21 00:00:00
team Guatemala
score 8.0
suf_score 0.0
rank 131.0
rank_suf 127.0
rank_change -2.0
total_points 1094.0
result 0
rank_dif 4.0
points_by_rank 0.023622
team_points 3
country_classification Classe C
Name: 1367, dtype: object
date 2019-11-26 00:00:00
team Qatar
score 1.0
suf_score 2.0
rank 57.0
rank_suf 74.0
rank_change -5.0
total_points 1391.0
result 1
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1368, dtype: object
date 2019-11-26 00:00:00
team United Arab Emirates
score 3.0
suf_score 0.0
rank 67.0
rank_suf 141.0
rank_change 1.0
total_points 1353.0
result 0
rank_dif -74.0
points_by_rank 0.021277
team_points 3
country_classification Classe B
Name: 1369, dtype: object
date 2019-11-27 00:00:00
team Oman
score 0.0
suf_score 0.0
rank 84.0
rank_suf 101.0
rank_change 0.0
total_points 1289.0
result 2
rank_dif -17.0
points_by_rank 0.009901
team_points 1
country_classification Classe B
Name: 1370, dtype: object
date 2019-11-27 00:00:00
team Saudi Arabia
score 1.0
suf_score 3.0
rank 69.0
rank_suf 156.0
rank_change -1.0
total_points 1339.0
result 1
rank_dif -87.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1371, dtype: object
date 2019-11-29 00:00:00
team United Arab Emirates
score 0.0
suf_score 2.0
rank 71.0
rank_suf 70.0
rank_change 4.0
total_points 1338.0
result 1
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1372, dtype: object
date 2019-11-29 00:00:00
team Qatar
score 6.0
suf_score 0.0
rank 55.0
rank_suf 144.0
rank_change -2.0
total_points 1398.0
result 0
rank_dif -89.0
points_by_rank 0.020833
team_points 3
country_classification Classe B
Name: 1373, dtype: object
date 2019-11-30 00:00:00
team Kuwait
score 1.0
suf_score 2.0
rank 147.0
rank_suf 81.0
rank_change -9.0
total_points 1059.0
result 1
rank_dif 66.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1374, dtype: object
date 2019-11-30 00:00:00
team Bahrain
score 0.0
suf_score 2.0
rank 100.0
rank_suf 67.0
rank_change -1.0
total_points 1219.0
result 1
rank_dif 33.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1375, dtype: object
date 2019-12-02 00:00:00
team Qatar
score 4.0
suf_score 2.0
rank 55.0
rank_suf 71.0
rank_change -2.0
total_points 1398.0
result 0
rank_dif -16.0
points_by_rank 0.042254
team_points 3
country_classification Classe B
Name: 1376, dtype: object
date 2019-12-02 00:00:00
team Yemen
score 0.0
suf_score 0.0
rank 144.0
rank_suf 70.0
rank_change 3.0
total_points 1072.0
result 2
rank_dif 74.0
points_by_rank 0.014286
team_points 1
country_classification Classe C
Name: 1377, dtype: object
date 2019-12-02 00:00:00
team Kuwait
score 2.0
suf_score 4.0
rank 147.0
rank_suf 100.0
rank_change -9.0
total_points 1059.0
result 1
rank_dif 47.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1378, dtype: object
date 2019-12-02 00:00:00
team Oman
score 1.0
suf_score 3.0
rank 81.0
rank_suf 67.0
rank_change -3.0
total_points 1304.0
result 1
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1379, dtype: object
date 2019-12-05 00:00:00
team Iraq
score 2.0
suf_score 2.0
rank 70.0
rank_suf 100.0
rank_change -4.0
total_points 1340.0
result 2
rank_dif -30.0
points_by_rank 0.01
team_points 1
country_classification Classe B
Name: 1380, dtype: object
date 2019-12-05 00:00:00
team Qatar
score 0.0
suf_score 1.0
rank 55.0
rank_suf 67.0
rank_change -2.0
total_points 1398.0
result 1
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1381, dtype: object
date 2019-12-08 00:00:00
team Bahrain
score 1.0
suf_score 0.0
rank 100.0
rank_suf 67.0
rank_change -1.0
total_points 1219.0
result 0
rank_dif 33.0
points_by_rank 0.044776
team_points 3
country_classification Classe B
Name: 1382, dtype: object
date 2019-12-10 00:00:00
team China PR
score 1.0
suf_score 2.0
rank 75.0
rank_suf 28.0
rank_change 6.0
total_points 1325.0
result 1
rank_dif 47.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1383, dtype: object
date 2019-12-11 00:00:00
team South Korea
score 2.0
suf_score 0.0
rank 41.0
rank_suf 139.0
rank_change 2.0
total_points 1459.0
result 0
rank_dif -98.0
points_by_rank 0.021583
team_points 3
country_classification Classe A
Name: 1384, dtype: object
date 2019-12-14 00:00:00
team Japan
score 5.0
suf_score 0.0
rank 28.0
rank_suf 139.0
rank_change 0.0
total_points 1500.0
result 0
rank_dif -111.0
points_by_rank 0.021583
team_points 3
country_classification Classe A
Name: 1385, dtype: object
date 2019-12-15 00:00:00
team South Korea
score 1.0
suf_score 0.0
rank 41.0
rank_suf 75.0
rank_change 2.0
total_points 1459.0
result 0
rank_dif -34.0
points_by_rank 0.04
team_points 3
country_classification Classe A
Name: 1386, dtype: object
date 2019-12-18 00:00:00
team Hong Kong
score 0.0
suf_score 2.0
rank 139.0
rank_suf 75.0
rank_change -6.0
total_points 1075.0
result 1
rank_dif 64.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1387, dtype: object
date 2019-12-18 00:00:00
team South Korea
score 1.0
suf_score 0.0
rank 41.0
rank_suf 28.0
rank_change 2.0
total_points 1459.0
result 0
rank_dif 13.0
points_by_rank 0.107143
team_points 3
country_classification Classe A
Name: 1388, dtype: object
date 2020-01-07 00:00:00
team Barbados
score 1.0
suf_score 4.0
rank 162.0
rank_suf 73.0
rank_change 0.0
total_points 1011.0
result 1
rank_dif 89.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1389, dtype: object
date 2020-01-09 00:00:00
team Moldova
score 0.0
suf_score 1.0
rank 175.0
rank_suf 17.0
rank_change 0.0
total_points 959.0
result 1
rank_dif 158.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1390, dtype: object
date 2020-01-10 00:00:00
team Barbados
score 1.0
suf_score 4.0
rank 162.0
rank_suf 73.0
rank_change 0.0
total_points 1011.0
result 1
rank_dif 89.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1391, dtype: object
date 2020-01-12 00:00:00
team Kosovo
score 0.0
suf_score 1.0
rank 115.0
rank_suf 17.0
rank_change 0.0
total_points 1174.0
result 1
rank_dif 98.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1392, dtype: object
date 2020-01-15 00:00:00
team Canada
score 0.0
suf_score 1.0
rank 73.0
rank_suf 39.0
rank_change 0.0
total_points 1331.0
result 1
rank_dif 34.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1393, dtype: object
date 2020-01-19 00:00:00
team El Salvador
score 0.0
suf_score 1.0
rank 69.0
rank_suf 39.0
rank_change 0.0
total_points 1346.0
result 1
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1394, dtype: object
date 2020-02-01 00:00:00
team United States
score 1.0
suf_score 0.0
rank 22.0
rank_suf 46.0
rank_change 0.0
total_points 1540.0
result 0
rank_dif -24.0
points_by_rank 0.065217
team_points 3
country_classification Classe A
Name: 1395, dtype: object
date 2020-09-03 00:00:00
team Germany
score 1.0
suf_score 1.0
rank 15.0
rank_suf 8.0
rank_change 0.0
total_points 1602.0
result 2
rank_dif 7.0
points_by_rank 0.125
team_points 1
country_classification Classe S-
Name: 1396, dtype: object
date 2020-09-03 00:00:00
team Ukraine
score 2.0
suf_score 1.0
rank 24.0
rank_suf 12.0
rank_change 0.0
total_points 1537.0
result 0
rank_dif 12.0
points_by_rank 0.25
team_points 3
country_classification Classe A
Name: 1397, dtype: object
date 2020-09-03 00:00:00
team Russia
score 3.0
suf_score 1.0
rank 38.0
rank_suf 29.0
rank_change 0.0
total_points 1470.0
result 0
rank_dif 9.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 1398, dtype: object
date 2020-09-03 00:00:00
team Turkey
score 0.0
suf_score 1.0
rank 29.0
rank_suf 52.0
rank_change 0.0
total_points 1494.0
result 1
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1399, dtype: object
date 2020-09-03 00:00:00
team Bulgaria
score 1.0
suf_score 1.0
rank 59.0
rank_suf 34.0
rank_change 0.0
total_points 1381.0
result 2
rank_dif 25.0
points_by_rank 0.029412
team_points 1
country_classification Classe B
Name: 1400, dtype: object
date 2020-09-03 00:00:00
team Finland
score 0.0
suf_score 1.0
rank 58.0
rank_suf 23.0
rank_change 0.0
total_points 1386.0
result 1
rank_dif 35.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1401, dtype: object
date 2020-09-03 00:00:00
team Moldova
score 1.0
suf_score 1.0
rank 175.0
rank_suf 115.0
rank_change 0.0
total_points 959.0
result 2
rank_dif 60.0
points_by_rank 0.008696
team_points 1
country_classification Classe D
Name: 1402, dtype: object
date 2020-09-03 00:00:00
team Slovenia
score 0.0
suf_score 0.0
rank 64.0
rank_suf 54.0
rank_change 0.0
total_points 1365.0
result 2
rank_dif 10.0
points_by_rank 0.018519
team_points 1
country_classification Classe B
Name: 1403, dtype: object
date 2020-09-03 00:00:00
team Latvia
score 0.0
suf_score 0.0
rank 137.0
rank_suf 135.0
rank_change 0.0
total_points 1079.0
result 2
rank_dif 2.0
points_by_rank 0.007407
team_points 1
country_classification Classe C
Name: 1404, dtype: object
date 2020-09-03 00:00:00
team Faroe Islands
score 3.0
suf_score 2.0
rank 110.0
rank_suf 184.0
rank_change 0.0
total_points 1181.0
result 0
rank_dif -74.0
points_by_rank 0.016304
team_points 3
country_classification Classe C
Name: 1405, dtype: object
date 2020-09-04 00:00:00
team Italy
score 1.0
suf_score 1.0
rank 13.0
rank_suf 49.0
rank_change 0.0
total_points 1607.0
result 2
rank_dif -36.0
points_by_rank 0.020408
team_points 1
country_classification Classe S-
Name: 1406, dtype: object
date 2020-09-04 00:00:00
team Netherlands
score 1.0
suf_score 0.0
rank 14.0
rank_suf 19.0
rank_change 0.0
total_points 1604.0
result 0
rank_dif -5.0
points_by_rank 0.157895
team_points 3
country_classification Classe S-
Name: 1407, dtype: object
date 2020-09-04 00:00:00
team Norway
score 1.0
suf_score 2.0
rank 44.0
rank_suf 26.0
rank_change 0.0
total_points 1451.0
result 1
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1408, dtype: object
date 2020-09-04 00:00:00
team Romania
score 1.0
suf_score 1.0
rank 37.0
rank_suf 36.0
rank_change 0.0
total_points 1475.0
result 2
rank_dif 1.0
points_by_rank 0.027778
team_points 1
country_classification Classe A
Name: 1409, dtype: object
date 2020-09-04 00:00:00
team Scotland
score 1.0
suf_score 1.0
rank 50.0
rank_suf 93.0
rank_change 0.0
total_points 1422.0
result 2
rank_dif -43.0
points_by_rank 0.010753
team_points 1
country_classification Classe A
Name: 1410, dtype: object
date 2020-09-04 00:00:00
team Slovakia
score 1.0
suf_score 3.0
rank 32.0
rank_suf 45.0
rank_change 0.0
total_points 1490.0
result 1
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1411, dtype: object
date 2020-09-04 00:00:00
team Lithuania
score 0.0
suf_score 2.0
rank 131.0
rank_suf 118.0
rank_change 0.0
total_points 1089.0
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1412, dtype: object
date 2020-09-04 00:00:00
team Belarus
score 0.0
suf_score 2.0
rank 87.0
rank_suf 66.0
rank_change 0.0
total_points 1283.0
result 1
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1413, dtype: object
date 2020-09-05 00:00:00
team Iceland
score 0.0
suf_score 1.0
rank 39.0
rank_suf 4.0
rank_change 0.0
total_points 1465.0
result 1
rank_dif 35.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1414, dtype: object
date 2020-09-05 00:00:00
team Denmark
score 0.0
suf_score 2.0
rank 16.0
rank_suf 1.0
rank_change 0.0
total_points 1598.0
result 1
rank_dif 15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1415, dtype: object
date 2020-09-05 00:00:00
team Portugal
score 4.0
suf_score 1.0
rank 7.0
rank_suf 6.0
rank_change 0.0
total_points 1639.0
result 0
rank_dif 1.0
points_by_rank 0.5
team_points 3
country_classification Classe S-
Name: 1416, dtype: object
date 2020-09-05 00:00:00
team Sweden
score 0.0
suf_score 1.0
rank 17.0
rank_suf 2.0
rank_change 0.0
total_points 1579.0
result 1
rank_dif 15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1417, dtype: object
date 2020-09-05 00:00:00
team Cyprus
score 0.0
suf_score 2.0
rank 95.0
rank_suf 64.0
rank_change 0.0
total_points 1251.0
result 1
rank_dif 31.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1418, dtype: object
date 2020-09-05 00:00:00
team Azerbaijan
score 1.0
suf_score 2.0
rank 114.0
rank_suf 98.0
rank_change 0.0
total_points 1177.0
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1419, dtype: object
date 2020-09-05 00:00:00
team North Macedonia
score 2.0
suf_score 1.0
rank 68.0
rank_suf 102.0
rank_change 0.0
total_points 1347.0
result 0
rank_dif -34.0
points_by_rank 0.029412
team_points 3
country_classification Classe B
Name: 1420, dtype: object
date 2020-09-05 00:00:00
team Estonia
score 0.0
suf_score 1.0
rank 104.0
rank_suf 91.0
rank_change 0.0
total_points 1202.0
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1421, dtype: object
date 2020-09-05 00:00:00
team Gibraltar
score 1.0
suf_score 0.0
rank 196.0
rank_suf 209.0
rank_change 0.0
total_points 879.0
result 0
rank_dif -13.0
points_by_rank 0.014354
team_points 3
country_classification Classe D
Name: 1422, dtype: object
date 2020-09-06 00:00:00
team Spain
score 4.0
suf_score 0.0
rank 8.0
rank_suf 24.0
rank_change 0.0
total_points 1636.0
result 0
rank_dif -16.0
points_by_rank 0.125
team_points 3
country_classification Classe S-
Name: 1423, dtype: object
date 2020-09-06 00:00:00
team Switzerland
score 1.0
suf_score 1.0
rank 12.0
rank_suf 15.0
rank_change 0.0
total_points 1608.0
result 2
rank_dif -3.0
points_by_rank 0.066667
team_points 1
country_classification Classe S-
Name: 1424, dtype: object
date 2020-09-06 00:00:00
team Hungary
score 2.0
suf_score 3.0
rank 52.0
rank_suf 38.0
rank_change 0.0
total_points 1416.0
result 1
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1425, dtype: object
date 2020-09-06 00:00:00
team Serbia
score 0.0
suf_score 0.0
rank 29.0
rank_suf 29.0
rank_change 0.0
total_points 1494.0
result 2
rank_dif 0.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 1426, dtype: object
date 2020-09-06 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 23.0
rank_suf 59.0
rank_change 0.0
total_points 1540.0
result 0
rank_dif -36.0
points_by_rank 0.050847
team_points 3
country_classification Classe A
Name: 1427, dtype: object
date 2020-09-06 00:00:00
team Republic of Ireland
score 0.0
suf_score 1.0
rank 34.0
rank_suf 58.0
rank_change 0.0
total_points 1486.0
result 1
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1428, dtype: object
date 2020-09-06 00:00:00
team Slovenia
score 1.0
suf_score 0.0
rank 64.0
rank_suf 175.0
rank_change 0.0
total_points 1365.0
result 0
rank_dif -111.0
points_by_rank 0.017143
team_points 3
country_classification Classe B
Name: 1429, dtype: object
date 2020-09-06 00:00:00
team Kosovo
score 1.0
suf_score 2.0
rank 115.0
rank_suf 54.0
rank_change 0.0
total_points 1174.0
result 1
rank_dif 61.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1430, dtype: object
date 2020-09-06 00:00:00
team Andorra
score 0.0
suf_score 1.0
rank 135.0
rank_suf 110.0
rank_change 0.0
total_points 1082.0
result 1
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1431, dtype: object
date 2020-09-06 00:00:00
team Malta
score 1.0
suf_score 1.0
rank 184.0
rank_suf 137.0
rank_change 0.0
total_points 919.0
result 2
rank_dif 47.0
points_by_rank 0.007299
team_points 1
country_classification Classe D
Name: 1432, dtype: object
date 2020-09-07 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 2.0
rank 49.0
rank_suf 19.0
rank_change 0.0
total_points 1430.0
result 1
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1433, dtype: object
date 2020-09-07 00:00:00
team Netherlands
score 0.0
suf_score 1.0
rank 14.0
rank_suf 13.0
rank_change 0.0
total_points 1604.0
result 1
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1434, dtype: object
date 2020-09-07 00:00:00
team Northern Ireland
score 1.0
suf_score 5.0
rank 36.0
rank_suf 44.0
rank_change 0.0
total_points 1476.0
result 1
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1435, dtype: object
date 2020-09-07 00:00:00
team Austria
score 2.0
suf_score 3.0
rank 26.0
rank_suf 37.0
rank_change 0.0
total_points 1507.0
result 1
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1436, dtype: object
date 2020-09-07 00:00:00
team Czech Republic
score 1.0
suf_score 2.0
rank 45.0
rank_suf 50.0
rank_change 0.0
total_points 1446.0
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1437, dtype: object
date 2020-09-07 00:00:00
team Israel
score 1.0
suf_score 1.0
rank 93.0
rank_suf 32.0
rank_change 0.0
total_points 1260.0
result 2
rank_dif 61.0
points_by_rank 0.03125
team_points 1
country_classification Classe B
Name: 1438, dtype: object
date 2020-09-07 00:00:00
team Kazakhstan
score 1.0
suf_score 2.0
rank 118.0
rank_suf 87.0
rank_change 0.0
total_points 1155.0
result 1
rank_dif 31.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1439, dtype: object
date 2020-09-07 00:00:00
team Albania
score 0.0
suf_score 1.0
rank 66.0
rank_suf 131.0
rank_change 0.0
total_points 1356.0
result 1
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1440, dtype: object
date 2020-09-08 00:00:00
team Belgium
score 5.0
suf_score 1.0
rank 1.0
rank_suf 39.0
rank_change 0.0
total_points 1765.0
result 0
rank_dif -38.0
points_by_rank 0.076923
team_points 3
country_classification Classe S
Name: 1441, dtype: object
date 2020-09-08 00:00:00
team Denmark
score 0.0
suf_score 0.0
rank 16.0
rank_suf 4.0
rank_change 0.0
total_points 1598.0
result 2
rank_dif 12.0
points_by_rank 0.25
team_points 1
country_classification Classe A
Name: 1442, dtype: object
date 2020-09-08 00:00:00
team France
score 4.0
suf_score 2.0
rank 2.0
rank_suf 6.0
rank_change 0.0
total_points 1733.0
result 0
rank_dif -4.0
points_by_rank 0.5
team_points 3
country_classification Classe S
Name: 1443, dtype: object
date 2020-09-08 00:00:00
team Sweden
score 0.0
suf_score 2.0
rank 17.0
rank_suf 7.0
rank_change 0.0
total_points 1579.0
result 1
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1444, dtype: object
date 2020-09-08 00:00:00
team Luxembourg
score 0.0
suf_score 1.0
rank 98.0
rank_suf 64.0
rank_change 0.0
total_points 1236.0
result 1
rank_dif 34.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1445, dtype: object
date 2020-09-08 00:00:00
team Cyprus
score 0.0
suf_score 1.0
rank 95.0
rank_suf 114.0
rank_change 0.0
total_points 1251.0
result 1
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1446, dtype: object
date 2020-09-08 00:00:00
team Armenia
score 2.0
suf_score 0.0
rank 102.0
rank_suf 104.0
rank_change 0.0
total_points 1213.0
result 0
rank_dif -2.0
points_by_rank 0.028846
team_points 3
country_classification Classe B
Name: 1447, dtype: object
date 2020-09-08 00:00:00
team Georgia
score 1.0
suf_score 1.0
rank 91.0
rank_suf 68.0
rank_change 0.0
total_points 1267.0
result 2
rank_dif 23.0
points_by_rank 0.014706
team_points 1
country_classification Classe B
Name: 1448, dtype: object
date 2020-09-08 00:00:00
team San Marino
score 0.0
suf_score 2.0
rank 209.0
rank_suf 180.0
rank_change 0.0
total_points 824.0
result 1
rank_dif 29.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1449, dtype: object
date 2020-10-06 00:00:00
team Nicaragua
score 0.0
suf_score 0.0
rank 151.0
rank_suf 130.0
rank_change 0.0
total_points 1051.0
result 2
rank_dif 21.0
points_by_rank 0.007692
team_points 1
country_classification Classe C
Name: 1450, dtype: object
date 2020-10-07 00:00:00
team Austria
score 2.0
suf_score 1.0
rank 27.0
rank_suf 53.0
rank_change 1.0
total_points 1505.0
result 0
rank_dif -26.0
points_by_rank 0.056604
team_points 3
country_classification Classe A
Name: 1451, dtype: object
date 2020-10-07 00:00:00
team Cyprus
score 1.0
suf_score 2.0
rank 98.0
rank_suf 45.0
rank_change 3.0
total_points 1236.0
result 1
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1452, dtype: object
date 2020-10-07 00:00:00
team Denmark
score 4.0
suf_score 0.0
rank 16.0
rank_suf 107.0
rank_change 0.0
total_points 1593.0
result 0
rank_dif -91.0
points_by_rank 0.028037
team_points 3
country_classification Classe A
Name: 1453, dtype: object
date 2020-10-07 00:00:00
team Estonia
score 1.0
suf_score 3.0
rank 108.0
rank_suf 131.0
rank_change 4.0
total_points 1188.0
result 1
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1454, dtype: object
date 2020-10-07 00:00:00
team France
score 7.0
suf_score 1.0
rank 2.0
rank_suf 24.0
rank_change 0.0
total_points 1744.0
result 0
rank_dif -22.0
points_by_rank 0.125
team_points 3
country_classification Classe S
Name: 1455, dtype: object
date 2020-10-07 00:00:00
team Germany
score 3.0
suf_score 3.0
rank 14.0
rank_suf 32.0
rank_change -1.0
total_points 1602.0
result 2
rank_dif -18.0
points_by_rank 0.03125
team_points 1
country_classification Classe S-
Name: 1456, dtype: object
date 2020-10-07 00:00:00
team Italy
score 6.0
suf_score 0.0
rank 12.0
rank_suf 175.0
rank_change -1.0
total_points 1612.0
result 0
rank_dif -163.0
points_by_rank 0.017143
team_points 3
country_classification Classe S-
Name: 1457, dtype: object
date 2020-10-07 00:00:00
team Luxembourg
score 1.0
suf_score 2.0
rank 97.0
rank_suf 180.0
rank_change -1.0
total_points 1237.0
result 1
rank_dif -83.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1458, dtype: object
date 2020-10-07 00:00:00
team Malta
score 2.0
suf_score 0.0
rank 186.0
rank_suf 195.0
rank_change 2.0
total_points 917.0
result 0
rank_dif -9.0
points_by_rank 0.015385
team_points 3
country_classification Classe D
Name: 1459, dtype: object
date 2020-10-07 00:00:00
team Montenegro
score 1.0
suf_score 1.0
rank 63.0
rank_suf 137.0
rank_change -1.0
total_points 1376.0
result 2
rank_dif -74.0
points_by_rank 0.007299
team_points 1
country_classification Classe B
Name: 1460, dtype: object
date 2020-10-07 00:00:00
team Netherlands
score 0.0
suf_score 1.0
rank 13.0
rank_suf 11.0
rank_change -1.0
total_points 1603.0
result 1
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1461, dtype: object
date 2020-10-07 00:00:00
team Poland
score 5.0
suf_score 1.0
rank 19.0
rank_suf 56.0
rank_change 0.0
total_points 1558.0
result 0
rank_dif -37.0
points_by_rank 0.053571
team_points 3
country_classification Classe A
Name: 1462, dtype: object
date 2020-10-07 00:00:00
team Portugal
score 0.0
suf_score 0.0
rank 5.0
rank_suf 7.0
rank_change -2.0
total_points 1653.0
result 2
rank_dif -2.0
points_by_rank 0.142857
team_points 1
country_classification Classe S-
Name: 1463, dtype: object
date 2020-10-07 00:00:00
team Slovenia
score 4.0
suf_score 0.0
rank 64.0
rank_suf 210.0
rank_change 0.0
total_points 1368.0
result 0
rank_dif -146.0
points_by_rank 0.014286
team_points 3
country_classification Classe B
Name: 1464, dtype: object
date 2020-10-07 00:00:00
team Switzerland
score 1.0
suf_score 2.0
rank 15.0
rank_suf 8.0
rank_change 3.0
total_points 1600.0
result 1
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1465, dtype: object
date 2020-10-07 00:00:00
team Zambia
score 1.0
suf_score 0.0
rank 88.0
rank_suf 123.0
rank_change 0.0
total_points 1279.0
result 0
rank_dif -35.0
points_by_rank 0.02439
team_points 3
country_classification Classe B
Name: 1466, dtype: object
date 2020-10-08 00:00:00
team England
score 3.0
suf_score 0.0
rank 4.0
rank_suf 21.0
rank_change 0.0
total_points 1664.0
result 0
rank_dif -17.0
points_by_rank 0.142857
team_points 3
country_classification Classe S-
Name: 1467, dtype: object
date 2020-10-08 00:00:00
team Russia
score 1.0
suf_score 2.0
rank 32.0
rank_suf 18.0
rank_change -6.0
total_points 1485.0
result 1
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1468, dtype: object
date 2020-10-08 00:00:00
team South Africa
score 1.0
suf_score 1.0
rank 71.0
rank_suf 117.0
rank_change 0.0
total_points 1334.0
result 2
rank_dif -46.0
points_by_rank 0.008547
team_points 1
country_classification Classe B
Name: 1469, dtype: object
date 2020-10-08 00:00:00
team Uzbekistan
score 1.0
suf_score 2.0
rank 85.0
rank_suf 30.0
rank_change 0.0
total_points 1290.0
result 1
rank_dif 55.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1470, dtype: object
date 2020-10-08 00:00:00
team Paraguay
score 2.0
suf_score 2.0
rank 40.0
rank_suf 22.0
rank_change -1.0
total_points 1461.0
result 2
rank_dif 18.0
points_by_rank 0.045455
team_points 1
country_classification Classe A
Name: 1471, dtype: object
date 2020-10-08 00:00:00
team Uruguay
score 2.0
suf_score 1.0
rank 6.0
rank_suf 17.0
rank_change 1.0
total_points 1645.0
result 0
rank_dif -11.0
points_by_rank 0.176471
team_points 3
country_classification Classe S-
Name: 1472, dtype: object
date 2020-10-08 00:00:00
team Argentina
score 1.0
suf_score 0.0
rank 9.0
rank_suf 64.0
rank_change 0.0
total_points 1623.0
result 0
rank_dif -55.0
points_by_rank 0.046875
team_points 3
country_classification Classe S-
Name: 1473, dtype: object
date 2020-10-08 00:00:00
team Iceland
score 2.0
suf_score 1.0
rank 41.0
rank_suf 34.0
rank_change 2.0
total_points 1457.0
result 0
rank_dif 7.0
points_by_rank 0.088235
team_points 3
country_classification Classe A
Name: 1474, dtype: object
date 2020-10-08 00:00:00
team Bulgaria
score 1.0
suf_score 3.0
rank 60.0
rank_suf 52.0
rank_change 1.0
total_points 1378.0
result 1
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1475, dtype: object
date 2020-10-08 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 1.0
rank 50.0
rank_suf 38.0
rank_change 1.0
total_points 1426.0
result 2
rank_dif 12.0
points_by_rank 0.026316
team_points 1
country_classification Classe A
Name: 1476, dtype: object
date 2020-10-08 00:00:00
team Slovakia
score 0.0
suf_score 0.0
rank 36.0
rank_suf 37.0
rank_change 4.0
total_points 1479.0
result 2
rank_dif -1.0
points_by_rank 0.027027
team_points 1
country_classification Classe A
Name: 1477, dtype: object
date 2020-10-08 00:00:00
team Scotland
score 0.0
suf_score 0.0
rank 49.0
rank_suf 93.0
rank_change -1.0
total_points 1428.0
result 2
rank_dif -44.0
points_by_rank 0.010753
team_points 1
country_classification Classe A
Name: 1478, dtype: object
date 2020-10-08 00:00:00
team Norway
score 1.0
suf_score 2.0
rank 44.0
rank_suf 31.0
rank_change 0.0
total_points 1452.0
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1479, dtype: object
date 2020-10-08 00:00:00
team Georgia
score 1.0
suf_score 0.0
rank 89.0
rank_suf 87.0
rank_change -2.0
total_points 1274.0
result 0
rank_dif 2.0
points_by_rank 0.034483
team_points 3
country_classification Classe B
Name: 1480, dtype: object
date 2020-10-08 00:00:00
team North Macedonia
score 2.0
suf_score 1.0
rank 66.0
rank_suf 116.0
rank_change -2.0
total_points 1351.0
result 0
rank_dif -50.0
points_by_rank 0.025862
team_points 3
country_classification Classe B
Name: 1481, dtype: object
date 2020-10-09 00:00:00
team Congo
score 0.0
suf_score 1.0
rank 90.0
rank_suf 159.0
rank_change 1.0
total_points 1269.0
result 1
rank_dif -69.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1482, dtype: object
date 2020-10-09 00:00:00
team Japan
score 0.0
suf_score 0.0
rank 28.0
rank_suf 53.0
rank_change 0.0
total_points 1500.0
result 2
rank_dif -25.0
points_by_rank 0.018868
team_points 1
country_classification Classe A
Name: 1483, dtype: object
date 2020-10-09 00:00:00
team Kenya
score 2.0
suf_score 1.0
rank 106.0
rank_suf 88.0
rank_change -1.0
total_points 1199.0
result 0
rank_dif 18.0
points_by_rank 0.034091
team_points 3
country_classification Classe C
Name: 1484, dtype: object
date 2020-10-09 00:00:00
team Mali
score 3.0
suf_score 0.0
rank 57.0
rank_suf 46.0
rank_change 1.0
total_points 1389.0
result 0
rank_dif 11.0
points_by_rank 0.065217
team_points 3
country_classification Classe B
Name: 1485, dtype: object
date 2020-10-09 00:00:00
team Mauritania
score 2.0
suf_score 1.0
rank 100.0
rank_suf 119.0
rank_change 0.0
total_points 1223.0
result 0
rank_dif -19.0
points_by_rank 0.02521
team_points 3
country_classification Classe B
Name: 1486, dtype: object
date 2020-10-09 00:00:00
team Morocco
score 3.0
suf_score 1.0
rank 43.0
rank_suf 20.0
rank_change 0.0
total_points 1456.0
result 0
rank_dif 23.0
points_by_rank 0.15
team_points 3
country_classification Classe A
Name: 1487, dtype: object
date 2020-10-09 00:00:00
team Nigeria
score 0.0
suf_score 1.0
rank 29.0
rank_suf 35.0
rank_change -2.0
total_points 1493.0
result 1
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1488, dtype: object
date 2020-10-09 00:00:00
team Tunisia
score 3.0
suf_score 0.0
rank 26.0
rank_suf 128.0
rank_change -1.0
total_points 1506.0
result 0
rank_dif -102.0
points_by_rank 0.023438
team_points 3
country_classification Classe A
Name: 1489, dtype: object
date 2020-10-09 00:00:00
team Colombia
score 3.0
suf_score 0.0
rank 10.0
rank_suf 25.0
rank_change 0.0
total_points 1622.0
result 0
rank_dif -15.0
points_by_rank 0.12
team_points 3
country_classification Classe S-
Name: 1490, dtype: object
date 2020-10-09 00:00:00
team Brazil
score 5.0
suf_score 0.0
rank 3.0
rank_suf 75.0
rank_change 0.0
total_points 1712.0
result 0
rank_dif -72.0
points_by_rank 0.04
team_points 3
country_classification Classe S
Name: 1491, dtype: object
date 2020-10-10 00:00:00
team Spain
score 1.0
suf_score 0.0
rank 7.0
rank_suf 15.0
rank_change -1.0
total_points 1642.0
result 0
rank_dif -8.0
points_by_rank 0.2
team_points 3
country_classification Classe S-
Name: 1492, dtype: object
date 2020-10-10 00:00:00
team Ukraine
score 1.0
suf_score 2.0
rank 24.0
rank_suf 14.0
rank_change 0.0
total_points 1539.0
result 1
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1493, dtype: object
date 2020-10-10 00:00:00
team Luxembourg
score 2.0
suf_score 0.0
rank 97.0
rank_suf 98.0
rank_change -1.0
total_points 1237.0
result 0
rank_dif -1.0
points_by_rank 0.030612
team_points 3
country_classification Classe B
Name: 1494, dtype: object
date 2020-10-10 00:00:00
team Montenegro
score 2.0
suf_score 0.0
rank 63.0
rank_suf 112.0
rank_change -1.0
total_points 1376.0
result 0
rank_dif -49.0
points_by_rank 0.026786
team_points 3
country_classification Classe B
Name: 1495, dtype: object
date 2020-10-10 00:00:00
team Faroe Islands
score 1.0
suf_score 1.0
rank 107.0
rank_suf 137.0
rank_change -3.0
total_points 1191.0
result 2
rank_dif -30.0
points_by_rank 0.007299
team_points 1
country_classification Classe C
Name: 1496, dtype: object
date 2020-10-10 00:00:00
team Andorra
score 0.0
suf_score 0.0
rank 137.0
rank_suf 186.0
rank_change 2.0
total_points 1076.0
result 2
rank_dif -49.0
points_by_rank 0.005376
team_points 1
country_classification Classe C
Name: 1497, dtype: object
date 2020-10-10 00:00:00
team Liechtenstein
score 0.0
suf_score 1.0
rank 180.0
rank_suf 195.0
rank_change 0.0
total_points 932.0
result 1
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1498, dtype: object
date 2020-10-10 00:00:00
team Costa Rica
score 0.0
suf_score 1.0
rank 46.0
rank_suf 81.0
rank_change 0.0
total_points 1439.0
result 1
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1499, dtype: object
date 2020-10-10 00:00:00
team Honduras
score 1.0
suf_score 1.0
rank 62.0
rank_suf 151.0
rank_change 0.0
total_points 1377.0
result 2
rank_dif -89.0
points_by_rank 0.006623
team_points 1
country_classification Classe B
Name: 1500, dtype: object
date 2020-10-10 00:00:00
team Niger
score 2.0
suf_score 0.0
rank 112.0
rank_suf 177.0
rank_change 0.0
total_points 1179.0
result 0
rank_dif -65.0
points_by_rank 0.016949
team_points 3
country_classification Classe C
Name: 1501, dtype: object
date 2020-10-11 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 0.0
rank 50.0
rank_suf 13.0
rank_change 1.0
total_points 1426.0
result 2
rank_dif 37.0
points_by_rank 0.076923
team_points 1
country_classification Classe A
Name: 1502, dtype: object
date 2020-10-11 00:00:00
team Poland
score 0.0
suf_score 0.0
rank 19.0
rank_suf 12.0
rank_change 0.0
total_points 1558.0
result 2
rank_dif 7.0
points_by_rank 0.083333
team_points 1
country_classification Classe A
Name: 1503, dtype: object
date 2020-10-11 00:00:00
team England
score 2.0
suf_score 1.0
rank 4.0
rank_suf 1.0
rank_change 0.0
total_points 1664.0
result 0
rank_dif 3.0
points_by_rank 3.0
team_points 3
country_classification Classe S-
Name: 1504, dtype: object
date 2020-10-11 00:00:00
team Iceland
score 0.0
suf_score 3.0
rank 41.0
rank_suf 16.0
rank_change 2.0
total_points 1457.0
result 1
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1505, dtype: object
date 2020-10-11 00:00:00
team Croatia
score 2.0
suf_score 1.0
rank 8.0
rank_suf 18.0
rank_change 2.0
total_points 1628.0
result 0
rank_dif -10.0
points_by_rank 0.166667
team_points 3
country_classification Classe S-
Name: 1506, dtype: object
date 2020-10-11 00:00:00
team France
score 0.0
suf_score 0.0
rank 2.0
rank_suf 5.0
rank_change 0.0
total_points 1744.0
result 2
rank_dif -3.0
points_by_rank 0.2
team_points 1
country_classification Classe S
Name: 1507, dtype: object
date 2020-10-11 00:00:00
team Norway
score 4.0
suf_score 0.0
rank 44.0
rank_suf 34.0
rank_change 0.0
total_points 1452.0
result 0
rank_dif 10.0
points_by_rank 0.088235
team_points 3
country_classification Classe A
Name: 1508, dtype: object
date 2020-10-11 00:00:00
team Northern Ireland
score 0.0
suf_score 1.0
rank 38.0
rank_suf 27.0
rank_change 2.0
total_points 1468.0
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1509, dtype: object
date 2020-10-11 00:00:00
team Scotland
score 1.0
suf_score 0.0
rank 49.0
rank_suf 36.0
rank_change -1.0
total_points 1428.0
result 0
rank_dif 13.0
points_by_rank 0.083333
team_points 3
country_classification Classe A
Name: 1510, dtype: object
date 2020-10-11 00:00:00
team Israel
score 1.0
suf_score 2.0
rank 93.0
rank_suf 45.0
rank_change 0.0
total_points 1265.0
result 1
rank_dif 48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1511, dtype: object
date 2020-10-11 00:00:00
team Serbia
score 0.0
suf_score 1.0
rank 31.0
rank_suf 52.0
rank_change 2.0
total_points 1486.0
result 1
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1512, dtype: object
date 2020-10-11 00:00:00
team Russia
score 1.0
suf_score 1.0
rank 32.0
rank_suf 32.0
rank_change -6.0
total_points 1485.0
result 2
rank_dif 0.0
points_by_rank 0.03125
team_points 1
country_classification Classe A
Name: 1513, dtype: object
date 2020-10-11 00:00:00
team Republic of Ireland
score 0.0
suf_score 0.0
rank 37.0
rank_suf 21.0
rank_change 3.0
total_points 1475.0
result 2
rank_dif 16.0
points_by_rank 0.047619
team_points 1
country_classification Classe A
Name: 1514, dtype: object
date 2020-10-11 00:00:00
team Finland
score 2.0
suf_score 0.0
rank 56.0
rank_suf 60.0
rank_change -2.0
total_points 1390.0
result 0
rank_dif -4.0
points_by_rank 0.05
team_points 3
country_classification Classe B
Name: 1515, dtype: object
date 2020-10-11 00:00:00
team Armenia
score 2.0
suf_score 2.0
rank 101.0
rank_suf 89.0
rank_change -1.0
total_points 1215.0
result 2
rank_dif 12.0
points_by_rank 0.011236
team_points 1
country_classification Classe B
Name: 1516, dtype: object
date 2020-10-11 00:00:00
team Estonia
score 3.0
suf_score 3.0
rank 108.0
rank_suf 66.0
rank_change 4.0
total_points 1188.0
result 2
rank_dif 42.0
points_by_rank 0.015152
team_points 1
country_classification Classe C
Name: 1517, dtype: object
date 2020-10-11 00:00:00
team Kosovo
score 0.0
suf_score 1.0
rank 116.0
rank_suf 64.0
rank_change 1.0
total_points 1167.0
result 1
rank_dif 52.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1518, dtype: object
date 2020-10-11 00:00:00
team Greece
score 2.0
suf_score 0.0
rank 53.0
rank_suf 175.0
rank_change -1.0
total_points 1413.0
result 0
rank_dif -122.0
points_by_rank 0.017143
team_points 3
country_classification Classe A
Name: 1519, dtype: object
date 2020-10-11 00:00:00
team Kazakhstan
score 0.0
suf_score 0.0
rank 118.0
rank_suf 66.0
rank_change 0.0
total_points 1156.0
result 2
rank_dif 52.0
points_by_rank 0.015152
team_points 1
country_classification Classe C
Name: 1520, dtype: object
date 2020-10-11 00:00:00
team Lithuania
score 2.0
suf_score 2.0
rank 131.0
rank_suf 87.0
rank_change 0.0
total_points 1093.0
result 2
rank_dif 44.0
points_by_rank 0.011494
team_points 1
country_classification Classe C
Name: 1521, dtype: object
date 2020-10-11 00:00:00
team Gabon
score 0.0
suf_score 2.0
rank 83.0
rank_suf 84.0
rank_change 0.0
total_points 1297.0
result 1
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1522, dtype: object
date 2020-10-11 00:00:00
team Malawi
score 0.0
suf_score 0.0
rank 123.0
rank_suf 111.0
rank_change 0.0
total_points 1141.0
result 2
rank_dif 12.0
points_by_rank 0.009009
team_points 1
country_classification Classe C
Name: 1523, dtype: object
date 2020-10-11 00:00:00
team South Africa
score 1.0
suf_score 2.0
rank 71.0
rank_suf 88.0
rank_change 0.0
total_points 1334.0
result 1
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1524, dtype: object
date 2020-10-11 00:00:00
team Tanzania
score 0.0
suf_score 1.0
rank 134.0
rank_suf 149.0
rank_change 0.0
total_points 1086.0
result 1
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1525, dtype: object
date 2020-10-12 00:00:00
team Burkina Faso
score 2.0
suf_score 1.0
rank 59.0
rank_suf 92.0
rank_change 0.0
total_points 1381.0
result 0
rank_dif -33.0
points_by_rank 0.032609
team_points 3
country_classification Classe B
Name: 1526, dtype: object
date 2020-10-12 00:00:00
team Ghana
score 5.0
suf_score 1.0
rank 46.0
rank_suf 55.0
rank_change 0.0
total_points 1439.0
result 0
rank_dif -9.0
points_by_rank 0.054545
team_points 3
country_classification Classe A
Name: 1527, dtype: object
date 2020-10-12 00:00:00
team Togo
score 1.0
suf_score 1.0
rank 126.0
rank_suf 128.0
rank_change 0.0
total_points 1127.0
result 2
rank_dif -2.0
points_by_rank 0.007812
team_points 1
country_classification Classe C
Name: 1528, dtype: object
date 2020-10-12 00:00:00
team United Arab Emirates
score 1.0
suf_score 2.0
rank 71.0
rank_suf 85.0
rank_change 0.0
total_points 1334.0
result 1
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1529, dtype: object
date 2020-10-13 00:00:00
team Cameroon
score 0.0
suf_score 0.0
rank 53.0
rank_suf 168.0
rank_change 0.0
total_points 1413.0
result 2
rank_dif -115.0
points_by_rank 0.005952
team_points 1
country_classification Classe A
Name: 1530, dtype: object
date 2020-10-13 00:00:00
team Germany
score 3.0
suf_score 3.0
rank 14.0
rank_suf 15.0
rank_change -1.0
total_points 1602.0
result 2
rank_dif -1.0
points_by_rank 0.066667
team_points 1
country_classification Classe S-
Name: 1531, dtype: object
date 2020-10-13 00:00:00
team Ukraine
score 1.0
suf_score 0.0
rank 24.0
rank_suf 7.0
rank_change 0.0
total_points 1539.0
result 0
rank_dif 17.0
points_by_rank 0.428571
team_points 3
country_classification Classe A
Name: 1532, dtype: object
date 2020-10-13 00:00:00
team Azerbaijan
score 0.0
suf_score 0.0
rank 112.0
rank_suf 98.0
rank_change -2.0
total_points 1179.0
result 2
rank_dif 14.0
points_by_rank 0.010204
team_points 1
country_classification Classe C
Name: 1533, dtype: object
date 2020-10-13 00:00:00
team Montenegro
score 1.0
suf_score 2.0
rank 63.0
rank_suf 97.0
rank_change -1.0
total_points 1376.0
result 1
rank_dif -34.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1534, dtype: object
date 2020-10-13 00:00:00
team Latvia
score 0.0
suf_score 1.0
rank 137.0
rank_suf 186.0
rank_change 0.0
total_points 1076.0
result 1
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1535, dtype: object
date 2020-10-13 00:00:00
team Faroe Islands
score 2.0
suf_score 0.0
rank 107.0
rank_suf 137.0
rank_change -3.0
total_points 1191.0
result 0
rank_dif -30.0
points_by_rank 0.021898
team_points 3
country_classification Classe C
Name: 1536, dtype: object
date 2020-10-13 00:00:00
team Liechtenstein
score 0.0
suf_score 0.0
rank 180.0
rank_suf 210.0
rank_change 0.0
total_points 932.0
result 2
rank_dif -30.0
points_by_rank 0.004762
team_points 1
country_classification Classe D
Name: 1537, dtype: object
date 2020-10-13 00:00:00
team Costa Rica
score 0.0
suf_score 1.0
rank 46.0
rank_suf 81.0
rank_change 0.0
total_points 1439.0
result 1
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1538, dtype: object
date 2020-10-13 00:00:00
team Mexico
score 2.0
suf_score 2.0
rank 11.0
rank_suf 35.0
rank_change 0.0
total_points 1621.0
result 2
rank_dif -24.0
points_by_rank 0.028571
team_points 1
country_classification Classe S-
Name: 1539, dtype: object
date 2020-10-13 00:00:00
team Mozambique
score 0.0
suf_score 3.0
rank 105.0
rank_suf 124.0
rank_change -1.0
total_points 1200.0
result 1
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1540, dtype: object
date 2020-10-13 00:00:00
team Niger
score 1.0
suf_score 0.0
rank 112.0
rank_suf 119.0
rank_change 0.0
total_points 1179.0
result 0
rank_dif -7.0
points_by_rank 0.02521
team_points 3
country_classification Classe C
Name: 1541, dtype: object
date 2020-10-13 00:00:00
team Nigeria
score 1.0
suf_score 1.0
rank 29.0
rank_suf 26.0
rank_change -2.0
total_points 1493.0
result 2
rank_dif 3.0
points_by_rank 0.038462
team_points 1
country_classification Classe A
Name: 1542, dtype: object
date 2020-10-13 00:00:00
team Bolivia
score 1.0
suf_score 2.0
rank 75.0
rank_suf 9.0
rank_change 0.0
total_points 1324.0
result 1
rank_dif 66.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1543, dtype: object
date 2020-10-13 00:00:00
team Ecuador
score 4.0
suf_score 2.0
rank 64.0
rank_suf 6.0
rank_change 1.0
total_points 1368.0
result 0
rank_dif 58.0
points_by_rank 0.5
team_points 3
country_classification Classe B
Name: 1544, dtype: object
date 2020-10-13 00:00:00
team Venezuela
score 0.0
suf_score 1.0
rank 25.0
rank_suf 40.0
rank_change 0.0
total_points 1517.0
result 1
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1545, dtype: object
date 2020-10-13 00:00:00
team Peru
score 2.0
suf_score 4.0
rank 22.0
rank_suf 3.0
rank_change 1.0
total_points 1544.0
result 1
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1546, dtype: object
date 2020-10-13 00:00:00
team Chile
score 2.0
suf_score 2.0
rank 17.0
rank_suf 10.0
rank_change 0.0
total_points 1579.0
result 2
rank_dif 7.0
points_by_rank 0.1
team_points 1
country_classification Classe A
Name: 1547, dtype: object
date 2020-10-14 00:00:00
team Italy
score 1.0
suf_score 1.0
rank 12.0
rank_suf 13.0
rank_change -1.0
total_points 1612.0
result 2
rank_dif -1.0
points_by_rank 0.076923
team_points 1
country_classification Classe S-
Name: 1548, dtype: object
date 2020-10-14 00:00:00
team Poland
score 3.0
suf_score 0.0
rank 19.0
rank_suf 50.0
rank_change 0.0
total_points 1558.0
result 0
rank_dif -31.0
points_by_rank 0.06
team_points 3
country_classification Classe A
Name: 1549, dtype: object
date 2020-10-14 00:00:00
team Iceland
score 1.0
suf_score 2.0
rank 41.0
rank_suf 1.0
rank_change 2.0
total_points 1457.0
result 1
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1550, dtype: object
date 2020-10-14 00:00:00
team England
score 0.0
suf_score 1.0
rank 4.0
rank_suf 16.0
rank_change 0.0
total_points 1664.0
result 1
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1551, dtype: object
date 2020-10-14 00:00:00
team Portugal
score 3.0
suf_score 0.0
rank 5.0
rank_suf 18.0
rank_change -2.0
total_points 1653.0
result 0
rank_dif -13.0
points_by_rank 0.166667
team_points 3
country_classification Classe S-
Name: 1552, dtype: object
date 2020-10-14 00:00:00
team Croatia
score 1.0
suf_score 2.0
rank 8.0
rank_suf 2.0
rank_change 2.0
total_points 1628.0
result 1
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1553, dtype: object
date 2020-10-14 00:00:00
team Norway
score 1.0
suf_score 0.0
rank 44.0
rank_suf 38.0
rank_change 0.0
total_points 1452.0
result 0
rank_dif 6.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 1554, dtype: object
date 2020-10-14 00:00:00
team Romania
score 0.0
suf_score 1.0
rank 34.0
rank_suf 27.0
rank_change -3.0
total_points 1483.0
result 1
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1555, dtype: object
date 2020-10-14 00:00:00
team Scotland
score 1.0
suf_score 0.0
rank 49.0
rank_suf 45.0
rank_change -1.0
total_points 1428.0
result 0
rank_dif 4.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 1556, dtype: object
date 2020-10-14 00:00:00
team Slovakia
score 2.0
suf_score 3.0
rank 36.0
rank_suf 93.0
rank_change 4.0
total_points 1479.0
result 1
rank_dif -57.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1557, dtype: object
date 2020-10-14 00:00:00
team Russia
score 0.0
suf_score 0.0
rank 32.0
rank_suf 52.0
rank_change -6.0
total_points 1485.0
result 2
rank_dif -20.0
points_by_rank 0.019231
team_points 1
country_classification Classe A
Name: 1558, dtype: object
date 2020-10-14 00:00:00
team Turkey
score 2.0
suf_score 2.0
rank 32.0
rank_suf 31.0
rank_change 3.0
total_points 1485.0
result 2
rank_dif 1.0
points_by_rank 0.032258
team_points 1
country_classification Classe A
Name: 1559, dtype: object
date 2020-10-14 00:00:00
team Finland
score 1.0
suf_score 0.0
rank 56.0
rank_suf 37.0
rank_change -2.0
total_points 1390.0
result 0
rank_dif 19.0
points_by_rank 0.081081
team_points 3
country_classification Classe B
Name: 1560, dtype: object
date 2020-10-14 00:00:00
team Bulgaria
score 0.0
suf_score 1.0
rank 60.0
rank_suf 21.0
rank_change 1.0
total_points 1378.0
result 1
rank_dif 39.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1561, dtype: object
date 2020-10-14 00:00:00
team North Macedonia
score 1.0
suf_score 1.0
rank 66.0
rank_suf 89.0
rank_change -2.0
total_points 1351.0
result 2
rank_dif -23.0
points_by_rank 0.011236
team_points 1
country_classification Classe B
Name: 1562, dtype: object
date 2020-10-14 00:00:00
team Estonia
score 1.0
suf_score 1.0
rank 108.0
rank_suf 101.0
rank_change 4.0
total_points 1188.0
result 2
rank_dif 7.0
points_by_rank 0.009901
team_points 1
country_classification Classe C
Name: 1563, dtype: object
date 2020-10-14 00:00:00
team Greece
score 0.0
suf_score 0.0
rank 53.0
rank_suf 116.0
rank_change -1.0
total_points 1413.0
result 2
rank_dif -63.0
points_by_rank 0.008621
team_points 1
country_classification Classe A
Name: 1564, dtype: object
date 2020-10-14 00:00:00
team Moldova
score 0.0
suf_score 4.0
rank 175.0
rank_suf 64.0
rank_change 0.0
total_points 959.0
result 1
rank_dif 111.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1565, dtype: object
date 2020-10-14 00:00:00
team Lithuania
score 0.0
suf_score 0.0
rank 131.0
rank_suf 66.0
rank_change 0.0
total_points 1093.0
result 2
rank_dif 65.0
points_by_rank 0.015152
team_points 1
country_classification Classe C
Name: 1566, dtype: object
date 2020-10-14 00:00:00
team Belarus
score 2.0
suf_score 0.0
rank 87.0
rank_suf 118.0
rank_change 0.0
total_points 1282.0
result 0
rank_dif -31.0
points_by_rank 0.025424
team_points 3
country_classification Classe B
Name: 1567, dtype: object
date 2020-11-06 00:00:00
team Ethiopia
score 2.0
suf_score 2.0
rank 146.0
rank_suf 128.0
rank_change 0.0
total_points 1061.0
result 2
rank_dif 18.0
points_by_rank 0.007812
team_points 1
country_classification Classe C
Name: 1568, dtype: object
date 2020-11-07 00:00:00
team Bahrain
score 1.0
suf_score 0.0
rank 99.0
rank_suf 122.0
rank_change 0.0
total_points 1225.0
result 0
rank_dif -23.0
points_by_rank 0.02459
team_points 3
country_classification Classe B
Name: 1569, dtype: object
date 2020-11-11 00:00:00
team Albania
score 2.0
suf_score 1.0
rank 69.0
rank_suf 117.0
rank_change 3.0
total_points 1345.0
result 0
rank_dif -48.0
points_by_rank 0.025641
team_points 3
country_classification Classe B
Name: 1570, dtype: object
date 2020-11-11 00:00:00
team Belgium
score 2.0
suf_score 1.0
rank 1.0
rank_suf 16.0
rank_change 0.0
total_points 1765.0
result 0
rank_dif -15.0
points_by_rank 0.1875
team_points 3
country_classification Classe S
Name: 1571, dtype: object
date 2020-11-11 00:00:00
team Bulgaria
score 3.0
suf_score 0.0
rank 66.0
rank_suf 195.0
rank_change 6.0
total_points 1354.0
result 0
rank_dif -129.0
points_by_rank 0.015385
team_points 3
country_classification Classe B
Name: 1572, dtype: object
date 2020-11-11 00:00:00
team Denmark
score 2.0
suf_score 0.0
rank 13.0
rank_suf 19.0
rank_change -3.0
total_points 1610.0
result 0
rank_dif -6.0
points_by_rank 0.157895
team_points 3
country_classification Classe S-
Name: 1573, dtype: object
date 2020-11-11 00:00:00
team France
score 0.0
suf_score 2.0
rank 2.0
rank_suf 55.0
rank_change 0.0
total_points 1752.0
result 1
rank_dif -53.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 1574, dtype: object
date 2020-11-11 00:00:00
team Germany
score 1.0
suf_score 0.0
rank 14.0
rank_suf 45.0
rank_change 0.0
total_points 1607.0
result 0
rank_dif -31.0
points_by_rank 0.066667
team_points 3
country_classification Classe S-
Name: 1575, dtype: object
date 2020-11-11 00:00:00
team Greece
score 2.0
suf_score 1.0
rank 54.0
rank_suf 99.0
rank_change 1.0
total_points 1408.0
result 0
rank_dif -45.0
points_by_rank 0.030303
team_points 3
country_classification Classe A
Name: 1576, dtype: object
date 2020-11-11 00:00:00
team Italy
score 4.0
suf_score 0.0
rank 12.0
rank_suf 109.0
rank_change 0.0
total_points 1612.0
result 0
rank_dif -97.0
points_by_rank 0.027523
team_points 3
country_classification Classe S-
Name: 1577, dtype: object
date 2020-11-11 00:00:00
team Lithuania
score 2.0
suf_score 1.0
rank 130.0
rank_suf 107.0
rank_change -1.0
total_points 1105.0
result 0
rank_dif 23.0
points_by_rank 0.028037
team_points 3
country_classification Classe C
Name: 1578, dtype: object
date 2020-11-11 00:00:00
team Luxembourg
score 0.0
suf_score 3.0
rank 95.0
rank_suf 25.0
rank_change -2.0
total_points 1247.0
result 1
rank_dif 70.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1579, dtype: object
date 2020-11-11 00:00:00
team Malta
score 3.0
suf_score 0.0
rank 180.0
rank_suf 181.0
rank_change -6.0
total_points 934.0
result 0
rank_dif -1.0
points_by_rank 0.016575
team_points 3
country_classification Classe D
Name: 1580, dtype: object
date 2020-11-11 00:00:00
team Montenegro
score 0.0
suf_score 0.0
rank 64.0
rank_suf 119.0
rank_change 1.0
total_points 1369.0
result 2
rank_dif -55.0
points_by_rank 0.008403
team_points 1
country_classification Classe B
Name: 1581, dtype: object
date 2020-11-11 00:00:00
team Netherlands
score 1.0
suf_score 1.0
rank 15.0
rank_suf 6.0
rank_change 2.0
total_points 1596.0
result 2
rank_dif 9.0
points_by_rank 0.166667
team_points 1
country_classification Classe A
Name: 1582, dtype: object
date 2020-11-11 00:00:00
team Poland
score 2.0
suf_score 0.0
rank 18.0
rank_suf 23.0
rank_change -1.0
total_points 1568.0
result 0
rank_dif -5.0
points_by_rank 0.130435
team_points 3
country_classification Classe A
Name: 1583, dtype: object
date 2020-11-11 00:00:00
team Portugal
score 7.0
suf_score 0.0
rank 5.0
rank_suf 145.0
rank_change 0.0
total_points 1661.0
result 0
rank_dif -140.0
points_by_rank 0.02069
team_points 3
country_classification Classe S-
Name: 1584, dtype: object
date 2020-11-11 00:00:00
team Romania
score 5.0
suf_score 3.0
rank 44.0
rank_suf 90.0
rank_change 10.0
total_points 1455.0
result 0
rank_dif -46.0
points_by_rank 0.033333
team_points 3
country_classification Classe A
Name: 1585, dtype: object
date 2020-11-11 00:00:00
team San Marino
score 0.0
suf_score 3.0
rank 210.0
rank_suf 142.0
rank_change 0.0
total_points 812.0
result 1
rank_dif 68.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1586, dtype: object
date 2020-11-11 00:00:00
team Slovenia
score 0.0
suf_score 0.0
rank 62.0
rank_suf 114.0
rank_change -2.0
total_points 1376.0
result 2
rank_dif -52.0
points_by_rank 0.008772
team_points 1
country_classification Classe B
Name: 1587, dtype: object
date 2020-11-11 00:00:00
team Turkey
score 3.0
suf_score 3.0
rank 33.0
rank_suf 9.0
rank_change 1.0
total_points 1486.0
result 2
rank_dif 24.0
points_by_rank 0.111111
team_points 1
country_classification Classe A
Name: 1588, dtype: object
date 2020-11-12 00:00:00
team Hungary
score 2.0
suf_score 1.0
rank 47.0
rank_suf 39.0
rank_change -5.0
total_points 1439.0
result 0
rank_dif 8.0
points_by_rank 0.076923
team_points 3
country_classification Classe A
Name: 1589, dtype: object
date 2020-11-12 00:00:00
team Northern Ireland
score 1.0
suf_score 2.0
rank 41.0
rank_suf 37.0
rank_change 3.0
total_points 1458.0
result 1
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1590, dtype: object
date 2020-11-12 00:00:00
team Serbia
score 1.0
suf_score 1.0
rank 30.0
rank_suf 45.0
rank_change -1.0
total_points 1489.0
result 2
rank_dif -15.0
points_by_rank 0.022222
team_points 1
country_classification Classe A
Name: 1591, dtype: object
date 2020-11-12 00:00:00
team Georgia
score 0.0
suf_score 1.0
rank 86.0
rank_suf 65.0
rank_change -3.0
total_points 1287.0
result 1
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1592, dtype: object
date 2020-11-12 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 2.0
rank 51.0
rank_suf 29.0
rank_change 1.0
total_points 1424.0
result 1
rank_dif 22.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1593, dtype: object
date 2020-11-12 00:00:00
team England
score 3.0
suf_score 0.0
rank 4.0
rank_suf 36.0
rank_change 0.0
total_points 1669.0
result 0
rank_dif -32.0
points_by_rank 0.083333
team_points 3
country_classification Classe S-
Name: 1594, dtype: object
date 2020-11-12 00:00:00
team Jordan
score 0.0
suf_score 0.0
rank 97.0
rank_suf 70.0
rank_change 1.0
total_points 1238.0
result 2
rank_dif 27.0
points_by_rank 0.014286
team_points 1
country_classification Classe B
Name: 1595, dtype: object
date 2020-11-12 00:00:00
team Lebanon
score 1.0
suf_score 3.0
rank 91.0
rank_suf 99.0
rank_change 1.0
total_points 1269.0
result 1
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1596, dtype: object
date 2020-11-12 00:00:00
team Moldova
score 0.0
suf_score 0.0
rank 175.0
rank_suf 34.0
rank_change 0.0
total_points 954.0
result 2
rank_dif 141.0
points_by_rank 0.029412
team_points 1
country_classification Classe D
Name: 1597, dtype: object
date 2020-11-12 00:00:00
team United Arab Emirates
score 3.0
suf_score 2.0
rank 74.0
rank_suf 122.0
rank_change 3.0
total_points 1329.0
result 0
rank_dif -48.0
points_by_rank 0.02459
team_points 3
country_classification Classe B
Name: 1598, dtype: object
date 2020-11-12 00:00:00
team Uzbekistan
score 0.0
suf_score 1.0
rank 84.0
rank_suf 79.0
rank_change -1.0
total_points 1292.0
result 1
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1599, dtype: object
date 2020-11-12 00:00:00
team Wales
score 0.0
suf_score 0.0
rank 20.0
rank_suf 22.0
rank_change -1.0
total_points 1550.0
result 2
rank_dif -2.0
points_by_rank 0.045455
team_points 1
country_classification Classe A
Name: 1600, dtype: object
date 2020-11-12 00:00:00
team Bolivia
score 2.0
suf_score 3.0
rank 79.0
rank_suf 60.0
rank_change 4.0
total_points 1314.0
result 1
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1601, dtype: object
date 2020-11-12 00:00:00
team Argentina
score 1.0
suf_score 1.0
rank 8.0
rank_suf 35.0
rank_change -1.0
total_points 1636.0
result 2
rank_dif -27.0
points_by_rank 0.028571
team_points 1
country_classification Classe S-
Name: 1602, dtype: object
date 2020-11-13 00:00:00
team Bangladesh
score 2.0
suf_score 0.0
rank 187.0
rank_suf 170.0
rank_change 0.0
total_points 914.0
result 0
rank_dif 17.0
points_by_rank 0.017647
team_points 3
country_classification Classe D
Name: 1603, dtype: object
date 2020-11-13 00:00:00
team Costa Rica
score 1.0
suf_score 1.0
rank 50.0
rank_suf 57.0
rank_change 4.0
total_points 1427.0
result 2
rank_dif -7.0
points_by_rank 0.017544
team_points 1
country_classification Classe A
Name: 1604, dtype: object
date 2020-11-13 00:00:00
team Japan
score 1.0
suf_score 0.0
rank 27.0
rank_suf 77.0
rank_change -1.0
total_points 1503.0
result 0
rank_dif -50.0
points_by_rank 0.038961
team_points 3
country_classification Classe A
Name: 1605, dtype: object
date 2020-11-13 00:00:00
team Colombia
score 0.0
suf_score 3.0
rank 10.0
rank_suf 7.0
rank_change 0.0
total_points 1631.0
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1606, dtype: object
date 2020-11-13 00:00:00
team Chile
score 2.0
suf_score 0.0
rank 17.0
rank_suf 24.0
rank_change 0.0
total_points 1570.0
result 0
rank_dif -7.0
points_by_rank 0.125
team_points 3
country_classification Classe A
Name: 1607, dtype: object
date 2020-11-13 00:00:00
team Brazil
score 1.0
suf_score 0.0
rank 3.0
rank_suf 28.0
rank_change 0.0
total_points 1725.0
result 0
rank_dif -25.0
points_by_rank 0.107143
team_points 3
country_classification Classe S
Name: 1608, dtype: object
date 2020-11-14 00:00:00
team Portugal
score 0.0
suf_score 1.0
rank 5.0
rank_suf 2.0
rank_change 0.0
total_points 1661.0
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1609, dtype: object
date 2020-11-14 00:00:00
team Sweden
score 2.0
suf_score 1.0
rank 19.0
rank_suf 9.0
rank_change 1.0
total_points 1558.0
result 0
rank_dif 10.0
points_by_rank 0.333333
team_points 3
country_classification Classe A
Name: 1610, dtype: object
date 2020-11-14 00:00:00
team Germany
score 3.0
suf_score 1.0
rank 14.0
rank_suf 23.0
rank_change 0.0
total_points 1607.0
result 0
rank_dif -9.0
points_by_rank 0.130435
team_points 3
country_classification Classe S-
Name: 1611, dtype: object
date 2020-11-14 00:00:00
team Switzerland
score 1.0
suf_score 1.0
rank 16.0
rank_suf 6.0
rank_change 1.0
total_points 1589.0
result 2
rank_dif 10.0
points_by_rank 0.166667
team_points 1
country_classification Classe A
Name: 1612, dtype: object
date 2020-11-14 00:00:00
team Azerbaijan
score 0.0
suf_score 0.0
rank 114.0
rank_suf 64.0
rank_change 2.0
total_points 1175.0
result 2
rank_dif 50.0
points_by_rank 0.015625
team_points 1
country_classification Classe C
Name: 1613, dtype: object
date 2020-11-14 00:00:00
team Cyprus
score 2.0
suf_score 1.0
rank 99.0
rank_suf 95.0
rank_change 1.0
total_points 1225.0
result 0
rank_dif 4.0
points_by_rank 0.031579
team_points 3
country_classification Classe B
Name: 1614, dtype: object
date 2020-11-14 00:00:00
team Malta
score 3.0
suf_score 1.0
rank 180.0
rank_suf 145.0
rank_change -6.0
total_points 934.0
result 0
rank_dif 35.0
points_by_rank 0.02069
team_points 3
country_classification Classe D
Name: 1615, dtype: object
date 2020-11-14 00:00:00
team Latvia
score 1.0
suf_score 1.0
rank 142.0
rank_suf 107.0
rank_change 5.0
total_points 1071.0
result 2
rank_dif 35.0
points_by_rank 0.009346
team_points 1
country_classification Classe C
Name: 1616, dtype: object
date 2020-11-14 00:00:00
team San Marino
score 0.0
suf_score 0.0
rank 210.0
rank_suf 195.0
rank_change 0.0
total_points 812.0
result 2
rank_dif 15.0
points_by_rank 0.005128
team_points 1
country_classification Classe D
Name: 1617, dtype: object
date 2020-11-14 00:00:00
team Mexico
score 3.0
suf_score 2.0
rank 11.0
rank_suf 38.0
rank_change 0.0
total_points 1625.0
result 0
rank_dif -27.0
points_by_rank 0.078947
team_points 3
country_classification Classe S-
Name: 1618, dtype: object
date 2020-11-14 00:00:00
team Saudi Arabia
score 3.0
suf_score 0.0
rank 67.0
rank_suf 48.0
rank_change 1.0
total_points 1351.0
result 0
rank_dif 19.0
points_by_rank 0.0625
team_points 3
country_classification Classe B
Name: 1619, dtype: object
date 2020-11-15 00:00:00
team Netherlands
score 3.0
suf_score 1.0
rank 15.0
rank_suf 51.0
rank_change 2.0
total_points 1596.0
result 0
rank_dif -36.0
points_by_rank 0.058824
team_points 3
country_classification Classe A
Name: 1620, dtype: object
date 2020-11-15 00:00:00
team Italy
score 2.0
suf_score 0.0
rank 12.0
rank_suf 18.0
rank_change 0.0
total_points 1612.0
result 0
rank_dif -6.0
points_by_rank 0.166667
team_points 3
country_classification Classe S-
Name: 1621, dtype: object
date 2020-11-15 00:00:00
team Belgium
score 2.0
suf_score 0.0
rank 1.0
rank_suf 4.0
rank_change 0.0
total_points 1765.0
result 0
rank_dif -3.0
points_by_rank 0.75
team_points 3
country_classification Classe S
Name: 1622, dtype: object
date 2020-11-15 00:00:00
team Denmark
score 2.0
suf_score 1.0
rank 13.0
rank_suf 39.0
rank_change -3.0
total_points 1610.0
result 0
rank_dif -26.0
points_by_rank 0.076923
team_points 3
country_classification Classe S-
Name: 1623, dtype: object
date 2020-11-15 00:00:00
team Austria
score 2.0
suf_score 1.0
rank 25.0
rank_suf 41.0
rank_change -2.0
total_points 1523.0
result 0
rank_dif -16.0
points_by_rank 0.073171
team_points 3
country_classification Classe A
Name: 1624, dtype: object
date 2020-11-15 00:00:00
team Romania
score 3.0
suf_score 0.0
rank 44.0
rank_suf 43.0
rank_change 10.0
total_points 1455.0
result 0
rank_dif 1.0
points_by_rank 0.069767
team_points 3
country_classification Classe A
Name: 1625, dtype: object
date 2020-11-15 00:00:00
team Slovakia
score 1.0
suf_score 0.0
rank 37.0
rank_suf 45.0
rank_change 1.0
total_points 1466.0
result 0
rank_dif -8.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 1626, dtype: object
date 2020-11-15 00:00:00
team Czech Republic
score 1.0
suf_score 0.0
rank 45.0
rank_suf 88.0
rank_change 0.0
total_points 1446.0
result 0
rank_dif -43.0
points_by_rank 0.034091
team_points 3
country_classification Classe A
Name: 1627, dtype: object
date 2020-11-15 00:00:00
team Turkey
score 3.0
suf_score 2.0
rank 33.0
rank_suf 34.0
rank_change 1.0
total_points 1486.0
result 0
rank_dif -1.0
points_by_rank 0.088235
team_points 3
country_classification Classe A
Name: 1628, dtype: object
date 2020-11-15 00:00:00
team Hungary
score 1.0
suf_score 1.0
rank 47.0
rank_suf 30.0
rank_change -5.0
total_points 1439.0
result 2
rank_dif 17.0
points_by_rank 0.033333
team_points 1
country_classification Classe A
Name: 1629, dtype: object
date 2020-11-15 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 20.0
rank_suf 36.0
rank_change -1.0
total_points 1550.0
result 0
rank_dif -16.0
points_by_rank 0.083333
team_points 3
country_classification Classe A
Name: 1630, dtype: object
date 2020-11-15 00:00:00
team Bulgaria
score 1.0
suf_score 2.0
rank 66.0
rank_suf 55.0
rank_change 6.0
total_points 1354.0
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1631, dtype: object
date 2020-11-15 00:00:00
team North Macedonia
score 2.0
suf_score 1.0
rank 65.0
rank_suf 109.0
rank_change -1.0
total_points 1356.0
result 0
rank_dif -44.0
points_by_rank 0.027523
team_points 3
country_classification Classe B
Name: 1632, dtype: object
date 2020-11-15 00:00:00
team Georgia
score 1.0
suf_score 2.0
rank 86.0
rank_suf 101.0
rank_change -3.0
total_points 1287.0
result 1
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1633, dtype: object
date 2020-11-15 00:00:00
team Slovenia
score 2.0
suf_score 1.0
rank 62.0
rank_suf 117.0
rank_change -2.0
total_points 1376.0
result 0
rank_dif -55.0
points_by_rank 0.025641
team_points 3
country_classification Classe B
Name: 1634, dtype: object
date 2020-11-15 00:00:00
team Moldova
score 0.0
suf_score 2.0
rank 175.0
rank_suf 54.0
rank_change 0.0
total_points 954.0
result 1
rank_dif 121.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1635, dtype: object
date 2020-11-15 00:00:00
team Albania
score 3.0
suf_score 1.0
rank 69.0
rank_suf 119.0
rank_change 3.0
total_points 1345.0
result 0
rank_dif -50.0
points_by_rank 0.02521
team_points 3
country_classification Classe B
Name: 1636, dtype: object
date 2020-11-15 00:00:00
team Belarus
score 2.0
suf_score 0.0
rank 90.0
rank_suf 130.0
rank_change 3.0
total_points 1273.0
result 0
rank_dif -40.0
points_by_rank 0.023077
team_points 3
country_classification Classe B
Name: 1637, dtype: object
date 2020-11-15 00:00:00
team Guatemala
score 2.0
suf_score 1.0
rank 131.0
rank_suf 63.0
rank_change 1.0
total_points 1103.0
result 0
rank_dif 68.0
points_by_rank 0.047619
team_points 3
country_classification Classe C
Name: 1638, dtype: object
date 2020-11-16 00:00:00
team Jordan
score 1.0
suf_score 0.0
rank 97.0
rank_suf 79.0
rank_change 1.0
total_points 1238.0
result 0
rank_dif 18.0
points_by_rank 0.037975
team_points 3
country_classification Classe B
Name: 1639, dtype: object
date 2020-11-16 00:00:00
team United Arab Emirates
score 1.0
suf_score 0.0
rank 74.0
rank_suf 99.0
rank_change 3.0
total_points 1329.0
result 0
rank_dif -25.0
points_by_rank 0.030303
team_points 3
country_classification Classe B
Name: 1640, dtype: object
date 2020-11-16 00:00:00
team United States
score 6.0
suf_score 2.0
rank 22.0
rank_suf 77.0
rank_change -1.0
total_points 1542.0
result 0
rank_dif -55.0
points_by_rank 0.038961
team_points 3
country_classification Classe A
Name: 1641, dtype: object
date 2020-11-17 00:00:00
team Croatia
score 2.0
suf_score 3.0
rank 9.0
rank_suf 5.0
rank_change 1.0
total_points 1634.0
result 1
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1642, dtype: object
date 2020-11-17 00:00:00
team France
score 4.0
suf_score 2.0
rank 2.0
rank_suf 19.0
rank_change 0.0
total_points 1752.0
result 0
rank_dif -17.0
points_by_rank 0.157895
team_points 3
country_classification Classe S
Name: 1643, dtype: object
date 2020-11-17 00:00:00
team Spain
score 6.0
suf_score 0.0
rank 6.0
rank_suf 14.0
rank_change -1.0
total_points 1639.0
result 0
rank_dif -8.0
points_by_rank 0.214286
team_points 3
country_classification Classe S-
Name: 1644, dtype: object
date 2020-11-17 00:00:00
team Switzerland
score 3.0
suf_score 0.0
rank 16.0
rank_suf 23.0
rank_change 1.0
total_points 1589.0
result 0
rank_dif -7.0
points_by_rank 0.130435
team_points 3
country_classification Classe A
Name: 1645, dtype: object
date 2020-11-17 00:00:00
team Luxembourg
score 0.0
suf_score 0.0
rank 95.0
rank_suf 114.0
rank_change -2.0
total_points 1247.0
result 2
rank_dif -19.0
points_by_rank 0.008772
team_points 1
country_classification Classe B
Name: 1646, dtype: object
date 2020-11-17 00:00:00
team Montenegro
score 4.0
suf_score 0.0
rank 64.0
rank_suf 99.0
rank_change 1.0
total_points 1369.0
result 0
rank_dif -35.0
points_by_rank 0.030303
team_points 3
country_classification Classe B
Name: 1647, dtype: object
date 2020-11-17 00:00:00
team Andorra
score 0.0
suf_score 5.0
rank 145.0
rank_suf 142.0
rank_change 8.0
total_points 1065.0
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1648, dtype: object
date 2020-11-17 00:00:00
team Malta
score 1.0
suf_score 1.0
rank 180.0
rank_suf 107.0
rank_change -6.0
total_points 934.0
result 2
rank_dif 73.0
points_by_rank 0.009346
team_points 1
country_classification Classe D
Name: 1649, dtype: object
date 2020-11-17 00:00:00
team Gibraltar
score 1.0
suf_score 1.0
rank 195.0
rank_suf 181.0
rank_change 0.0
total_points 890.0
result 2
rank_dif 14.0
points_by_rank 0.005525
team_points 1
country_classification Classe D
Name: 1650, dtype: object
date 2020-11-17 00:00:00
team Bangladesh
score 0.0
suf_score 0.0
rank 187.0
rank_suf 170.0
rank_change 0.0
total_points 914.0
result 2
rank_dif 17.0
points_by_rank 0.005882
team_points 1
country_classification Classe D
Name: 1651, dtype: object
date 2020-11-17 00:00:00
team Japan
score 0.0
suf_score 2.0
rank 27.0
rank_suf 11.0
rank_change -1.0
total_points 1503.0
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1652, dtype: object
date 2020-11-17 00:00:00
team South Korea
score 2.0
suf_score 1.0
rank 38.0
rank_suf 57.0
rank_change -1.0
total_points 1464.0
result 0
rank_dif -19.0
points_by_rank 0.052632
team_points 3
country_classification Classe A
Name: 1653, dtype: object
date 2020-11-17 00:00:00
team Saudi Arabia
score 1.0
suf_score 2.0
rank 67.0
rank_suf 48.0
rank_change 1.0
total_points 1351.0
result 1
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1654, dtype: object
date 2020-11-17 00:00:00
team Uzbekistan
score 1.0
suf_score 2.0
rank 84.0
rank_suf 70.0
rank_change -1.0
total_points 1292.0
result 1
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1655, dtype: object
date 2020-11-17 00:00:00
team Ecuador
score 6.0
suf_score 1.0
rank 60.0
rank_suf 10.0
rank_change -4.0
total_points 1380.0
result 0
rank_dif 50.0
points_by_rank 0.3
team_points 3
country_classification Classe B
Name: 1656, dtype: object
date 2020-11-17 00:00:00
team Venezuela
score 2.0
suf_score 1.0
rank 28.0
rank_suf 17.0
rank_change 3.0
total_points 1493.0
result 0
rank_dif 11.0
points_by_rank 0.176471
team_points 3
country_classification Classe A
Name: 1657, dtype: object
date 2020-11-17 00:00:00
team Peru
score 0.0
suf_score 2.0
rank 24.0
rank_suf 8.0
rank_change 2.0
total_points 1533.0
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1658, dtype: object
date 2020-11-17 00:00:00
team Paraguay
score 2.0
suf_score 2.0
rank 35.0
rank_suf 79.0
rank_change -5.0
total_points 1476.0
result 2
rank_dif -44.0
points_by_rank 0.012658
team_points 1
country_classification Classe A
Name: 1659, dtype: object
date 2020-11-17 00:00:00
team Uruguay
score 0.0
suf_score 2.0
rank 7.0
rank_suf 3.0
rank_change 1.0
total_points 1637.0
result 1
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1660, dtype: object
date 2020-11-18 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 2.0
rank 51.0
rank_suf 12.0
rank_change 1.0
total_points 1424.0
result 1
rank_dif 39.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1661, dtype: object
date 2020-11-18 00:00:00
team Poland
score 1.0
suf_score 2.0
rank 18.0
rank_suf 15.0
rank_change -1.0
total_points 1568.0
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1662, dtype: object
date 2020-11-18 00:00:00
team England
score 4.0
suf_score 0.0
rank 4.0
rank_suf 39.0
rank_change 0.0
total_points 1669.0
result 0
rank_dif -35.0
points_by_rank 0.076923
team_points 3
country_classification Classe S-
Name: 1663, dtype: object
date 2020-11-18 00:00:00
team Belgium
score 4.0
suf_score 2.0
rank 1.0
rank_suf 13.0
rank_change 0.0
total_points 1765.0
result 0
rank_dif -12.0
points_by_rank 0.230769
team_points 3
country_classification Classe S
Name: 1664, dtype: object
date 2020-11-18 00:00:00
team Northern Ireland
score 1.0
suf_score 1.0
rank 41.0
rank_suf 44.0
rank_change 3.0
total_points 1458.0
result 2
rank_dif -3.0
points_by_rank 0.022727
team_points 1
country_classification Classe A
Name: 1665, dtype: object
date 2020-11-18 00:00:00
team Austria
score 1.0
suf_score 1.0
rank 25.0
rank_suf 43.0
rank_change -2.0
total_points 1523.0
result 2
rank_dif -18.0
points_by_rank 0.023256
team_points 1
country_classification Classe A
Name: 1666, dtype: object
date 2020-11-18 00:00:00
team Czech Republic
score 2.0
suf_score 0.0
rank 45.0
rank_suf 37.0
rank_change 0.0
total_points 1446.0
result 0
rank_dif 8.0
points_by_rank 0.081081
team_points 3
country_classification Classe A
Name: 1667, dtype: object
date 2020-11-18 00:00:00
team Israel
score 1.0
suf_score 0.0
rank 88.0
rank_suf 45.0
rank_change -5.0
total_points 1275.0
result 0
rank_dif 43.0
points_by_rank 0.066667
team_points 3
country_classification Classe B
Name: 1668, dtype: object
date 2020-11-18 00:00:00
team Hungary
score 2.0
suf_score 0.0
rank 47.0
rank_suf 33.0
rank_change -5.0
total_points 1439.0
result 0
rank_dif 14.0
points_by_rank 0.090909
team_points 3
country_classification Classe A
Name: 1669, dtype: object
date 2020-11-18 00:00:00
team Serbia
score 5.0
suf_score 0.0
rank 30.0
rank_suf 34.0
rank_change -1.0
total_points 1489.0
result 0
rank_dif -4.0
points_by_rank 0.088235
team_points 3
country_classification Classe A
Name: 1670, dtype: object
date 2020-11-18 00:00:00
team Republic of Ireland
score 0.0
suf_score 0.0
rank 36.0
rank_suf 66.0
rank_change -1.0
total_points 1467.0
result 2
rank_dif -30.0
points_by_rank 0.015152
team_points 1
country_classification Classe A
Name: 1671, dtype: object
date 2020-11-18 00:00:00
team Wales
score 3.0
suf_score 1.0
rank 20.0
rank_suf 55.0
rank_change -1.0
total_points 1550.0
result 0
rank_dif -35.0
points_by_rank 0.054545
team_points 3
country_classification Classe A
Name: 1672, dtype: object
date 2020-11-18 00:00:00
team Armenia
score 1.0
suf_score 0.0
rank 101.0
rank_suf 65.0
rank_change 0.0
total_points 1215.0
result 0
rank_dif 36.0
points_by_rank 0.046154
team_points 3
country_classification Classe B
Name: 1673, dtype: object
date 2020-11-18 00:00:00
team Georgia
score 0.0
suf_score 0.0
rank 86.0
rank_suf 109.0
rank_change -3.0
total_points 1287.0
result 2
rank_dif -23.0
points_by_rank 0.009174
team_points 1
country_classification Classe B
Name: 1674, dtype: object
date 2020-11-18 00:00:00
team Kosovo
score 1.0
suf_score 0.0
rank 117.0
rank_suf 175.0
rank_change 1.0
total_points 1158.0
result 0
rank_dif -58.0
points_by_rank 0.017143
team_points 3
country_classification Classe C
Name: 1675, dtype: object
date 2020-11-18 00:00:00
team Greece
score 0.0
suf_score 0.0
rank 54.0
rank_suf 62.0
rank_change 1.0
total_points 1408.0
result 2
rank_dif -8.0
points_by_rank 0.016129
team_points 1
country_classification Classe A
Name: 1676, dtype: object
date 2020-11-18 00:00:00
team Albania
score 3.0
suf_score 2.0
rank 69.0
rank_suf 90.0
rank_change 3.0
total_points 1345.0
result 0
rank_dif -21.0
points_by_rank 0.033333
team_points 3
country_classification Classe B
Name: 1677, dtype: object
date 2020-11-18 00:00:00
team Kazakhstan
score 1.0
suf_score 2.0
rank 119.0
rank_suf 130.0
rank_change 1.0
total_points 1153.0
result 1
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1678, dtype: object
date 2020-12-04 00:00:00
team Qatar
score 5.0
suf_score 0.0
rank 59.0
rank_suf 184.0
rank_change 2.0
total_points 1387.0
result 0
rank_dif -125.0
points_by_rank 0.016304
team_points 3
country_classification Classe B
Name: 1679, dtype: object
date 2020-12-09 00:00:00
team United States
score 6.0
suf_score 0.0
rank 22.0
rank_suf 70.0
rank_change 0.0
total_points 1545.0
result 0
rank_dif -48.0
points_by_rank 0.042857
team_points 3
country_classification Classe A
Name: 1680, dtype: object
date 2021-01-12 00:00:00
team United Arab Emirates
score 0.0
suf_score 0.0
rank 74.0
rank_suf 69.0
rank_change 0.0
total_points 1326.0
result 2
rank_dif 5.0
points_by_rank 0.014493
team_points 1
country_classification Classe B
Name: 1681, dtype: object
date 2021-01-18 00:00:00
team Kuwait
score 0.0
suf_score 1.0
rank 148.0
rank_suf 102.0
rank_change 0.0
total_points 1060.0
result 1
rank_dif 46.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1682, dtype: object
date 2021-01-19 00:00:00
team Dominican Republic
score 0.0
suf_score 1.0
rank 159.0
rank_suf 179.0
rank_change 0.0
total_points 1019.0
result 1
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1683, dtype: object
date 2021-01-22 00:00:00
team Guatemala
score 1.0
suf_score 0.0
rank 131.0
rank_suf 179.0
rank_change 0.0
total_points 1111.0
result 0
rank_dif -48.0
points_by_rank 0.01676
team_points 3
country_classification Classe C
Name: 1684, dtype: object
date 2021-01-25 00:00:00
team Dominican Republic
score 0.0
suf_score 0.0
rank 159.0
rank_suf 30.0
rank_change 0.0
total_points 1019.0
result 2
rank_dif 129.0
points_by_rank 0.033333
team_points 1
country_classification Classe C
Name: 1685, dtype: object
date 2021-01-27 00:00:00
team Iraq
score 2.0
suf_score 1.0
rank 69.0
rank_suf 148.0
rank_change 0.0
total_points 1347.0
result 0
rank_dif -79.0
points_by_rank 0.02027
team_points 3
country_classification Classe B
Name: 1686, dtype: object
date 2021-01-28 00:00:00
team Panama
score 0.0
suf_score 0.0
rank 78.0
rank_suf 30.0
rank_change 0.0
total_points 1311.0
result 2
rank_dif 48.0
points_by_rank 0.033333
team_points 1
country_classification Classe B
Name: 1687, dtype: object
date 2021-01-31 00:00:00
team United States
score 7.0
suf_score 0.0
rank 22.0
rank_suf 103.0
rank_change 0.0
total_points 1545.0
result 0
rank_dif -81.0
points_by_rank 0.029126
team_points 3
country_classification Classe A
Name: 1688, dtype: object
date 2021-02-01 00:00:00
team Jordan
score 2.0
suf_score 0.0
rank 95.0
rank_suf 121.0
rank_change 0.0
total_points 1244.0
result 0
rank_dif -26.0
points_by_rank 0.024793
team_points 3
country_classification Classe B
Name: 1689, dtype: object
date 2021-02-05 00:00:00
team Jordan
score 0.0
suf_score 1.0
rank 95.0
rank_suf 121.0
rank_change 0.0
total_points 1244.0
result 1
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1690, dtype: object
date 2021-02-15 00:00:00
team Jordan
score 0.0
suf_score 2.0
rank 95.0
rank_suf 85.0
rank_change 0.0
total_points 1244.0
result 1
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1691, dtype: object
date 2021-02-24 00:00:00
team Guatemala
score 1.0
suf_score 0.0
rank 130.0
rank_suf 149.0
rank_change -1.0
total_points 1112.0
result 0
rank_dif -19.0
points_by_rank 0.020134
team_points 3
country_classification Classe C
Name: 1692, dtype: object
date 2021-03-13 00:00:00
team Kenya
score 1.0
suf_score 0.0
rank 104.0
rank_suf 163.0
rank_change 0.0
total_points 1187.0
result 0
rank_dif -59.0
points_by_rank 0.018405
team_points 3
country_classification Classe C
Name: 1693, dtype: object
date 2021-03-15 00:00:00
team Kenya
score 2.0
suf_score 1.0
rank 104.0
rank_suf 135.0
rank_change 0.0
total_points 1187.0
result 0
rank_dif -31.0
points_by_rank 0.022222
team_points 3
country_classification Classe C
Name: 1694, dtype: object
date 2021-03-17 00:00:00
team Ethiopia
score 4.0
suf_score 0.0
rank 146.0
rank_suf 123.0
rank_change 0.0
total_points 1066.0
result 0
rank_dif 23.0
points_by_rank 0.02439
team_points 3
country_classification Classe C
Name: 1695, dtype: object
date 2021-03-20 00:00:00
team Oman
score 0.0
suf_score 0.0
rank 81.0
rank_suf 95.0
rank_change -1.0
total_points 1303.0
result 2
rank_dif -14.0
points_by_rank 0.010526
team_points 1
country_classification Classe B
Name: 1696, dtype: object
date 2021-03-24 00:00:00
team Belarus
score 1.0
suf_score 1.0
rank 88.0
rank_suf 64.0
rank_change 0.0
total_points 1269.0
result 2
rank_dif 24.0
points_by_rank 0.015625
team_points 1
country_classification Classe B
Name: 1697, dtype: object
date 2021-03-24 00:00:00
team Jordan
score 1.0
suf_score 0.0
rank 95.0
rank_suf 92.0
rank_change 0.0
total_points 1243.0
result 0
rank_dif 3.0
points_by_rank 0.032609
team_points 3
country_classification Classe B
Name: 1698, dtype: object
date 2021-03-24 00:00:00
team Kosovo
score 4.0
suf_score 0.0
rank 117.0
rank_suf 129.0
rank_change 0.0
total_points 1155.0
result 0
rank_dif -12.0
points_by_rank 0.023256
team_points 3
country_classification Classe C
Name: 1699, dtype: object
date 2021-03-24 00:00:00
team Qatar
score 1.0
suf_score 0.0
rank 58.0
rank_suf 98.0
rank_change 0.0
total_points 1391.0
result 0
rank_dif -40.0
points_by_rank 0.030612
team_points 3
country_classification Classe B
Name: 1700, dtype: object
date 2021-03-24 00:00:00
team Antigua and Barbuda
score 2.0
suf_score 2.0
rank 126.0
rank_suf 183.0
rank_change 0.0
total_points 1127.0
result 2
rank_dif -57.0
points_by_rank 0.005464
team_points 1
country_classification Classe C
Name: 1701, dtype: object
date 2021-03-24 00:00:00
team Suriname
score 3.0
suf_score 0.0
rank 141.0
rank_suf 193.0
rank_change 0.0
total_points 1073.0
result 0
rank_dif -52.0
points_by_rank 0.015544
team_points 3
country_classification Classe C
Name: 1702, dtype: object
date 2021-03-24 00:00:00
team Guatemala
score 1.0
suf_score 0.0
rank 130.0
rank_suf 180.0
rank_change -1.0
total_points 1112.0
result 0
rank_dif -50.0
points_by_rank 0.016667
team_points 3
country_classification Classe C
Name: 1703, dtype: object
date 2021-03-24 00:00:00
team Dominican Republic
score 1.0
suf_score 0.0
rank 159.0
rank_suf 184.0
rank_change 0.0
total_points 1018.0
result 0
rank_dif -25.0
points_by_rank 0.016304
team_points 3
country_classification Classe C
Name: 1704, dtype: object
date 2021-03-24 00:00:00
team Portugal
score 1.0
suf_score 0.0
rank 5.0
rank_suf 108.0
rank_change 0.0
total_points 1662.0
result 0
rank_dif -103.0
points_by_rank 0.027778
team_points 3
country_classification Classe S-
Name: 1705, dtype: object
date 2021-03-24 00:00:00
team Serbia
score 3.0
suf_score 2.0
rank 30.0
rank_suf 42.0
rank_change 0.0
total_points 1492.0
result 0
rank_dif -12.0
points_by_rank 0.071429
team_points 3
country_classification Classe A
Name: 1706, dtype: object
date 2021-03-24 00:00:00
team France
score 1.0
suf_score 1.0
rank 2.0
rank_suf 24.0
rank_change 0.0
total_points 1755.0
result 2
rank_dif -22.0
points_by_rank 0.041667
team_points 1
country_classification Classe S
Name: 1707, dtype: object
date 2021-03-24 00:00:00
team Finland
score 2.0
suf_score 2.0
rank 55.0
rank_suf 56.0
rank_change 1.0
total_points 1411.0
result 2
rank_dif -1.0
points_by_rank 0.017857
team_points 1
country_classification Classe A
Name: 1708, dtype: object
date 2021-03-24 00:00:00
team Belgium
score 3.0
suf_score 1.0
rank 1.0
rank_suf 18.0
rank_change 0.0
total_points 1780.0
result 0
rank_dif -17.0
points_by_rank 0.166667
team_points 3
country_classification Classe S
Name: 1709, dtype: object
date 2021-03-24 00:00:00
team Estonia
score 2.0
suf_score 6.0
rank 108.0
rank_suf 42.0
rank_change -1.0
total_points 1180.0
result 1
rank_dif 66.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1710, dtype: object
date 2021-03-24 00:00:00
team Turkey
score 4.0
suf_score 2.0
rank 32.0
rank_suf 14.0
rank_change 0.0
total_points 1487.0
result 0
rank_dif 18.0
points_by_rank 0.214286
team_points 3
country_classification Classe A
Name: 1711, dtype: object
date 2021-03-24 00:00:00
team Gibraltar
score 0.0
suf_score 3.0
rank 195.0
rank_suf 44.0
rank_change 0.0
total_points 888.0
result 1
rank_dif 151.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1712, dtype: object
date 2021-03-24 00:00:00
team Latvia
score 1.0
suf_score 2.0
rank 136.0
rank_suf 63.0
rank_change 0.0
total_points 1082.0
result 1
rank_dif 73.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1713, dtype: object
date 2021-03-24 00:00:00
team Malta
score 1.0
suf_score 3.0
rank 176.0
rank_suf 39.0
rank_change 0.0
total_points 951.0
result 1
rank_dif 137.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1714, dtype: object
date 2021-03-24 00:00:00
team Slovenia
score 1.0
suf_score 0.0
rank 62.0
rank_suf 11.0
rank_change 0.0
total_points 1379.0
result 0
rank_dif 51.0
points_by_rank 0.272727
team_points 3
country_classification Classe B
Name: 1715, dtype: object
date 2021-03-24 00:00:00
team Cyprus
score 0.0
suf_score 0.0
rank 100.0
rank_suf 34.0
rank_change 0.0
total_points 1224.0
result 2
rank_dif 66.0
points_by_rank 0.029412
team_points 1
country_classification Classe B
Name: 1716, dtype: object
date 2021-03-24 00:00:00
team Chad
score 0.0
suf_score 3.0
rank 178.0
rank_suf 121.0
rank_change 0.0
total_points 947.0
result 1
rank_dif 57.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1717, dtype: object
date 2021-03-24 00:00:00
team Guinea
score 1.0
suf_score 0.0
rank 72.0
rank_suf 54.0
rank_change -1.0
total_points 1334.0
result 0
rank_dif 18.0
points_by_rank 0.055556
team_points 3
country_classification Classe B
Name: 1718, dtype: object
date 2021-03-24 00:00:00
team South Sudan
score 0.0
suf_score 1.0
rank 163.0
rank_suf 123.0
rank_change 0.0
total_points 998.0
result 1
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1719, dtype: object
date 2021-03-24 00:00:00
team Uganda
score 0.0
suf_score 0.0
rank 83.0
rank_suf 58.0
rank_change 4.0
total_points 1301.0
result 2
rank_dif 25.0
points_by_rank 0.017241
team_points 1
country_classification Classe B
Name: 1720, dtype: object
date 2021-03-24 00:00:00
team São Tomé and Príncipe
score 0.0
suf_score 2.0
rank 187.0
rank_suf 127.0
rank_change 0.0
total_points 914.0
result 1
rank_dif 60.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1721, dtype: object
date 2021-03-24 00:00:00
team Rwanda
score 1.0
suf_score 0.0
rank 133.0
rank_suf 106.0
rank_change 0.0
total_points 1103.0
result 0
rank_dif 27.0
points_by_rank 0.028302
team_points 3
country_classification Classe C
Name: 1722, dtype: object
date 2021-03-24 00:00:00
team Ethiopia
score 4.0
suf_score 0.0
rank 146.0
rank_suf 94.0
rank_change 0.0
total_points 1066.0
result 0
rank_dif 52.0
points_by_rank 0.031915
team_points 3
country_classification Classe C
Name: 1723, dtype: object
date 2021-03-25 00:00:00
team Bahrain
score 3.0
suf_score 1.0
rank 97.0
rank_suf 76.0
rank_change 0.0
total_points 1238.0
result 0
rank_dif 21.0
points_by_rank 0.039474
team_points 3
country_classification Classe B
Name: 1724, dtype: object
date 2021-03-25 00:00:00
team India
score 1.0
suf_score 1.0
rank 104.0
rank_suf 81.0
rank_change 0.0
total_points 1187.0
result 2
rank_dif 23.0
points_by_rank 0.012346
team_points 1
country_classification Classe C
Name: 1725, dtype: object
date 2021-03-25 00:00:00
team Japan
score 3.0
suf_score 0.0
rank 27.0
rank_suf 38.0
rank_change 0.0
total_points 1502.0
result 0
rank_dif -11.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 1726, dtype: object
date 2021-03-25 00:00:00
team Saudi Arabia
score 1.0
suf_score 0.0
rank 67.0
rank_suf 148.0
rank_change 0.0
total_points 1353.0
result 0
rank_dif -81.0
points_by_rank 0.02027
team_points 3
country_classification Classe B
Name: 1727, dtype: object
date 2021-03-25 00:00:00
team United States
score 4.0
suf_score 1.0
rank 22.0
rank_suf 47.0
rank_change 0.0
total_points 1548.0
result 0
rank_dif -25.0
points_by_rank 0.06383
team_points 3
country_classification Classe A
Name: 1728, dtype: object
date 2021-03-25 00:00:00
team El Salvador
score 2.0
suf_score 0.0
rank 70.0
rank_suf 160.0
rank_change 0.0
total_points 1344.0
result 0
rank_dif -90.0
points_by_rank 0.01875
team_points 3
country_classification Classe B
Name: 1729, dtype: object
date 2021-03-25 00:00:00
team Canada
score 5.0
suf_score 1.0
rank 73.0
rank_suf 169.0
rank_change 1.0
total_points 1332.0
result 0
rank_dif -96.0
points_by_rank 0.017751
team_points 3
country_classification Classe B
Name: 1730, dtype: object
date 2021-03-25 00:00:00
team Panama
score 1.0
suf_score 0.0
rank 78.0
rank_suf 162.0
rank_change 0.0
total_points 1312.0
result 0
rank_dif -84.0
points_by_rank 0.018519
team_points 3
country_classification Classe B
Name: 1731, dtype: object
date 2021-03-25 00:00:00
team Haiti
score 2.0
suf_score 0.0
rank 84.0
rank_suf 170.0
rank_change 0.0
total_points 1285.0
result 0
rank_dif -86.0
points_by_rank 0.017647
team_points 3
country_classification Classe B
Name: 1732, dtype: object
date 2021-03-25 00:00:00
team Trinidad and Tobago
score 3.0
suf_score 0.0
rank 103.0
rank_suf 167.0
rank_change 0.0
total_points 1200.0
result 0
rank_dif -64.0
points_by_rank 0.017964
team_points 3
country_classification Classe C
Name: 1733, dtype: object
date 2021-03-25 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 6.0
rank_suf 53.0
rank_change 0.0
total_points 1645.0
result 2
rank_dif -47.0
points_by_rank 0.018868
team_points 1
country_classification Classe S-
Name: 1734, dtype: object
date 2021-03-25 00:00:00
team Sweden
score 1.0
suf_score 0.0
rank 20.0
rank_suf 89.0
rank_change 0.0
total_points 1558.0
result 0
rank_dif -69.0
points_by_rank 0.033708
team_points 3
country_classification Classe A
Name: 1735, dtype: object
date 2021-03-25 00:00:00
team Bulgaria
score 1.0
suf_score 3.0
rank 68.0
rank_suf 16.0
rank_change 0.0
total_points 1350.0
result 1
rank_dif 52.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1736, dtype: object
date 2021-03-25 00:00:00
team Italy
score 2.0
suf_score 0.0
rank 10.0
rank_suf 45.0
rank_change 0.0
total_points 1625.0
result 0
rank_dif -35.0
points_by_rank 0.066667
team_points 3
country_classification Classe S-
Name: 1737, dtype: object
date 2021-03-25 00:00:00
team Israel
score 0.0
suf_score 2.0
rank 87.0
rank_suf 12.0
rank_change 0.0
total_points 1279.0
result 1
rank_dif 75.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1738, dtype: object
date 2021-03-25 00:00:00
team Scotland
score 2.0
suf_score 2.0
rank 48.0
rank_suf 23.0
rank_change 0.0
total_points 1436.0
result 2
rank_dif 25.0
points_by_rank 0.043478
team_points 1
country_classification Classe A
Name: 1739, dtype: object
date 2021-03-25 00:00:00
team Moldova
score 1.0
suf_score 1.0
rank 177.0
rank_suf 107.0
rank_change 0.0
total_points 950.0
result 2
rank_dif 70.0
points_by_rank 0.009346
team_points 1
country_classification Classe D
Name: 1740, dtype: object
date 2021-03-25 00:00:00
team England
score 5.0
suf_score 0.0
rank 4.0
rank_suf 210.0
rank_change 0.0
total_points 1670.0
result 0
rank_dif -206.0
points_by_rank 0.014286
team_points 3
country_classification Classe S-
Name: 1741, dtype: object
date 2021-03-25 00:00:00
team Andorra
score 0.0
suf_score 1.0
rank 151.0
rank_suf 66.0
rank_change 0.0
total_points 1048.0
result 1
rank_dif 85.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1742, dtype: object
date 2021-03-25 00:00:00
team Hungary
score 3.0
suf_score 3.0
rank 40.0
rank_suf 19.0
rank_change 0.0
total_points 1460.0
result 2
rank_dif 21.0
points_by_rank 0.052632
team_points 1
country_classification Classe A
Name: 1743, dtype: object
date 2021-03-25 00:00:00
team Germany
score 3.0
suf_score 0.0
rank 13.0
rank_suf 46.0
rank_change 0.0
total_points 1610.0
result 0
rank_dif -33.0
points_by_rank 0.065217
team_points 3
country_classification Classe S-
Name: 1744, dtype: object
date 2021-03-25 00:00:00
team Liechtenstein
score 0.0
suf_score 1.0
rank 181.0
rank_suf 99.0
rank_change 0.0
total_points 924.0
result 1
rank_dif 82.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1745, dtype: object
date 2021-03-25 00:00:00
team Romania
score 3.0
suf_score 2.0
rank 37.0
rank_suf 65.0
rank_change 0.0
total_points 1466.0
result 0
rank_dif -28.0
points_by_rank 0.046154
team_points 3
country_classification Classe A
Name: 1746, dtype: object
date 2021-03-25 00:00:00
team South Africa
score 1.0
suf_score 1.0
rank 71.0
rank_suf 52.0
rank_change 0.0
total_points 1341.0
result 2
rank_dif 19.0
points_by_rank 0.019231
team_points 1
country_classification Classe B
Name: 1747, dtype: object
date 2021-03-25 00:00:00
team Gambia
score 1.0
suf_score 0.0
rank 157.0
rank_suf 125.0
rank_change 0.0
total_points 1034.0
result 0
rank_dif 32.0
points_by_rank 0.024
team_points 3
country_classification Classe C
Name: 1748, dtype: object
date 2021-03-25 00:00:00
team Comoros
score 0.0
suf_score 0.0
rank 130.0
rank_suf 128.0
rank_change 0.0
total_points 1112.0
result 2
rank_dif 2.0
points_by_rank 0.007812
team_points 1
country_classification Classe C
Name: 1749, dtype: object
date 2021-03-25 00:00:00
team Kenya
score 1.0
suf_score 1.0
rank 104.0
rank_suf 49.0
rank_change 0.0
total_points 1187.0
result 2
rank_dif 55.0
points_by_rank 0.020408
team_points 1
country_classification Classe C
Name: 1750, dtype: object
date 2021-03-25 00:00:00
team Botswana
score 0.0
suf_score 1.0
rank 146.0
rank_suf 112.0
rank_change 0.0
total_points 1066.0
result 1
rank_dif 34.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1751, dtype: object
date 2021-03-25 00:00:00
team Zambia
score 3.0
suf_score 3.0
rank 90.0
rank_suf 31.0
rank_change 0.0
total_points 1265.0
result 2
rank_dif 59.0
points_by_rank 0.032258
team_points 1
country_classification Classe B
Name: 1752, dtype: object
date 2021-03-25 00:00:00
team Equatorial Guinea
score 1.0
suf_score 0.0
rank 134.0
rank_suf 135.0
rank_change 0.0
total_points 1097.0
result 0
rank_dif -1.0
points_by_rank 0.022222
team_points 3
country_classification Classe C
Name: 1753, dtype: object
date 2021-03-25 00:00:00
team Libya
score 2.0
suf_score 5.0
rank 111.0
rank_suf 26.0
rank_change 0.0
total_points 1177.0
result 1
rank_dif 85.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1754, dtype: object
date 2021-03-25 00:00:00
team Tajikistan
score 3.0
suf_score 0.0
rank 120.0
rank_suf 190.0
rank_change -1.0
total_points 1144.0
result 0
rank_dif -70.0
points_by_rank 0.015789
team_points 3
country_classification Classe C
Name: 1755, dtype: object
date 2021-03-26 00:00:00
team Chile
score 2.0
suf_score 1.0
rank 17.0
rank_suf 79.0
rank_change 0.0
total_points 1567.0
result 0
rank_dif -62.0
points_by_rank 0.037975
team_points 3
country_classification Classe A
Name: 1756, dtype: object
date 2021-03-26 00:00:00
team Burundi
score 2.0
suf_score 2.0
rank 138.0
rank_suf 114.0
rank_change 0.0
total_points 1078.0
result 2
rank_dif 24.0
points_by_rank 0.008772
team_points 1
country_classification Classe C
Name: 1757, dtype: object
date 2021-03-26 00:00:00
team Mauritania
score 0.0
suf_score 0.0
rank 101.0
rank_suf 33.0
rank_change 0.0
total_points 1207.0
result 2
rank_dif 68.0
points_by_rank 0.030303
team_points 1
country_classification Classe B
Name: 1758, dtype: object
date 2021-03-26 00:00:00
team Eswatini
score 1.0
suf_score 3.0
rank 153.0
rank_suf 119.0
rank_change 0.0
total_points 1040.0
result 1
rank_dif 34.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1759, dtype: object
date 2021-03-26 00:00:00
team Congo
score 0.0
suf_score 0.0
rank 90.0
rank_suf 20.0
rank_change -1.0
total_points 1265.0
result 2
rank_dif 70.0
points_by_rank 0.05
team_points 1
country_classification Classe B
Name: 1760, dtype: object
date 2021-03-27 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 0.0
rank 56.0
rank_suf 50.0
rank_change 1.0
total_points 1410.0
result 2
rank_dif 6.0
points_by_rank 0.02
team_points 1
country_classification Classe A
Name: 1761, dtype: object
date 2021-03-27 00:00:00
team Nepal
score 0.0
suf_score 0.0
rank 171.0
rank_suf 186.0
rank_change 0.0
total_points 968.0
result 2
rank_dif -15.0
points_by_rank 0.005376
team_points 1
country_classification Classe D
Name: 1762, dtype: object
date 2021-03-27 00:00:00
team Qatar
score 2.0
suf_score 1.0
rank 58.0
rank_suf 108.0
rank_change 0.0
total_points 1391.0
result 0
rank_dif -50.0
points_by_rank 0.027778
team_points 3
country_classification Classe B
Name: 1763, dtype: object
date 2021-03-27 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 18.0
rank_suf 9.0
rank_change 0.0
total_points 1562.0
result 0
rank_dif 9.0
points_by_rank 0.333333
team_points 3
country_classification Classe A
Name: 1764, dtype: object
date 2021-03-27 00:00:00
team Aruba
score 0.0
suf_score 6.0
rank 200.0
rank_suf 141.0
rank_change 0.0
total_points 867.0
result 1
rank_dif 59.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1765, dtype: object
date 2021-03-27 00:00:00
team British Virgin Islands
score 0.0
suf_score 3.0
rank 208.0
rank_suf 130.0
rank_change 0.0
total_points 842.0
result 1
rank_dif 78.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1766, dtype: object
date 2021-03-27 00:00:00
team Anguilla
score 0.0
suf_score 6.0
rank 209.0
rank_suf 159.0
rank_change 0.0
total_points 821.0
result 1
rank_dif 50.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1767, dtype: object
date 2021-03-27 00:00:00
team Turks and Caicos Islands
score 0.0
suf_score 7.0
rank 203.0
rank_suf 149.0
rank_change 0.0
total_points 862.0
result 1
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1768, dtype: object
date 2021-03-27 00:00:00
team Republic of Ireland
score 0.0
suf_score 1.0
rank 42.0
rank_suf 98.0
rank_change 0.0
total_points 1456.0
result 1
rank_dif -56.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1769, dtype: object
date 2021-03-27 00:00:00
team Serbia
score 2.0
suf_score 2.0
rank 30.0
rank_suf 5.0
rank_change 0.0
total_points 1492.0
result 2
rank_dif 25.0
points_by_rank 0.2
team_points 1
country_classification Classe A
Name: 1770, dtype: object
date 2021-03-27 00:00:00
team Belarus
score 4.0
suf_score 2.0
rank 88.0
rank_suf 108.0
rank_change 0.0
total_points 1269.0
result 0
rank_dif -20.0
points_by_rank 0.027778
team_points 3
country_classification Classe B
Name: 1771, dtype: object
date 2021-03-27 00:00:00
team Czech Republic
score 1.0
suf_score 1.0
rank 42.0
rank_suf 1.0
rank_change 0.0
total_points 1456.0
result 2
rank_dif 41.0
points_by_rank 1.0
team_points 1
country_classification Classe A
Name: 1772, dtype: object
date 2021-03-27 00:00:00
team Montenegro
score 4.0
suf_score 1.0
rank 63.0
rank_suf 195.0
rank_change 0.0
total_points 1370.0
result 0
rank_dif -132.0
points_by_rank 0.015385
team_points 3
country_classification Classe B
Name: 1773, dtype: object
date 2021-03-27 00:00:00
team Netherlands
score 2.0
suf_score 0.0
rank 14.0
rank_suf 136.0
rank_change 0.0
total_points 1609.0
result 0
rank_dif -122.0
points_by_rank 0.022059
team_points 3
country_classification Classe S-
Name: 1774, dtype: object
date 2021-03-27 00:00:00
team Norway
score 0.0
suf_score 3.0
rank 44.0
rank_suf 32.0
rank_change 0.0
total_points 1450.0
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1775, dtype: object
date 2021-03-27 00:00:00
team Russia
score 2.0
suf_score 1.0
rank 39.0
rank_suf 62.0
rank_change 0.0
total_points 1461.0
result 0
rank_dif -23.0
points_by_rank 0.048387
team_points 3
country_classification Classe A
Name: 1776, dtype: object
date 2021-03-27 00:00:00
team Croatia
score 1.0
suf_score 0.0
rank 11.0
rank_suf 100.0
rank_change 0.0
total_points 1617.0
result 0
rank_dif -89.0
points_by_rank 0.03
team_points 3
country_classification Classe S-
Name: 1777, dtype: object
date 2021-03-27 00:00:00
team Slovakia
score 2.0
suf_score 2.0
rank 34.0
rank_suf 176.0
rank_change 1.0
total_points 1478.0
result 2
rank_dif -142.0
points_by_rank 0.005682
team_points 1
country_classification Classe A
Name: 1778, dtype: object
date 2021-03-27 00:00:00
team Lesotho
score 0.0
suf_score 0.0
rank 143.0
rank_suf 116.0
rank_change 0.0
total_points 1072.0
result 2
rank_dif 27.0
points_by_rank 0.008621
team_points 1
country_classification Classe C
Name: 1779, dtype: object
date 2021-03-27 00:00:00
team Benin
score 0.0
suf_score 1.0
rank 82.0
rank_suf 36.0
rank_change -1.0
total_points 1302.0
result 1
rank_dif 46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1780, dtype: object
date 2021-03-28 00:00:00
team Greece
score 2.0
suf_score 1.0
rank 53.0
rank_suf 64.0
rank_change 0.0
total_points 1413.0
result 0
rank_dif -11.0
points_by_rank 0.046875
team_points 3
country_classification Classe A
Name: 1781, dtype: object
date 2021-03-28 00:00:00
team Northern Ireland
score 1.0
suf_score 2.0
rank 45.0
rank_suf 22.0
rank_change 0.0
total_points 1440.0
result 1
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1782, dtype: object
date 2021-03-28 00:00:00
team Montserrat
score 1.0
suf_score 1.0
rank 183.0
rank_suf 70.0
rank_change 0.0
total_points 921.0
result 2
rank_dif 113.0
points_by_rank 0.014286
team_points 1
country_classification Classe D
Name: 1783, dtype: object
date 2021-03-28 00:00:00
team Cuba
score 1.0
suf_score 2.0
rank 180.0
rank_suf 76.0
rank_change 0.0
total_points 936.0
result 1
rank_dif 104.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1784, dtype: object
date 2021-03-28 00:00:00
team Dominica
score 1.0
suf_score 2.0
rank 184.0
rank_suf 78.0
rank_change 0.0
total_points 919.0
result 1
rank_dif 106.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1785, dtype: object
date 2021-03-28 00:00:00
team Puerto Rico
score 1.0
suf_score 1.0
rank 179.0
rank_suf 103.0
rank_change 0.0
total_points 942.0
result 2
rank_dif 76.0
points_by_rank 0.009709
team_points 1
country_classification Classe D
Name: 1786, dtype: object
date 2021-03-28 00:00:00
team Georgia
score 1.0
suf_score 2.0
rank 89.0
rank_suf 6.0
rank_change 0.0
total_points 1267.0
result 1
rank_dif 83.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1787, dtype: object
date 2021-03-28 00:00:00
team Kosovo
score 0.0
suf_score 3.0
rank 117.0
rank_suf 20.0
rank_change 0.0
total_points 1155.0
result 1
rank_dif 97.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1788, dtype: object
date 2021-03-28 00:00:00
team Switzerland
score 1.0
suf_score 0.0
rank 16.0
rank_suf 129.0
rank_change 0.0
total_points 1593.0
result 0
rank_dif -113.0
points_by_rank 0.023256
team_points 3
country_classification Classe A
Name: 1789, dtype: object
date 2021-03-28 00:00:00
team Bulgaria
score 0.0
suf_score 2.0
rank 68.0
rank_suf 10.0
rank_change 0.0
total_points 1350.0
result 1
rank_dif 58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1790, dtype: object
date 2021-03-28 00:00:00
team Kazakhstan
score 0.0
suf_score 2.0
rank 122.0
rank_suf 2.0
rank_change 0.0
total_points 1142.0
result 1
rank_dif 120.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1791, dtype: object
date 2021-03-28 00:00:00
team Ukraine
score 1.0
suf_score 1.0
rank 24.0
rank_suf 55.0
rank_change 0.0
total_points 1521.0
result 2
rank_dif -31.0
points_by_rank 0.018182
team_points 1
country_classification Classe A
Name: 1792, dtype: object
date 2021-03-28 00:00:00
team Denmark
score 8.0
suf_score 0.0
rank 12.0
rank_suf 177.0
rank_change 0.0
total_points 1614.0
result 0
rank_dif -165.0
points_by_rank 0.016949
team_points 3
country_classification Classe S-
Name: 1793, dtype: object
date 2021-03-28 00:00:00
team Austria
score 3.0
suf_score 1.0
rank 23.0
rank_suf 107.0
rank_change 0.0
total_points 1531.0
result 0
rank_dif -84.0
points_by_rank 0.028037
team_points 3
country_classification Classe A
Name: 1794, dtype: object
date 2021-03-28 00:00:00
team Israel
score 1.0
suf_score 1.0
rank 87.0
rank_suf 48.0
rank_change 0.0
total_points 1279.0
result 2
rank_dif 39.0
points_by_rank 0.020833
team_points 1
country_classification Classe B
Name: 1795, dtype: object
date 2021-03-28 00:00:00
team Albania
score 0.0
suf_score 2.0
rank 66.0
rank_suf 4.0
rank_change 0.0
total_points 1360.0
result 1
rank_dif 62.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1796, dtype: object
date 2021-03-28 00:00:00
team Poland
score 3.0
suf_score 0.0
rank 19.0
rank_suf 151.0
rank_change 0.0
total_points 1559.0
result 0
rank_dif -132.0
points_by_rank 0.019868
team_points 3
country_classification Classe A
Name: 1797, dtype: object
date 2021-03-28 00:00:00
team San Marino
score 0.0
suf_score 3.0
rank 210.0
rank_suf 40.0
rank_change 0.0
total_points 810.0
result 1
rank_dif 170.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1798, dtype: object
date 2021-03-28 00:00:00
team Armenia
score 2.0
suf_score 0.0
rank 99.0
rank_suf 46.0
rank_change 0.0
total_points 1233.0
result 0
rank_dif 53.0
points_by_rank 0.065217
team_points 3
country_classification Classe B
Name: 1799, dtype: object
date 2021-03-28 00:00:00
team North Macedonia
score 5.0
suf_score 0.0
rank 65.0
rank_suf 181.0
rank_change 0.0
total_points 1362.0
result 0
rank_dif -116.0
points_by_rank 0.016575
team_points 3
country_classification Classe B
Name: 1800, dtype: object
date 2021-03-28 00:00:00
team Romania
score 0.0
suf_score 1.0
rank 37.0
rank_suf 13.0
rank_change 0.0
total_points 1466.0
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1801, dtype: object
date 2021-03-28 00:00:00
team Namibia
score 2.0
suf_score 1.0
rank 121.0
rank_suf 72.0
rank_change 2.0
total_points 1143.0
result 0
rank_dif 49.0
points_by_rank 0.041667
team_points 3
country_classification Classe C
Name: 1802, dtype: object
date 2021-03-28 00:00:00
team Mali
score 3.0
suf_score 0.0
rank 54.0
rank_suf 178.0
rank_change -3.0
total_points 1412.0
result 0
rank_dif -124.0
points_by_rank 0.016854
team_points 3
country_classification Classe A
Name: 1803, dtype: object
date 2021-03-28 00:00:00
team Ghana
score 3.0
suf_score 1.0
rank 52.0
rank_suf 187.0
rank_change 0.0
total_points 1424.0
result 0
rank_dif -135.0
points_by_rank 0.016043
team_points 3
country_classification Classe A
Name: 1804, dtype: object
date 2021-03-28 00:00:00
team Sudan
score 2.0
suf_score 0.0
rank 127.0
rank_suf 71.0
rank_change 0.0
total_points 1124.0
result 0
rank_dif 56.0
points_by_rank 0.042254
team_points 3
country_classification Classe C
Name: 1805, dtype: object
date 2021-03-28 00:00:00
team Tunisia
score 2.0
suf_score 1.0
rank 26.0
rank_suf 134.0
rank_change 0.0
total_points 1503.0
result 0
rank_dif -108.0
points_by_rank 0.022388
team_points 3
country_classification Classe A
Name: 1806, dtype: object
date 2021-03-28 00:00:00
team Tanzania
score 1.0
suf_score 0.0
rank 135.0
rank_suf 111.0
rank_change 0.0
total_points 1087.0
result 0
rank_dif 24.0
points_by_rank 0.027027
team_points 3
country_classification Classe C
Name: 1807, dtype: object
date 2021-03-29 00:00:00
team Ecuador
score 2.0
suf_score 1.0
rank 57.0
rank_suf 79.0
rank_change 1.0
total_points 1409.0
result 0
rank_dif -22.0
points_by_rank 0.037975
team_points 3
country_classification Classe A
Name: 1808, dtype: object
date 2021-03-29 00:00:00
team Kuwait
score 1.0
suf_score 1.0
rank 148.0
rank_suf 92.0
rank_change 0.0
total_points 1057.0
result 2
rank_dif 56.0
points_by_rank 0.01087
team_points 1
country_classification Classe C
Name: 1809, dtype: object
date 2021-03-29 00:00:00
team Nepal
score 2.0
suf_score 1.0
rank 171.0
rank_suf 186.0
rank_change 0.0
total_points 968.0
result 0
rank_dif -15.0
points_by_rank 0.016129
team_points 3
country_classification Classe D
Name: 1810, dtype: object
date 2021-03-29 00:00:00
team Uzbekistan
score 0.0
suf_score 1.0
rank 85.0
rank_suf 69.0
rank_change 0.0
total_points 1283.0
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1811, dtype: object
date 2021-03-29 00:00:00
team Cayman Islands
score 0.0
suf_score 11.0
rank 193.0
rank_suf 73.0
rank_change 0.0
total_points 897.0
result 1
rank_dif 120.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1812, dtype: object
date 2021-03-29 00:00:00
team Burkina Faso
score 1.0
suf_score 0.0
rank 58.0
rank_suf 163.0
rank_change 0.0
total_points 1391.0
result 0
rank_dif -105.0
points_by_rank 0.018405
team_points 3
country_classification Classe B
Name: 1813, dtype: object
date 2021-03-29 00:00:00
team Malawi
score 1.0
suf_score 0.0
rank 123.0
rank_suf 83.0
rank_change 0.0
total_points 1140.0
result 0
rank_dif 40.0
points_by_rank 0.036145
team_points 3
country_classification Classe C
Name: 1814, dtype: object
date 2021-03-29 00:00:00
team Angola
score 2.0
suf_score 0.0
rank 125.0
rank_suf 86.0
rank_change 0.0
total_points 1134.0
result 0
rank_dif 39.0
points_by_rank 0.034884
team_points 3
country_classification Classe C
Name: 1815, dtype: object
date 2021-03-29 00:00:00
team Togo
score 1.0
suf_score 2.0
rank 128.0
rank_suf 104.0
rank_change 0.0
total_points 1115.0
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1816, dtype: object
date 2021-03-29 00:00:00
team Egypt
score 4.0
suf_score 0.0
rank 49.0
rank_suf 130.0
rank_change 0.0
total_points 1432.0
result 0
rank_dif -81.0
points_by_rank 0.023077
team_points 3
country_classification Classe A
Name: 1817, dtype: object
date 2021-03-29 00:00:00
team Algeria
score 5.0
suf_score 0.0
rank 31.0
rank_suf 146.0
rank_change 0.0
total_points 1488.0
result 0
rank_dif -115.0
points_by_rank 0.020548
team_points 3
country_classification Classe A
Name: 1818, dtype: object
date 2021-03-29 00:00:00
team Zimbabwe
score 0.0
suf_score 2.0
rank 112.0
rank_suf 90.0
rank_change 4.0
total_points 1176.0
result 1
rank_dif 22.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1819, dtype: object
date 2021-03-29 00:00:00
team United Arab Emirates
score 6.0
suf_score 0.0
rank 74.0
rank_suf 104.0
rank_change 0.0
total_points 1326.0
result 0
rank_dif -30.0
points_by_rank 0.028846
team_points 3
country_classification Classe B
Name: 1820, dtype: object
date 2021-03-30 00:00:00
team Bahrain
score 1.0
suf_score 2.0
rank 97.0
rank_suf 95.0
rank_change 0.0
total_points 1238.0
result 1
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1821, dtype: object
date 2021-03-30 00:00:00
team Costa Rica
score 0.0
suf_score 1.0
rank 50.0
rank_suf 9.0
rank_change -1.0
total_points 1427.0
result 1
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1822, dtype: object
date 2021-03-30 00:00:00
team Iran
score 3.0
suf_score 0.0
rank 29.0
rank_suf 76.0
rank_change 0.0
total_points 1496.0
result 0
rank_dif -47.0
points_by_rank 0.039474
team_points 3
country_classification Classe A
Name: 1823, dtype: object
date 2021-03-30 00:00:00
team Republic of Ireland
score 1.0
suf_score 1.0
rank 42.0
rank_suf 58.0
rank_change 0.0
total_points 1456.0
result 2
rank_dif -16.0
points_by_rank 0.017241
team_points 1
country_classification Classe A
Name: 1824, dtype: object
date 2021-03-30 00:00:00
team Bermuda
score 5.0
suf_score 0.0
rank 169.0
rank_suf 200.0
rank_change 0.0
total_points 983.0
result 0
rank_dif -31.0
points_by_rank 0.015
team_points 3
country_classification Classe D
Name: 1825, dtype: object
date 2021-03-30 00:00:00
team Barbados
score 1.0
suf_score 0.0
rank 162.0
rank_suf 209.0
rank_change 0.0
total_points 1009.0
result 0
rank_dif -47.0
points_by_rank 0.014354
team_points 3
country_classification Classe C
Name: 1826, dtype: object
date 2021-03-30 00:00:00
team Belize
score 5.0
suf_score 0.0
rank 170.0
rank_suf 203.0
rank_change 0.0
total_points 974.0
result 0
rank_dif -33.0
points_by_rank 0.014778
team_points 3
country_classification Classe D
Name: 1827, dtype: object
date 2021-03-30 00:00:00
team Guyana
score 4.0
suf_score 0.0
rank 167.0
rank_suf 196.0
rank_change 0.0
total_points 988.0
result 0
rank_dif -29.0
points_by_rank 0.015306
team_points 3
country_classification Classe D
Name: 1828, dtype: object
date 2021-03-30 00:00:00
team Azerbaijan
score 1.0
suf_score 2.0
rank 108.0
rank_suf 30.0
rank_change -1.0
total_points 1180.0
result 1
rank_dif 78.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1829, dtype: object
date 2021-03-30 00:00:00
team Luxembourg
score 1.0
suf_score 3.0
rank 98.0
rank_suf 5.0
rank_change 0.0
total_points 1235.0
result 1
rank_dif 93.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1830, dtype: object
date 2021-03-30 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 18.0
rank_suf 42.0
rank_change 0.0
total_points 1562.0
result 0
rank_dif -24.0
points_by_rank 0.071429
team_points 3
country_classification Classe A
Name: 1831, dtype: object
date 2021-03-30 00:00:00
team Belgium
score 8.0
suf_score 0.0
rank 1.0
rank_suf 88.0
rank_change 0.0
total_points 1780.0
result 0
rank_dif -87.0
points_by_rank 0.034091
team_points 3
country_classification Classe S
Name: 1832, dtype: object
date 2021-03-30 00:00:00
team Gibraltar
score 0.0
suf_score 7.0
rank 195.0
rank_suf 14.0
rank_change 0.0
total_points 888.0
result 1
rank_dif 181.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1833, dtype: object
date 2021-03-30 00:00:00
team Montenegro
score 0.0
suf_score 1.0
rank 63.0
rank_suf 44.0
rank_change 0.0
total_points 1370.0
result 1
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1834, dtype: object
date 2021-03-30 00:00:00
team Turkey
score 3.0
suf_score 3.0
rank 32.0
rank_suf 136.0
rank_change 0.0
total_points 1487.0
result 2
rank_dif -104.0
points_by_rank 0.007353
team_points 1
country_classification Classe A
Name: 1835, dtype: object
date 2021-03-30 00:00:00
team Cyprus
score 1.0
suf_score 0.0
rank 100.0
rank_suf 62.0
rank_change 0.0
total_points 1224.0
result 0
rank_dif 38.0
points_by_rank 0.048387
team_points 3
country_classification Classe B
Name: 1836, dtype: object
date 2021-03-30 00:00:00
team Croatia
score 3.0
suf_score 0.0
rank 11.0
rank_suf 176.0
rank_change 0.0
total_points 1617.0
result 0
rank_dif -165.0
points_by_rank 0.017045
team_points 3
country_classification Classe S-
Name: 1837, dtype: object
date 2021-03-30 00:00:00
team Slovakia
score 2.0
suf_score 1.0
rank 34.0
rank_suf 39.0
rank_change 1.0
total_points 1478.0
result 0
rank_dif -5.0
points_by_rank 0.076923
team_points 3
country_classification Classe A
Name: 1838, dtype: object
date 2021-03-30 00:00:00
team Saudi Arabia
score 5.0
suf_score 0.0
rank 67.0
rank_suf 102.0
rank_change 0.0
total_points 1353.0
result 0
rank_dif -35.0
points_by_rank 0.029412
team_points 3
country_classification Classe B
Name: 1839, dtype: object
date 2021-03-30 00:00:00
team Japan
score 14.0
suf_score 0.0
rank 27.0
rank_suf 190.0
rank_change 0.0
total_points 1502.0
result 0
rank_dif -163.0
points_by_rank 0.015789
team_points 3
country_classification Classe A
Name: 1840, dtype: object
date 2021-03-30 00:00:00
team Central African Republic
score 0.0
suf_score 1.0
rank 114.0
rank_suf 101.0
rank_change 0.0
total_points 1171.0
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1841, dtype: object
date 2021-03-30 00:00:00
team Morocco
score 1.0
suf_score 0.0
rank 33.0
rank_suf 138.0
rank_change -2.0
total_points 1481.0
result 0
rank_dif -105.0
points_by_rank 0.021739
team_points 3
country_classification Classe A
Name: 1842, dtype: object
date 2021-03-30 00:00:00
team Cameroon
score 0.0
suf_score 0.0
rank 50.0
rank_suf 133.0
rank_change 0.0
total_points 1427.0
result 2
rank_dif -83.0
points_by_rank 0.007519
team_points 1
country_classification Classe A
Name: 1843, dtype: object
date 2021-03-30 00:00:00
team Guinea-Bissau
score 3.0
suf_score 0.0
rank 119.0
rank_suf 90.0
rank_change -1.0
total_points 1146.0
result 0
rank_dif 29.0
points_by_rank 0.033333
team_points 3
country_classification Classe C
Name: 1844, dtype: object
date 2021-03-30 00:00:00
team Senegal
score 1.0
suf_score 1.0
rank 20.0
rank_suf 153.0
rank_change 0.0
total_points 1558.0
result 2
rank_dif -133.0
points_by_rank 0.006536
team_points 1
country_classification Classe A
Name: 1845, dtype: object
date 2021-03-30 00:00:00
team Madagascar
score 0.0
suf_score 0.0
rank 94.0
rank_suf 113.0
rank_change 0.0
total_points 1257.0
result 2
rank_dif -19.0
points_by_rank 0.00885
team_points 1
country_classification Classe B
Name: 1846, dtype: object
date 2021-03-30 00:00:00
team Nigeria
score 3.0
suf_score 0.0
rank 36.0
rank_suf 143.0
rank_change 1.0
total_points 1474.0
result 0
rank_dif -107.0
points_by_rank 0.020979
team_points 3
country_classification Classe A
Name: 1847, dtype: object
date 2021-03-31 00:00:00
team Sweden
score 1.0
suf_score 0.0
rank 20.0
rank_suf 108.0
rank_change 0.0
total_points 1558.0
result 0
rank_dif -88.0
points_by_rank 0.027778
team_points 3
country_classification Classe A
Name: 1848, dtype: object
date 2021-03-31 00:00:00
team Switzerland
score 3.0
suf_score 2.0
rank 16.0
rank_suf 55.0
rank_change 0.0
total_points 1593.0
result 0
rank_dif -39.0
points_by_rank 0.054545
team_points 3
country_classification Classe A
Name: 1849, dtype: object
date 2021-03-31 00:00:00
team Spain
score 3.0
suf_score 1.0
rank 6.0
rank_suf 117.0
rank_change 0.0
total_points 1645.0
result 0
rank_dif -111.0
points_by_rank 0.025641
team_points 3
country_classification Classe S-
Name: 1850, dtype: object
date 2021-03-31 00:00:00
team Greece
score 1.0
suf_score 1.0
rank 53.0
rank_suf 89.0
rank_change 0.0
total_points 1413.0
result 2
rank_dif -36.0
points_by_rank 0.011236
team_points 1
country_classification Classe A
Name: 1851, dtype: object
date 2021-03-31 00:00:00
team Northern Ireland
score 0.0
suf_score 0.0
rank 45.0
rank_suf 68.0
rank_change 0.0
total_points 1440.0
result 2
rank_dif -23.0
points_by_rank 0.014706
team_points 1
country_classification Classe A
Name: 1852, dtype: object
date 2021-03-31 00:00:00
team Lithuania
score 0.0
suf_score 2.0
rank 129.0
rank_suf 10.0
rank_change 0.0
total_points 1114.0
result 1
rank_dif 119.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1853, dtype: object
date 2021-03-31 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 1.0
rank 56.0
rank_suf 2.0
rank_change 1.0
total_points 1410.0
result 1
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1854, dtype: object
date 2021-03-31 00:00:00
team Ukraine
score 1.0
suf_score 1.0
rank 24.0
rank_suf 122.0
rank_change 0.0
total_points 1521.0
result 2
rank_dif -98.0
points_by_rank 0.008197
team_points 1
country_classification Classe A
Name: 1855, dtype: object
date 2021-03-31 00:00:00
team Scotland
score 4.0
suf_score 0.0
rank 48.0
rank_suf 107.0
rank_change 0.0
total_points 1436.0
result 0
rank_dif -59.0
points_by_rank 0.028037
team_points 3
country_classification Classe A
Name: 1856, dtype: object
date 2021-03-31 00:00:00
team Austria
score 0.0
suf_score 4.0
rank 23.0
rank_suf 12.0
rank_change 0.0
total_points 1531.0
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1857, dtype: object
date 2021-03-31 00:00:00
team Moldova
score 1.0
suf_score 4.0
rank 177.0
rank_suf 87.0
rank_change 0.0
total_points 950.0
result 1
rank_dif 90.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1858, dtype: object
date 2021-03-31 00:00:00
team England
score 2.0
suf_score 1.0
rank 4.0
rank_suf 19.0
rank_change 0.0
total_points 1670.0
result 0
rank_dif -15.0
points_by_rank 0.157895
team_points 3
country_classification Classe S-
Name: 1859, dtype: object
date 2021-03-31 00:00:00
team Andorra
score 1.0
suf_score 4.0
rank 151.0
rank_suf 40.0
rank_change 0.0
total_points 1048.0
result 1
rank_dif 111.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1860, dtype: object
date 2021-03-31 00:00:00
team San Marino
score 0.0
suf_score 2.0
rank 210.0
rank_suf 66.0
rank_change 0.0
total_points 810.0
result 1
rank_dif 144.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1861, dtype: object
date 2021-03-31 00:00:00
team Armenia
score 3.0
suf_score 2.0
rank 99.0
rank_suf 37.0
rank_change 0.0
total_points 1233.0
result 0
rank_dif 62.0
points_by_rank 0.081081
team_points 3
country_classification Classe B
Name: 1862, dtype: object
date 2021-03-31 00:00:00
team Germany
score 1.0
suf_score 2.0
rank 13.0
rank_suf 65.0
rank_change 0.0
total_points 1610.0
result 1
rank_dif -52.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1863, dtype: object
date 2021-03-31 00:00:00
team Liechtenstein
score 1.0
suf_score 4.0
rank 181.0
rank_suf 46.0
rank_change 0.0
total_points 924.0
result 1
rank_dif 135.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1864, dtype: object
date 2021-05-23 00:00:00
team Ukraine
score 1.0
suf_score 1.0
rank 24.0
rank_suf 99.0
rank_change 0.0
total_points 1515.85
result 2
rank_dif -75.0
points_by_rank 0.010101
team_points 1
country_classification Classe A
Name: 1865, dtype: object
date 2021-05-24 00:00:00
team Iraq
score 0.0
suf_score 0.0
rank 68.0
rank_suf 121.0
rank_change -1.0
total_points 1352.82
result 2
rank_dif -53.0
points_by_rank 0.008264
team_points 1
country_classification Classe B
Name: 1866, dtype: object
date 2021-05-24 00:00:00
team United Arab Emirates
score 5.0
suf_score 1.0
rank 73.0
rank_suf 95.0
rank_change -1.0
total_points 1330.16
result 0
rank_dif -22.0
points_by_rank 0.031579
team_points 3
country_classification Classe B
Name: 1867, dtype: object
date 2021-05-25 00:00:00
team Indonesia
score 2.0
suf_score 3.0
rank 173.0
rank_suf 149.0
rank_change 0.0
total_points 964.07
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1868, dtype: object
date 2021-05-25 00:00:00
team Oman
score 1.0
suf_score 0.0
rank 80.0
rank_suf 106.0
rank_change -1.0
total_points 1301.51
result 0
rank_dif -26.0
points_by_rank 0.028302
team_points 3
country_classification Classe B
Name: 1869, dtype: object
date 2021-05-27 00:00:00
team Turkey
score 2.0
suf_score 1.0
rank 29.0
rank_suf 110.0
rank_change 0.0
total_points 1505.05
result 0
rank_dif -81.0
points_by_rank 0.027273
team_points 3
country_classification Classe A
Name: 1870, dtype: object
date 2021-05-28 00:00:00
team Bahrain
score 2.0
suf_score 0.0
rank 98.0
rank_suf 153.0
rank_change -1.0
total_points 1240.1
result 0
rank_dif -55.0
points_by_rank 0.019608
team_points 3
country_classification Classe B
Name: 1871, dtype: object
date 2021-05-28 00:00:00
team Italy
score 7.0
suf_score 0.0
rank 7.0
rank_suf 210.0
rank_change 0.0
total_points 1642.06
result 0
rank_dif -203.0
points_by_rank 0.014286
team_points 3
country_classification Classe S-
Name: 1872, dtype: object
date 2021-05-29 00:00:00
team Indonesia
score 1.0
suf_score 3.0
rank 173.0
rank_suf 80.0
rank_change 0.0
total_points 964.07
result 1
rank_dif 93.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1873, dtype: object
date 2021-05-29 00:00:00
team Iraq
score 6.0
suf_score 2.0
rank 68.0
rank_suf 171.0
rank_change 0.0
total_points 1352.82
result 0
rank_dif -103.0
points_by_rank 0.017544
team_points 3
country_classification Classe B
Name: 1874, dtype: object
date 2021-05-29 00:00:00
team Mexico
score 2.0
suf_score 1.0
rank 11.0
rank_suf 52.0
rank_change 0.0
total_points 1629.56
result 0
rank_dif -41.0
points_by_rank 0.057692
team_points 3
country_classification Classe S-
Name: 1875, dtype: object
date 2021-05-29 00:00:00
team Singapore
score 1.0
suf_score 1.0
rank 159.0
rank_suf 149.0
rank_change 0.0
total_points 1020.27
result 2
rank_dif 10.0
points_by_rank 0.006711
team_points 1
country_classification Classe C
Name: 1876, dtype: object
date 2021-05-29 00:00:00
team Sweden
score 2.0
suf_score 0.0
rank 18.0
rank_suf 54.0
rank_change 0.0
total_points 1569.81
result 0
rank_dif -36.0
points_by_rank 0.055556
team_points 3
country_classification Classe A
Name: 1877, dtype: object
date 2021-05-29 00:00:00
team Thailand
score 2.0
suf_score 2.0
rank 106.0
rank_suf 121.0
rank_change 0.0
total_points 1178.07
result 2
rank_dif -15.0
points_by_rank 0.008264
team_points 1
country_classification Classe C
Name: 1878, dtype: object
date 2021-05-30 00:00:00
team Malta
score 0.0
suf_score 3.0
rank 175.0
rank_suf 48.0
rank_change 0.0
total_points 955.89
result 1
rank_dif 127.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1879, dtype: object
date 2021-05-30 00:00:00
team Switzerland
score 2.0
suf_score 1.0
rank 13.0
rank_suf 20.0
rank_change 0.0
total_points 1606.21
result 0
rank_dif -7.0
points_by_rank 0.15
team_points 3
country_classification Classe S-
Name: 1880, dtype: object
date 2021-05-31 00:00:00
team Jordan
score 1.0
suf_score 1.0
rank 95.0
rank_suf 92.0
rank_change 0.0
total_points 1251.63
result 2
rank_dif 3.0
points_by_rank 0.01087
team_points 1
country_classification Classe B
Name: 1881, dtype: object
date 2021-05-31 00:00:00
team Turkey
score 0.0
suf_score 0.0
rank 29.0
rank_suf 72.0
rank_change 0.0
total_points 1505.05
result 2
rank_dif -43.0
points_by_rank 0.013889
team_points 1
country_classification Classe A
Name: 1882, dtype: object
date 2021-06-01 00:00:00
team Croatia
score 1.0
suf_score 1.0
rank 14.0
rank_suf 90.0
rank_change 0.0
total_points 1605.75
result 2
rank_dif -76.0
points_by_rank 0.011111
team_points 1
country_classification Classe S-
Name: 1883, dtype: object
date 2021-06-01 00:00:00
team Kosovo
score 4.0
suf_score 1.0
rank 120.0
rank_suf 210.0
rank_change 0.0
total_points 1151.73
result 0
rank_dif -90.0
points_by_rank 0.014286
team_points 3
country_classification Classe C
Name: 1884, dtype: object
date 2021-06-01 00:00:00
team North Macedonia
score 1.0
suf_score 1.0
rank 62.0
rank_suf 63.0
rank_change 0.0
total_points 1374.73
result 2
rank_dif -1.0
points_by_rank 0.015873
team_points 1
country_classification Classe B
Name: 1885, dtype: object
date 2021-06-01 00:00:00
team Poland
score 1.0
suf_score 1.0
rank 21.0
rank_suf 38.0
rank_change 0.0
total_points 1549.87
result 2
rank_dif -17.0
points_by_rank 0.026316
team_points 1
country_classification Classe A
Name: 1886, dtype: object
date 2021-06-01 00:00:00
team Slovakia
score 1.0
suf_score 1.0
rank 36.0
rank_suf 71.0
rank_change 0.0
total_points 1475.24
result 2
rank_dif -35.0
points_by_rank 0.014085
team_points 1
country_classification Classe A
Name: 1887, dtype: object
date 2021-06-01 00:00:00
team Lithuania
score 0.0
suf_score 1.0
rank 134.0
rank_suf 116.0
rank_change 0.0
total_points 1102.84
result 1
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1888, dtype: object
date 2021-06-02 00:00:00
team Belarus
score 1.0
suf_score 2.0
rank 89.0
rank_suf 110.0
rank_change 0.0
total_points 1276.79
result 1
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1889, dtype: object
date 2021-06-02 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 0.0
rank 55.0
rank_suf 64.0
rank_change 0.0
total_points 1404.87
result 2
rank_dif -9.0
points_by_rank 0.015625
team_points 1
country_classification Classe A
Name: 1890, dtype: object
date 2021-06-02 00:00:00
team England
score 1.0
suf_score 0.0
rank 4.0
rank_suf 23.0
rank_change 0.0
total_points 1686.78
result 0
rank_dif -19.0
points_by_rank 0.130435
team_points 3
country_classification Classe S-
Name: 1891, dtype: object
date 2021-06-02 00:00:00
team France
score 3.0
suf_score 0.0
rank 2.0
rank_suf 17.0
rank_change 0.0
total_points 1757.3
result 0
rank_dif -15.0
points_by_rank 0.176471
team_points 3
country_classification Classe S
Name: 1892, dtype: object
date 2021-06-02 00:00:00
team Germany
score 1.0
suf_score 1.0
rank 12.0
rank_suf 10.0
rank_change 0.0
total_points 1609.12
result 2
rank_dif 2.0
points_by_rank 0.1
team_points 1
country_classification Classe S-
Name: 1893, dtype: object
date 2021-06-02 00:00:00
team Mozambique
score 5.0
suf_score 0.0
rank 117.0
rank_suf 146.0
rank_change 0.0
total_points 1161.55
result 0
rank_dif -29.0
points_by_rank 0.020548
team_points 3
country_classification Classe C
Name: 1894, dtype: object
date 2021-06-02 00:00:00
team Netherlands
score 2.0
suf_score 2.0
rank 16.0
rank_suf 44.0
rank_change 0.0
total_points 1598.04
result 2
rank_dif -28.0
points_by_rank 0.022727
team_points 1
country_classification Classe A
Name: 1895, dtype: object
date 2021-06-02 00:00:00
team Norway
score 1.0
suf_score 0.0
rank 42.0
rank_suf 96.0
rank_change 0.0
total_points 1452.34
result 0
rank_dif -54.0
points_by_rank 0.03125
team_points 3
country_classification Classe A
Name: 1896, dtype: object
date 2021-06-02 00:00:00
team Romania
score 1.0
suf_score 2.0
rank 43.0
rank_suf 91.0
rank_change 0.0
total_points 1449.23
result 1
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1897, dtype: object
date 2021-06-02 00:00:00
team Cayman Islands
score 1.0
suf_score 3.0
rank 194.0
rank_suf 205.0
rank_change 0.0
total_points 884.44
result 1
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1898, dtype: object
date 2021-06-02 00:00:00
team Cuba
score 5.0
suf_score 0.0
rank 181.0
rank_suf 208.0
rank_change 0.0
total_points 923.03
result 0
rank_dif -27.0
points_by_rank 0.014423
team_points 3
country_classification Classe D
Name: 1899, dtype: object
date 2021-06-02 00:00:00
team Dominica
score 3.0
suf_score 0.0
rank 188.0
rank_suf 209.0
rank_change 0.0
total_points 904.26
result 0
rank_dif -21.0
points_by_rank 0.014354
team_points 3
country_classification Classe D
Name: 1900, dtype: object
date 2021-06-02 00:00:00
team Puerto Rico
score 7.0
suf_score 0.0
rank 178.0
rank_suf 201.0
rank_change 0.0
total_points 938.86
result 0
rank_dif -23.0
points_by_rank 0.014925
team_points 3
country_classification Classe D
Name: 1901, dtype: object
date 2021-06-03 00:00:00
team Algeria
score 4.0
suf_score 1.0
rank 33.0
rank_suf 101.0
rank_change 0.0
total_points 1486.69
result 0
rank_dif -68.0
points_by_rank 0.029703
team_points 3
country_classification Classe A
Name: 1902, dtype: object
date 2021-06-03 00:00:00
team Andorra
score 1.0
suf_score 4.0
rank 158.0
rank_suf 47.0
rank_change 0.0
total_points 1034.9
result 1
rank_dif 111.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1903, dtype: object
date 2021-06-03 00:00:00
team Belgium
score 1.0
suf_score 1.0
rank 1.0
rank_suf 51.0
rank_change 0.0
total_points 1783.38
result 2
rank_dif -50.0
points_by_rank 0.019608
team_points 1
country_classification Classe S
Name: 1904, dtype: object
date 2021-06-03 00:00:00
team Switzerland
score 7.0
suf_score 0.0
rank 13.0
rank_suf 186.0
rank_change 0.0
total_points 1606.21
result 0
rank_dif -173.0
points_by_rank 0.016129
team_points 3
country_classification Classe S-
Name: 1905, dtype: object
date 2021-06-03 00:00:00
team Turkey
score 2.0
suf_score 0.0
rank 29.0
rank_suf 177.0
rank_change 0.0
total_points 1505.05
result 0
rank_dif -148.0
points_by_rank 0.016949
team_points 3
country_classification Classe A
Name: 1906, dtype: object
date 2021-06-03 00:00:00
team Ukraine
score 1.0
suf_score 0.0
rank 24.0
rank_suf 48.0
rank_change 0.0
total_points 1514.64
result 0
rank_dif -24.0
points_by_rank 0.0625
team_points 3
country_classification Classe A
Name: 1907, dtype: object
date 2021-06-03 00:00:00
team Mexico
score 0.0
suf_score 0.0
rank 11.0
rank_suf 50.0
rank_change 0.0
total_points 1629.56
result 2
rank_dif -39.0
points_by_rank 0.02
team_points 1
country_classification Classe S-
Name: 1908, dtype: object
date 2021-06-03 00:00:00
team United States
score 1.0
suf_score 0.0
rank 20.0
rank_suf 67.0
rank_change 0.0
total_points 1555.42
result 0
rank_dif -47.0
points_by_rank 0.044776
team_points 3
country_classification Classe A
Name: 1909, dtype: object
date 2021-06-03 00:00:00
team Iran
score 3.0
suf_score 1.0
rank 31.0
rank_suf 144.0
rank_change 0.0
total_points 1499.52
result 0
rank_dif -113.0
points_by_rank 0.020833
team_points 3
country_classification Classe A
Name: 1910, dtype: object
date 2021-06-03 00:00:00
team Bahrain
score 8.0
suf_score 0.0
rank 98.0
rank_suf 174.0
rank_change -1.0
total_points 1240.1
result 0
rank_dif -76.0
points_by_rank 0.017241
team_points 3
country_classification Classe B
Name: 1911, dtype: object
date 2021-06-03 00:00:00
team Palestine
score 4.0
suf_score 0.0
rank 104.0
rank_suf 159.0
rank_change 0.0
total_points 1196.8
result 0
rank_dif -55.0
points_by_rank 0.018868
team_points 3
country_classification Classe C
Name: 1912, dtype: object
date 2021-06-03 00:00:00
team Bangladesh
score 1.0
suf_score 1.0
rank 184.0
rank_suf 149.0
rank_change 0.0
total_points 917.38
result 2
rank_dif 35.0
points_by_rank 0.006711
team_points 1
country_classification Classe D
Name: 1913, dtype: object
date 2021-06-03 00:00:00
team United Arab Emirates
score 4.0
suf_score 0.0
rank 73.0
rank_suf 153.0
rank_change 0.0
total_points 1330.16
result 0
rank_dif -80.0
points_by_rank 0.019608
team_points 3
country_classification Classe B
Name: 1914, dtype: object
date 2021-06-03 00:00:00
team Thailand
score 2.0
suf_score 2.0
rank 106.0
rank_suf 173.0
rank_change 0.0
total_points 1178.07
result 2
rank_dif -67.0
points_by_rank 0.00578
team_points 1
country_classification Classe C
Name: 1915, dtype: object
date 2021-06-03 00:00:00
team Bolivia
score 3.0
suf_score 1.0
rank 81.0
rank_suf 30.0
rank_change 0.0
total_points 1300.11
result 0
rank_dif 51.0
points_by_rank 0.1
team_points 3
country_classification Classe B
Name: 1916, dtype: object
date 2021-06-03 00:00:00
team Uruguay
score 0.0
suf_score 0.0
rank 9.0
rank_suf 35.0
rank_change 0.0
total_points 1639.08
result 2
rank_dif -26.0
points_by_rank 0.028571
team_points 1
country_classification Classe S-
Name: 1917, dtype: object
date 2021-06-03 00:00:00
team Argentina
score 1.0
suf_score 1.0
rank 8.0
rank_suf 19.0
rank_change 0.0
total_points 1641.95
result 2
rank_dif -11.0
points_by_rank 0.052632
team_points 1
country_classification Classe S-
Name: 1918, dtype: object
date 2021-06-03 00:00:00
team Peru
score 0.0
suf_score 3.0
rank 27.0
rank_suf 15.0
rank_change 0.0
total_points 1511.88
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1919, dtype: object
date 2021-06-03 00:00:00
team Kuwait
score 0.0
suf_score 3.0
rank 148.0
rank_suf 41.0
rank_change 0.0
total_points 1056.3
result 1
rank_dif 107.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1920, dtype: object
date 2021-06-03 00:00:00
team Qatar
score 1.0
suf_score 0.0
rank 58.0
rank_suf 105.0
rank_change 0.0
total_points 1397.92
result 0
rank_dif -47.0
points_by_rank 0.028571
team_points 3
country_classification Classe B
Name: 1921, dtype: object
date 2021-06-04 00:00:00
team Faroe Islands
score 0.0
suf_score 1.0
rank 113.0
rank_suf 52.0
rank_change 0.0
total_points 1165.45
result 1
rank_dif 61.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1922, dtype: object
date 2021-06-04 00:00:00
team Finland
score 0.0
suf_score 1.0
rank 54.0
rank_suf 116.0
rank_change 0.0
total_points 1410.82
result 1
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1923, dtype: object
date 2021-06-04 00:00:00
team Hungary
score 1.0
suf_score 0.0
rank 37.0
rank_suf 97.0
rank_change 0.0
total_points 1468.75
result 0
rank_dif -60.0
points_by_rank 0.030928
team_points 3
country_classification Classe A
Name: 1924, dtype: object
date 2021-06-04 00:00:00
team Italy
score 4.0
suf_score 0.0
rank 7.0
rank_suf 40.0
rank_change 0.0
total_points 1642.06
result 0
rank_dif -33.0
points_by_rank 0.075
team_points 3
country_classification Classe S-
Name: 1925, dtype: object
date 2021-06-04 00:00:00
team Kosovo
score 2.0
suf_score 1.0
rank 120.0
rank_suf 175.0
rank_change 0.0
total_points 1151.73
result 0
rank_dif -55.0
points_by_rank 0.017143
team_points 3
country_classification Classe C
Name: 1926, dtype: object
date 2021-06-04 00:00:00
team Nigeria
score 0.0
suf_score 1.0
rank 32.0
rank_suf 55.0
rank_change 0.0
total_points 1487.16
result 1
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1927, dtype: object
date 2021-06-04 00:00:00
team North Macedonia
score 4.0
suf_score 0.0
rank 62.0
rank_suf 124.0
rank_change 0.0
total_points 1374.73
result 0
rank_dif -62.0
points_by_rank 0.024194
team_points 3
country_classification Classe B
Name: 1928, dtype: object
date 2021-06-04 00:00:00
team Rwanda
score 2.0
suf_score 0.0
rank 129.0
rank_suf 118.0
rank_change 0.0
total_points 1123.69
result 0
rank_dif 11.0
points_by_rank 0.025424
team_points 3
country_classification Classe C
Name: 1929, dtype: object
date 2021-06-04 00:00:00
team Slovenia
score 6.0
suf_score 0.0
rank 63.0
rank_suf 195.0
rank_change 0.0
total_points 1369.88
result 0
rank_dif -132.0
points_by_rank 0.015385
team_points 3
country_classification Classe B
Name: 1930, dtype: object
date 2021-06-04 00:00:00
team Spain
score 0.0
suf_score 0.0
rank 6.0
rank_suf 5.0
rank_change 0.0
total_points 1648.13
result 2
rank_dif 1.0
points_by_rank 0.2
team_points 1
country_classification Classe S-
Name: 1931, dtype: object
date 2021-06-04 00:00:00
team Latvia
score 3.0
suf_score 1.0
rank 138.0
rank_suf 134.0
rank_change 0.0
total_points 1081.66
result 0
rank_dif 4.0
points_by_rank 0.022388
team_points 3
country_classification Classe C
Name: 1932, dtype: object
date 2021-06-04 00:00:00
team Maldives
score 0.0
suf_score 4.0
rank 155.0
rank_suf 79.0
rank_change 0.0
total_points 1038.31
result 1
rank_dif 76.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1933, dtype: object
date 2021-06-04 00:00:00
team Antigua and Barbuda
score 1.0
suf_score 0.0
rank 128.0
rank_suf 160.0
rank_change 0.0
total_points 1129.02
result 0
rank_dif -32.0
points_by_rank 0.01875
team_points 3
country_classification Classe C
Name: 1934, dtype: object
date 2021-06-04 00:00:00
team Suriname
score 6.0
suf_score 0.0
rank 136.0
rank_suf 168.0
rank_change 0.0
total_points 1089.43
result 0
rank_dif -32.0
points_by_rank 0.017857
team_points 3
country_classification Classe C
Name: 1935, dtype: object
date 2021-06-04 00:00:00
team Dominican Republic
score 1.0
suf_score 1.0
rank 156.0
rank_suf 162.0
rank_change 0.0
total_points 1036.22
result 2
rank_dif -6.0
points_by_rank 0.006173
team_points 1
country_classification Classe C
Name: 1936, dtype: object
date 2021-06-04 00:00:00
team Nicaragua
score 3.0
suf_score 0.0
rank 147.0
rank_suf 170.0
rank_change 0.0
total_points 1060.51
result 0
rank_dif -23.0
points_by_rank 0.017647
team_points 3
country_classification Classe C
Name: 1937, dtype: object
date 2021-06-04 00:00:00
team Brazil
score 2.0
suf_score 0.0
rank 3.0
rank_suf 53.0
rank_change 0.0
total_points 1742.65
result 0
rank_dif -50.0
points_by_rank 0.056604
team_points 3
country_classification Classe S
Name: 1938, dtype: object
date 2021-06-05 00:00:00
team Guinea
score 0.0
suf_score 2.0
rank 72.0
rank_suf 133.0
rank_change 0.0
total_points 1331.79
result 1
rank_dif -61.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1939, dtype: object
date 2021-06-05 00:00:00
team Montenegro
score 1.0
suf_score 3.0
rank 64.0
rank_suf 85.0
rank_change 0.0
total_points 1368.49
result 1
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1940, dtype: object
date 2021-06-05 00:00:00
team Niger
score 0.0
suf_score 2.0
rank 112.0
rank_suf 152.0
rank_change 0.0
total_points 1165.91
result 1
rank_dif -40.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1941, dtype: object
date 2021-06-05 00:00:00
team Russia
score 1.0
suf_score 0.0
rank 38.0
rank_suf 71.0
rank_change 0.0
total_points 1462.65
result 0
rank_dif -33.0
points_by_rank 0.042254
team_points 3
country_classification Classe A
Name: 1942, dtype: object
date 2021-06-05 00:00:00
team Senegal
score 3.0
suf_score 1.0
rank 22.0
rank_suf 87.0
rank_change 0.0
total_points 1542.45
result 0
rank_dif -65.0
points_by_rank 0.034483
team_points 3
country_classification Classe A
Name: 1943, dtype: object
date 2021-06-05 00:00:00
team Sweden
score 3.0
suf_score 1.0
rank 18.0
rank_suf 90.0
rank_change 0.0
total_points 1569.81
result 0
rank_dif -72.0
points_by_rank 0.033333
team_points 3
country_classification Classe A
Name: 1944, dtype: object
date 2021-06-05 00:00:00
team Wales
score 0.0
suf_score 0.0
rank 17.0
rank_suf 66.0
rank_change 0.0
total_points 1570.36
result 2
rank_dif -49.0
points_by_rank 0.015152
team_points 1
country_classification Classe A
Name: 1945, dtype: object
date 2021-06-05 00:00:00
team Saudi Arabia
score 3.0
suf_score 0.0
rank 65.0
rank_suf 145.0
rank_change 0.0
total_points 1364.39
result 0
rank_dif -80.0
points_by_rank 0.02069
team_points 3
country_classification Classe B
Name: 1946, dtype: object
date 2021-06-05 00:00:00
team Lebanon
score 3.0
suf_score 2.0
rank 93.0
rank_suf 204.0
rank_change 0.0
total_points 1256.08
result 0
rank_dif -111.0
points_by_rank 0.014706
team_points 3
country_classification Classe B
Name: 1947, dtype: object
date 2021-06-05 00:00:00
team South Korea
score 5.0
suf_score 0.0
rank 39.0
rank_suf 130.0
rank_change 0.0
total_points 1460.25
result 0
rank_dif -91.0
points_by_rank 0.023077
team_points 3
country_classification Classe A
Name: 1948, dtype: object
date 2021-06-05 00:00:00
team Aruba
score 0.0
suf_score 7.0
rank 205.0
rank_suf 70.0
rank_change 0.0
total_points 850.1
result 1
rank_dif 135.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1949, dtype: object
date 2021-06-05 00:00:00
team British Virgin Islands
score 0.0
suf_score 8.0
rank 208.0
rank_suf 76.0
rank_change 0.0
total_points 826.27
result 1
rank_dif 132.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1950, dtype: object
date 2021-06-05 00:00:00
team Panama
score 13.0
suf_score 0.0
rank 78.0
rank_suf 209.0
rank_change 0.0
total_points 1321.97
result 0
rank_dif -131.0
points_by_rank 0.014354
team_points 3
country_classification Classe B
Name: 1951, dtype: object
date 2021-06-05 00:00:00
team Turks and Caicos Islands
score 0.0
suf_score 10.0
rank 206.0
rank_suf 83.0
rank_change 0.0
total_points 843.65
result 1
rank_dif 123.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1952, dtype: object
date 2021-06-05 00:00:00
team Bahamas
score 0.0
suf_score 0.0
rank 201.0
rank_suf 103.0
rank_change 0.0
total_points 861.84
result 2
rank_dif 98.0
points_by_rank 0.009709
team_points 1
country_classification Classe D
Name: 1953, dtype: object
date 2021-06-06 00:00:00
team Algeria
score 1.0
suf_score 0.0
rank 33.0
rank_suf 57.0
rank_change 0.0
total_points 1486.69
result 0
rank_dif -24.0
points_by_rank 0.052632
team_points 3
country_classification Classe A
Name: 1954, dtype: object
date 2021-06-06 00:00:00
team Austria
score 0.0
suf_score 0.0
rank 23.0
rank_suf 36.0
rank_change 0.0
total_points 1523.42
result 2
rank_dif -13.0
points_by_rank 0.027778
team_points 1
country_classification Classe A
Name: 1955, dtype: object
date 2021-06-06 00:00:00
team Belgium
score 1.0
suf_score 0.0
rank 1.0
rank_suf 14.0
rank_change 0.0
total_points 1783.38
result 0
rank_dif -13.0
points_by_rank 0.214286
team_points 3
country_classification Classe S
Name: 1956, dtype: object
date 2021-06-06 00:00:00
team Denmark
score 2.0
suf_score 0.0
rank 10.0
rank_suf 55.0
rank_change 0.0
total_points 1631.55
result 0
rank_dif -45.0
points_by_rank 0.054545
team_points 3
country_classification Classe S-
Name: 1957, dtype: object
date 2021-06-06 00:00:00
team England
score 1.0
suf_score 0.0
rank 4.0
rank_suf 43.0
rank_change 0.0
total_points 1686.78
result 0
rank_dif -39.0
points_by_rank 0.069767
team_points 3
country_classification Classe S-
Name: 1958, dtype: object
date 2021-06-06 00:00:00
team Luxembourg
score 0.0
suf_score 1.0
rank 96.0
rank_suf 44.0
rank_change 0.0
total_points 1244.86
result 1
rank_dif 52.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1959, dtype: object
date 2021-06-06 00:00:00
team Moldova
score 1.0
suf_score 0.0
rank 177.0
rank_suf 110.0
rank_change 0.0
total_points 948.16
result 0
rank_dif 67.0
points_by_rank 0.027273
team_points 3
country_classification Classe D
Name: 1960, dtype: object
date 2021-06-06 00:00:00
team Netherlands
score 3.0
suf_score 0.0
rank 16.0
rank_suf 91.0
rank_change 0.0
total_points 1598.04
result 0
rank_dif -75.0
points_by_rank 0.032967
team_points 3
country_classification Classe A
Name: 1961, dtype: object
date 2021-06-06 00:00:00
team Norway
score 1.0
suf_score 2.0
rank 42.0
rank_suf 51.0
rank_change 0.0
total_points 1452.34
result 1
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1962, dtype: object
date 2021-06-06 00:00:00
team Honduras
score 2.0
suf_score 2.0
rank 67.0
rank_suf 50.0
rank_change 0.0
total_points 1361.21
result 2
rank_dif 17.0
points_by_rank 0.02
team_points 1
country_classification Classe B
Name: 1963, dtype: object
date 2021-06-06 00:00:00
team United States
score 3.0
suf_score 2.0
rank 20.0
rank_suf 11.0
rank_change 0.0
total_points 1555.42
result 0
rank_dif 9.0
points_by_rank 0.272727
team_points 3
country_classification Classe A
Name: 1964, dtype: object
date 2021-06-07 00:00:00
team Andorra
score 0.0
suf_score 0.0
rank 158.0
rank_suf 195.0
rank_change 0.0
total_points 1034.9
result 2
rank_dif -37.0
points_by_rank 0.005128
team_points 1
country_classification Classe C
Name: 1965, dtype: object
date 2021-06-07 00:00:00
team Faroe Islands
score 5.0
suf_score 1.0
rank 113.0
rank_suf 186.0
rank_change 0.0
total_points 1165.45
result 0
rank_dif -73.0
points_by_rank 0.016129
team_points 3
country_classification Classe C
Name: 1966, dtype: object
date 2021-06-07 00:00:00
team Germany
score 7.0
suf_score 1.0
rank 12.0
rank_suf 138.0
rank_change 0.0
total_points 1609.12
result 0
rank_dif -126.0
points_by_rank 0.021739
team_points 3
country_classification Classe S-
Name: 1967, dtype: object
date 2021-06-07 00:00:00
team Rwanda
score 5.0
suf_score 0.0
rank 129.0
rank_suf 118.0
rank_change 0.0
total_points 1123.69
result 0
rank_dif 11.0
points_by_rank 0.025424
team_points 3
country_classification Classe C
Name: 1968, dtype: object
date 2021-06-07 00:00:00
team Serbia
score 1.0
suf_score 1.0
rank 25.0
rank_suf 45.0
rank_change 0.0
total_points 1512.9
result 2
rank_dif -20.0
points_by_rank 0.022222
team_points 1
country_classification Classe A
Name: 1969, dtype: object
date 2021-06-07 00:00:00
team Ukraine
score 4.0
suf_score 0.0
rank 24.0
rank_suf 97.0
rank_change 0.0
total_points 1514.64
result 0
rank_dif -73.0
points_by_rank 0.030928
team_points 3
country_classification Classe A
Name: 1970, dtype: object
date 2021-06-07 00:00:00
team Guam
score 0.0
suf_score 3.0
rank 198.0
rank_suf 79.0
rank_change 0.0
total_points 872.83
result 1
rank_dif 119.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1971, dtype: object
date 2021-06-07 00:00:00
team China PR
score 2.0
suf_score 0.0
rank 77.0
rank_suf 125.0
rank_change 0.0
total_points 1322.96
result 0
rank_dif -48.0
points_by_rank 0.024
team_points 3
country_classification Classe B
Name: 1972, dtype: object
date 2021-06-07 00:00:00
team Nepal
score 0.0
suf_score 3.0
rank 171.0
rank_suf 95.0
rank_change 0.0
total_points 967.88
result 1
rank_dif 76.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1973, dtype: object
date 2021-06-07 00:00:00
team Iraq
score 4.0
suf_score 1.0
rank 68.0
rank_suf 174.0
rank_change 0.0
total_points 1352.82
result 0
rank_dif -106.0
points_by_rank 0.017241
team_points 3
country_classification Classe B
Name: 1974, dtype: object
date 2021-06-07 00:00:00
team Uzbekistan
score 5.0
suf_score 0.0
rank 86.0
rank_suf 159.0
rank_change 0.0
total_points 1280.99
result 0
rank_dif -73.0
points_by_rank 0.018868
team_points 3
country_classification Classe B
Name: 1975, dtype: object
date 2021-06-07 00:00:00
team Bangladesh
score 0.0
suf_score 2.0
rank 184.0
rank_suf 105.0
rank_change 0.0
total_points 917.38
result 1
rank_dif 79.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1976, dtype: object
date 2021-06-07 00:00:00
team Japan
score 4.0
suf_score 1.0
rank 28.0
rank_suf 121.0
rank_change 0.0
total_points 1509.34
result 0
rank_dif -93.0
points_by_rank 0.024793
team_points 3
country_classification Classe A
Name: 1977, dtype: object
date 2021-06-07 00:00:00
team United Arab Emirates
score 3.0
suf_score 1.0
rank 73.0
rank_suf 106.0
rank_change 0.0
total_points 1330.16
result 0
rank_dif -33.0
points_by_rank 0.028302
team_points 3
country_classification Classe B
Name: 1978, dtype: object
date 2021-06-07 00:00:00
team Vietnam
score 4.0
suf_score 0.0
rank 92.0
rank_suf 173.0
rank_change 0.0
total_points 1258.06
result 0
rank_dif -81.0
points_by_rank 0.017341
team_points 3
country_classification Classe B
Name: 1979, dtype: object
date 2021-06-07 00:00:00
team Bahrain
score 0.0
suf_score 3.0
rank 98.0
rank_suf 31.0
rank_change -1.0
total_points 1240.1
result 1
rank_dif 67.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1980, dtype: object
date 2021-06-07 00:00:00
team Qatar
score 1.0
suf_score 0.0
rank 58.0
rank_suf 80.0
rank_change 0.0
total_points 1397.92
result 0
rank_dif -22.0
points_by_rank 0.0375
team_points 3
country_classification Classe B
Name: 1981, dtype: object
date 2021-06-08 00:00:00
team Benin
score 2.0
suf_score 2.0
rank 82.0
rank_suf 87.0
rank_change 0.0
total_points 1293.1
result 2
rank_dif -5.0
points_by_rank 0.011494
team_points 1
country_classification Classe B
Name: 1982, dtype: object
date 2021-06-08 00:00:00
team Cameroon
score 0.0
suf_score 0.0
rank 55.0
rank_suf 32.0
rank_change 0.0
total_points 1404.87
result 2
rank_dif 23.0
points_by_rank 0.03125
team_points 1
country_classification Classe A
Name: 1983, dtype: object
date 2021-06-08 00:00:00
team Czech Republic
score 3.0
suf_score 1.0
rank 40.0
rank_suf 66.0
rank_change 0.0
total_points 1458.81
result 0
rank_dif -26.0
points_by_rank 0.045455
team_points 3
country_classification Classe A
Name: 1984, dtype: object
date 2021-06-08 00:00:00
team France
score 3.0
suf_score 0.0
rank 2.0
rank_suf 71.0
rank_change 0.0
total_points 1757.3
result 0
rank_dif -69.0
points_by_rank 0.042254
team_points 3
country_classification Classe S
Name: 1985, dtype: object
date 2021-06-08 00:00:00
team Gambia
score 1.0
suf_score 0.0
rank 152.0
rank_suf 133.0
rank_change 0.0
total_points 1043.45
result 0
rank_dif 19.0
points_by_rank 0.022556
team_points 3
country_classification Classe C
Name: 1986, dtype: object
date 2021-06-08 00:00:00
team Hungary
score 0.0
suf_score 0.0
rank 37.0
rank_suf 47.0
rank_change 0.0
total_points 1468.75
result 2
rank_dif -10.0
points_by_rank 0.021277
team_points 1
country_classification Classe A
Name: 1987, dtype: object
date 2021-06-08 00:00:00
team Kosovo
score 1.0
suf_score 2.0
rank 120.0
rank_suf 72.0
rank_change 0.0
total_points 1151.73
result 1
rank_dif 48.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1988, dtype: object
date 2021-06-08 00:00:00
team Morocco
score 1.0
suf_score 0.0
rank 34.0
rank_suf 49.0
rank_change 0.0
total_points 1479.32
result 0
rank_dif -15.0
points_by_rank 0.061224
team_points 3
country_classification Classe A
Name: 1989, dtype: object
date 2021-06-08 00:00:00
team Mozambique
score 1.0
suf_score 1.0
rank 117.0
rank_suf 154.0
rank_change 0.0
total_points 1161.55
result 2
rank_dif -37.0
points_by_rank 0.006494
team_points 1
country_classification Classe C
Name: 1990, dtype: object
date 2021-06-08 00:00:00
team Poland
score 2.0
suf_score 2.0
rank 21.0
rank_suf 52.0
rank_change 0.0
total_points 1549.87
result 2
rank_dif -31.0
points_by_rank 0.019231
team_points 1
country_classification Classe A
Name: 1991, dtype: object
date 2021-06-08 00:00:00
team Spain
score 4.0
suf_score 0.0
rank 6.0
rank_suf 134.0
rank_change 0.0
total_points 1648.13
result 0
rank_dif -128.0
points_by_rank 0.022388
team_points 3
country_classification Classe S-
Name: 1992, dtype: object
date 2021-06-08 00:00:00
team Grenada
score 1.0
suf_score 2.0
rank 160.0
rank_suf 180.0
rank_change 0.0
total_points 1017.57
result 1
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1993, dtype: object
date 2021-06-08 00:00:00
team El Salvador
score 3.0
suf_score 0.0
rank 69.0
rank_suf 128.0
rank_change 0.0
total_points 1341.24
result 0
rank_dif -59.0
points_by_rank 0.023438
team_points 3
country_classification Classe B
Name: 1994, dtype: object
date 2021-06-08 00:00:00
team Canada
score 4.0
suf_score 0.0
rank 70.0
rank_suf 136.0
rank_change 0.0
total_points 1340.56
result 0
rank_dif -66.0
points_by_rank 0.022059
team_points 3
country_classification Classe B
Name: 1995, dtype: object
date 2021-06-08 00:00:00
team Bermuda
score 1.0
suf_score 1.0
rank 168.0
rank_suf 194.0
rank_change 0.0
total_points 987.78
result 2
rank_dif -26.0
points_by_rank 0.005155
team_points 1
country_classification Classe D
Name: 1996, dtype: object
date 2021-06-08 00:00:00
team Curaçao
score 0.0
suf_score 0.0
rank 76.0
rank_suf 127.0
rank_change 0.0
total_points 1323.06
result 2
rank_dif -51.0
points_by_rank 0.007874
team_points 1
country_classification Classe B
Name: 1997, dtype: object
date 2021-06-08 00:00:00
team Barbados
score 1.0
suf_score 1.0
rank 162.0
rank_suf 188.0
rank_change 0.0
total_points 1010.95
result 2
rank_dif -26.0
points_by_rank 0.005319
team_points 1
country_classification Classe C
Name: 1998, dtype: object
date 2021-06-08 00:00:00
team Panama
score 3.0
suf_score 0.0
rank 78.0
rank_suf 156.0
rank_change 0.0
total_points 1321.97
result 0
rank_dif -78.0
points_by_rank 0.019231
team_points 3
country_classification Classe B
Name: 1999, dtype: object
date 2021-06-08 00:00:00
team Haiti
score 1.0
suf_score 0.0
rank 83.0
rank_suf 147.0
rank_change 0.0
total_points 1290.62
result 0
rank_dif -64.0
points_by_rank 0.020408
team_points 3
country_classification Classe B
Name: 2000, dtype: object
date 2021-06-08 00:00:00
team Guyana
score 0.0
suf_score 2.0
rank 165.0
rank_suf 178.0
rank_change 0.0
total_points 990.65
result 1
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2001, dtype: object
date 2021-06-08 00:00:00
team Ecuador
score 1.0
suf_score 2.0
rank 53.0
rank_suf 27.0
rank_change 0.0
total_points 1413.01
result 1
rank_dif 26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2002, dtype: object
date 2021-06-08 00:00:00
team Colombia
score 2.0
suf_score 2.0
rank 15.0
rank_suf 8.0
rank_change 0.0
total_points 1600.66
result 2
rank_dif 7.0
points_by_rank 0.125
team_points 1
country_classification Classe S-
Name: 2003, dtype: object
date 2021-06-08 00:00:00
team Venezuela
score 0.0
suf_score 0.0
rank 30.0
rank_suf 9.0
rank_change 0.0
total_points 1500.71
result 2
rank_dif 21.0
points_by_rank 0.111111
team_points 1
country_classification Classe A
Name: 2004, dtype: object
date 2021-06-08 00:00:00
team Paraguay
score 0.0
suf_score 2.0
rank 35.0
rank_suf 3.0
rank_change 0.0
total_points 1476.02
result 1
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2005, dtype: object
date 2021-06-08 00:00:00
team Chile
score 1.0
suf_score 1.0
rank 19.0
rank_suf 81.0
rank_change 0.0
total_points 1569.52
result 2
rank_dif -62.0
points_by_rank 0.012346
team_points 1
country_classification Classe A
Name: 2006, dtype: object
date 2021-06-09 00:00:00
team Turkmenistan
score 3.0
suf_score 2.0
rank 130.0
rank_suf 93.0
rank_change 0.0
total_points 1106.51
result 0
rank_dif 37.0
points_by_rank 0.032258
team_points 3
country_classification Classe C
Name: 2007, dtype: object
date 2021-06-09 00:00:00
team Niger
score 0.0
suf_score 1.0
rank 112.0
rank_suf 94.0
rank_change 0.0
total_points 1165.91
result 1
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2008, dtype: object
date 2021-06-09 00:00:00
team Portugal
score 4.0
suf_score 0.0
rank 5.0
rank_suf 85.0
rank_change 0.0
total_points 1666.12
result 0
rank_dif -80.0
points_by_rank 0.035294
team_points 3
country_classification Classe S-
Name: 2009, dtype: object
date 2021-06-09 00:00:00
team United States
score 4.0
suf_score 0.0
rank 20.0
rank_suf 50.0
rank_change 0.0
total_points 1555.42
result 0
rank_dif -30.0
points_by_rank 0.06
team_points 3
country_classification Classe A
Name: 2010, dtype: object
date 2021-06-09 00:00:00
team South Korea
score 5.0
suf_score 0.0
rank 39.0
rank_suf 204.0
rank_change 0.0
total_points 1460.25
result 0
rank_dif -165.0
points_by_rank 0.014706
team_points 3
country_classification Classe A
Name: 2011, dtype: object
date 2021-06-10 00:00:00
team Estonia
score 2.0
suf_score 1.0
rank 116.0
rank_suf 138.0
rank_change 0.0
total_points 1161.58
result 0
rank_dif -22.0
points_by_rank 0.021739
team_points 3
country_classification Classe C
Name: 2012, dtype: object
date 2021-06-10 00:00:00
team South Africa
score 3.0
suf_score 2.0
rank 75.0
rank_suf 84.0
rank_change 0.0
total_points 1325.64
result 0
rank_dif -9.0
points_by_rank 0.035714
team_points 3
country_classification Classe B
Name: 2013, dtype: object
date 2021-06-11 00:00:00
team Philippines
score 3.0
suf_score 0.0
rank 125.0
rank_suf 198.0
rank_change 0.0
total_points 1135.94
result 0
rank_dif -73.0
points_by_rank 0.015152
team_points 3
country_classification Classe C
Name: 2014, dtype: object
date 2021-06-11 00:00:00
team China PR
score 5.0
suf_score 0.0
rank 77.0
rank_suf 155.0
rank_change 0.0
total_points 1322.96
result 0
rank_dif -78.0
points_by_rank 0.019355
team_points 3
country_classification Classe B
Name: 2015, dtype: object
date 2021-06-11 00:00:00
team Nepal
score 0.0
suf_score 3.0
rank 171.0
rank_suf 41.0
rank_change 0.0
total_points 967.88
result 1
rank_dif 130.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2016, dtype: object
date 2021-06-11 00:00:00
team Kuwait
score 0.0
suf_score 0.0
rank 148.0
rank_suf 95.0
rank_change 0.0
total_points 1056.3
result 2
rank_dif 53.0
points_by_rank 0.010526
team_points 1
country_classification Classe C
Name: 2017, dtype: object
date 2021-06-11 00:00:00
team Cambodia
score 0.0
suf_score 10.0
rank 174.0
rank_suf 31.0
rank_change 0.0
total_points 963.79
result 1
rank_dif 143.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2018, dtype: object
date 2021-06-11 00:00:00
team Hong Kong
score 0.0
suf_score 1.0
rank 144.0
rank_suf 68.0
rank_change 0.0
total_points 1072.0
result 1
rank_dif 76.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2019, dtype: object
date 2021-06-11 00:00:00
team Yemen
score 0.0
suf_score 1.0
rank 145.0
rank_suf 86.0
rank_change 0.0
total_points 1070.54
result 1
rank_dif 59.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2020, dtype: object
date 2021-06-11 00:00:00
team Afghanistan
score 1.0
suf_score 2.0
rank 149.0
rank_suf 80.0
rank_change 0.0
total_points 1052.24
result 1
rank_dif 69.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2021, dtype: object
date 2021-06-11 00:00:00
team Malaysia
score 1.0
suf_score 2.0
rank 153.0
rank_suf 92.0
rank_change 0.0
total_points 1040.02
result 1
rank_dif 61.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2022, dtype: object
date 2021-06-11 00:00:00
team Japan
score 1.0
suf_score 0.0
rank 28.0
rank_suf 25.0
rank_change 0.0
total_points 1509.34
result 0
rank_dif 3.0
points_by_rank 0.12
team_points 3
country_classification Classe A
Name: 2023, dtype: object
date 2021-06-11 00:00:00
team Guinea
score 2.0
suf_score 1.0
rank 72.0
rank_suf 112.0
rank_change 0.0
total_points 1331.79
result 0
rank_dif -40.0
points_by_rank 0.026786
team_points 3
country_classification Classe B
Name: 2024, dtype: object
date 2021-06-11 00:00:00
team Kosovo
score 1.0
suf_score 0.0
rank 120.0
rank_suf 152.0
rank_change 0.0
total_points 1151.73
result 0
rank_dif -32.0
points_by_rank 0.019737
team_points 3
country_classification Classe C
Name: 2025, dtype: object
date 2021-06-11 00:00:00
team Mauritania
score 1.0
suf_score 0.0
rank 101.0
rank_suf 151.0
rank_change 0.0
total_points 1224.76
result 0
rank_dif -50.0
points_by_rank 0.019868
team_points 3
country_classification Classe B
Name: 2026, dtype: object
date 2021-06-11 00:00:00
team Tunisia
score 0.0
suf_score 2.0
rank 26.0
rank_suf 33.0
rank_change 0.0
total_points 1512.88
result 1
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2027, dtype: object
date 2021-06-11 00:00:00
team Italy
score 3.0
suf_score 0.0
rank 7.0
rank_suf 29.0
rank_change 0.0
total_points 1642.06
result 0
rank_dif -22.0
points_by_rank 0.103448
team_points 3
country_classification Classe S-
Name: 2028, dtype: object
date 2021-06-11 00:00:00
team Saudi Arabia
score 3.0
suf_score 0.0
rank 65.0
rank_suf 159.0
rank_change 0.0
total_points 1364.39
result 0
rank_dif -94.0
points_by_rank 0.018868
team_points 3
country_classification Classe B
Name: 2029, dtype: object
date 2021-06-11 00:00:00
team United Arab Emirates
score 5.0
suf_score 0.0
rank 73.0
rank_suf 173.0
rank_change 0.0
total_points 1330.16
result 0
rank_dif -100.0
points_by_rank 0.017341
team_points 3
country_classification Classe B
Name: 2030, dtype: object
date 2021-06-12 00:00:00
team Haiti
score 0.0
suf_score 1.0
rank 83.0
rank_suf 70.0
rank_change 0.0
total_points 1290.62
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2031, dtype: object
date 2021-06-12 00:00:00
team Panama
score 2.0
suf_score 1.0
rank 78.0
rank_suf 76.0
rank_change 0.0
total_points 1321.97
result 0
rank_dif 2.0
points_by_rank 0.039474
team_points 3
country_classification Classe B
Name: 2032, dtype: object
date 2021-06-12 00:00:00
team Mexico
score 0.0
suf_score 0.0
rank 11.0
rank_suf 67.0
rank_change 0.0
total_points 1629.56
result 2
rank_dif -56.0
points_by_rank 0.014925
team_points 1
country_classification Classe S-
Name: 2033, dtype: object
date 2021-06-12 00:00:00
team Morocco
score 1.0
suf_score 0.0
rank 34.0
rank_suf 60.0
rank_change 0.0
total_points 1479.32
result 0
rank_dif -26.0
points_by_rank 0.05
team_points 3
country_classification Classe A
Name: 2034, dtype: object
date 2021-06-12 00:00:00
team Wales
score 1.0
suf_score 1.0
rank 17.0
rank_suf 13.0
rank_change 0.0
total_points 1570.36
result 2
rank_dif 4.0
points_by_rank 0.076923
team_points 1
country_classification Classe A
Name: 2035, dtype: object
date 2021-06-12 00:00:00
team Denmark
score 0.0
suf_score 1.0
rank 10.0
rank_suf 54.0
rank_change 0.0
total_points 1631.55
result 1
rank_dif -44.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2036, dtype: object
date 2021-06-12 00:00:00
team Russia
score 0.0
suf_score 3.0
rank 38.0
rank_suf 1.0
rank_change 0.0
total_points 1462.65
result 1
rank_dif 37.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2037, dtype: object
date 2021-06-13 00:00:00
team South Korea
score 2.0
suf_score 1.0
rank 39.0
rank_suf 93.0
rank_change 0.0
total_points 1460.25
result 0
rank_dif -54.0
points_by_rank 0.032258
team_points 3
country_classification Classe A
Name: 2038, dtype: object
date 2021-06-13 00:00:00
team Sudan
score 0.0
suf_score 1.0
rank 123.0
rank_suf 87.0
rank_change 0.0
total_points 1149.14
result 1
rank_dif 36.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2039, dtype: object
date 2021-06-13 00:00:00
team Tanzania
score 2.0
suf_score 0.0
rank 137.0
rank_suf 115.0
rank_change 0.0
total_points 1088.05
result 0
rank_dif 22.0
points_by_rank 0.026087
team_points 3
country_classification Classe C
Name: 2040, dtype: object
date 2021-06-13 00:00:00
team Austria
score 3.0
suf_score 1.0
rank 23.0
rank_suf 62.0
rank_change 0.0
total_points 1523.42
result 0
rank_dif -39.0
points_by_rank 0.048387
team_points 3
country_classification Classe A
Name: 2041, dtype: object
date 2021-06-13 00:00:00
team Netherlands
score 3.0
suf_score 2.0
rank 16.0
rank_suf 24.0
rank_change 0.0
total_points 1598.04
result 0
rank_dif -8.0
points_by_rank 0.125
team_points 3
country_classification Classe A
Name: 2042, dtype: object
date 2021-06-13 00:00:00
team England
score 1.0
suf_score 0.0
rank 4.0
rank_suf 14.0
rank_change 0.0
total_points 1686.78
result 0
rank_dif -10.0
points_by_rank 0.214286
team_points 3
country_classification Classe S-
Name: 2043, dtype: object
date 2021-06-13 00:00:00
team Brazil
score 3.0
suf_score 0.0
rank 3.0
rank_suf 30.0
rank_change 0.0
total_points 1742.65
result 0
rank_dif -27.0
points_by_rank 0.1
team_points 3
country_classification Classe S
Name: 2044, dtype: object
date 2021-06-13 00:00:00
team Colombia
score 1.0
suf_score 0.0
rank 15.0
rank_suf 53.0
rank_change 0.0
total_points 1600.66
result 0
rank_dif -38.0
points_by_rank 0.056604
team_points 3
country_classification Classe S-
Name: 2045, dtype: object
date 2021-06-14 00:00:00
team Libya
score 0.0
suf_score 1.0
rank 119.0
rank_suf 151.0
rank_change 0.0
total_points 1156.26
result 1
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2046, dtype: object
date 2021-06-14 00:00:00
team Scotland
score 0.0
suf_score 2.0
rank 44.0
rank_suf 40.0
rank_change 0.0
total_points 1441.43
result 1
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2047, dtype: object
date 2021-06-14 00:00:00
team Poland
score 1.0
suf_score 2.0
rank 21.0
rank_suf 36.0
rank_change 0.0
total_points 1549.87
result 1
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2048, dtype: object
date 2021-06-14 00:00:00
team Spain
score 0.0
suf_score 0.0
rank 6.0
rank_suf 18.0
rank_change 0.0
total_points 1648.13
result 2
rank_dif -12.0
points_by_rank 0.055556
team_points 1
country_classification Classe S-
Name: 2049, dtype: object
date 2021-06-14 00:00:00
team Argentina
score 1.0
suf_score 1.0
rank 8.0
rank_suf 19.0
rank_change 0.0
total_points 1641.95
result 2
rank_dif -11.0
points_by_rank 0.052632
team_points 1
country_classification Classe S-
Name: 2050, dtype: object
date 2021-06-14 00:00:00
team Paraguay
score 3.0
suf_score 1.0
rank 35.0
rank_suf 81.0
rank_change 0.0
total_points 1476.02
result 0
rank_dif -46.0
points_by_rank 0.037037
team_points 3
country_classification Classe A
Name: 2051, dtype: object
date 2021-06-15 00:00:00
team Philippines
score 1.0
suf_score 1.0
rank 125.0
rank_suf 155.0
rank_change 0.0
total_points 1135.94
result 2
rank_dif -30.0
points_by_rank 0.006452
team_points 1
country_classification Classe C
Name: 2052, dtype: object
date 2021-06-15 00:00:00
team China PR
score 3.0
suf_score 1.0
rank 77.0
rank_suf 79.0
rank_change 0.0
total_points 1322.96
result 0
rank_dif -2.0
points_by_rank 0.037975
team_points 3
country_classification Classe B
Name: 2053, dtype: object
date 2021-06-15 00:00:00
team Australia
score 1.0
suf_score 0.0
rank 41.0
rank_suf 95.0
rank_change 0.0
total_points 1457.49
result 0
rank_dif -54.0
points_by_rank 0.031579
team_points 3
country_classification Classe A
Name: 2054, dtype: object
date 2021-06-15 00:00:00
team Bahrain
score 4.0
suf_score 0.0
rank 98.0
rank_suf 144.0
rank_change -1.0
total_points 1240.1
result 0
rank_dif -46.0
points_by_rank 0.020833
team_points 3
country_classification Classe B
Name: 2055, dtype: object
date 2021-06-15 00:00:00
team Iran
score 1.0
suf_score 0.0
rank 31.0
rank_suf 68.0
rank_change 0.0
total_points 1499.52
result 0
rank_dif -37.0
points_by_rank 0.044118
team_points 3
country_classification Classe A
Name: 2056, dtype: object
date 2021-06-15 00:00:00
team Palestine
score 3.0
suf_score 0.0
rank 104.0
rank_suf 145.0
rank_change 0.0
total_points 1196.8
result 0
rank_dif -41.0
points_by_rank 0.02069
team_points 3
country_classification Classe C
Name: 2057, dtype: object
date 2021-06-15 00:00:00
team Saudi Arabia
score 3.0
suf_score 0.0
rank 65.0
rank_suf 86.0
rank_change 0.0
total_points 1364.39
result 0
rank_dif -21.0
points_by_rank 0.034884
team_points 3
country_classification Classe B
Name: 2058, dtype: object
date 2021-06-15 00:00:00
team Bangladesh
score 0.0
suf_score 3.0
rank 184.0
rank_suf 80.0
rank_change 0.0
total_points 917.38
result 1
rank_dif 104.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2059, dtype: object
date 2021-06-15 00:00:00
team India
score 1.0
suf_score 1.0
rank 105.0
rank_suf 149.0
rank_change 0.0
total_points 1184.36
result 2
rank_dif -44.0
points_by_rank 0.006711
team_points 1
country_classification Classe C
Name: 2060, dtype: object
date 2021-06-15 00:00:00
team Tajikistan
score 4.0
suf_score 0.0
rank 121.0
rank_suf 139.0
rank_change 0.0
total_points 1151.1
result 0
rank_dif -18.0
points_by_rank 0.021583
team_points 3
country_classification Classe C
Name: 2061, dtype: object
date 2021-06-15 00:00:00
team Thailand
score 0.0
suf_score 1.0
rank 106.0
rank_suf 153.0
rank_change 0.0
total_points 1178.07
result 1
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2062, dtype: object
date 2021-06-15 00:00:00
team United Arab Emirates
score 3.0
suf_score 2.0
rank 73.0
rank_suf 92.0
rank_change 0.0
total_points 1330.16
result 0
rank_dif -19.0
points_by_rank 0.032609
team_points 3
country_classification Classe B
Name: 2063, dtype: object
date 2021-06-15 00:00:00
team Canada
score 3.0
suf_score 0.0
rank 70.0
rank_suf 83.0
rank_change 0.0
total_points 1340.56
result 0
rank_dif -13.0
points_by_rank 0.036145
team_points 3
country_classification Classe B
Name: 2064, dtype: object
date 2021-06-15 00:00:00
team Curaçao
score 0.0
suf_score 0.0
rank 76.0
rank_suf 78.0
rank_change 0.0
total_points 1323.06
result 2
rank_dif -2.0
points_by_rank 0.012821
team_points 1
country_classification Classe B
Name: 2065, dtype: object
date 2021-06-15 00:00:00
team Tunisia
score 1.0
suf_score 0.0
rank 26.0
rank_suf 57.0
rank_change 0.0
total_points 1512.88
result 0
rank_dif -31.0
points_by_rank 0.052632
team_points 3
country_classification Classe A
Name: 2066, dtype: object
date 2021-06-15 00:00:00
team Djibouti
score 1.0
suf_score 0.0
rank 183.0
rank_suf 197.0
rank_change 0.0
total_points 918.91
result 0
rank_dif -14.0
points_by_rank 0.015228
team_points 3
country_classification Classe D
Name: 2067, dtype: object
date 2021-06-15 00:00:00
team Hungary
score 0.0
suf_score 3.0
rank 37.0
rank_suf 5.0
rank_change 0.0
total_points 1468.75
result 1
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2068, dtype: object
date 2021-06-15 00:00:00
team Germany
score 0.0
suf_score 1.0
rank 12.0
rank_suf 2.0
rank_change 0.0
total_points 1609.12
result 1
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2069, dtype: object
date 2021-06-16 00:00:00
team Turkey
score 0.0
suf_score 2.0
rank 29.0
rank_suf 17.0
rank_change 0.0
total_points 1505.05
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2070, dtype: object
date 2021-06-16 00:00:00
team Italy
score 3.0
suf_score 0.0
rank 7.0
rank_suf 13.0
rank_change 0.0
total_points 1642.06
result 0
rank_dif -6.0
points_by_rank 0.230769
team_points 3
country_classification Classe S-
Name: 2071, dtype: object
date 2021-06-16 00:00:00
team Russia
score 1.0
suf_score 0.0
rank 38.0
rank_suf 54.0
rank_change 0.0
total_points 1462.65
result 0
rank_dif -16.0
points_by_rank 0.055556
team_points 3
country_classification Classe A
Name: 2072, dtype: object
date 2021-06-17 00:00:00
team Denmark
score 1.0
suf_score 2.0
rank 10.0
rank_suf 1.0
rank_change 0.0
total_points 1631.55
result 1
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2073, dtype: object
date 2021-06-17 00:00:00
team Ukraine
score 2.0
suf_score 1.0
rank 24.0
rank_suf 62.0
rank_change 0.0
total_points 1514.64
result 0
rank_dif -38.0
points_by_rank 0.048387
team_points 3
country_classification Classe A
Name: 2074, dtype: object
date 2021-06-17 00:00:00
team Netherlands
score 2.0
suf_score 0.0
rank 16.0
rank_suf 23.0
rank_change 0.0
total_points 1598.04
result 0
rank_dif -7.0
points_by_rank 0.130435
team_points 3
country_classification Classe A
Name: 2075, dtype: object
date 2021-06-17 00:00:00
team Colombia
score 0.0
suf_score 0.0
rank 15.0
rank_suf 30.0
rank_change 0.0
total_points 1600.66
result 2
rank_dif -15.0
points_by_rank 0.033333
team_points 1
country_classification Classe S-
Name: 2076, dtype: object
date 2021-06-17 00:00:00
team Brazil
score 4.0
suf_score 0.0
rank 3.0
rank_suf 27.0
rank_change 0.0
total_points 1742.65
result 0
rank_dif -24.0
points_by_rank 0.111111
team_points 3
country_classification Classe S
Name: 2077, dtype: object
date 2021-06-17 00:00:00
team Algeria
score 5.0
suf_score 1.0
rank 33.0
rank_suf 151.0
rank_change 0.0
total_points 1486.69
result 0
rank_dif -118.0
points_by_rank 0.019868
team_points 3
country_classification Classe A
Name: 2078, dtype: object
date 2021-06-18 00:00:00
team Croatia
score 1.0
suf_score 1.0
rank 14.0
rank_suf 40.0
rank_change 0.0
total_points 1605.75
result 2
rank_dif -26.0
points_by_rank 0.025
team_points 1
country_classification Classe S-
Name: 2079, dtype: object
date 2021-06-18 00:00:00
team England
score 0.0
suf_score 0.0
rank 4.0
rank_suf 44.0
rank_change 0.0
total_points 1686.78
result 2
rank_dif -40.0
points_by_rank 0.022727
team_points 1
country_classification Classe S-
Name: 2080, dtype: object
date 2021-06-18 00:00:00
team Sweden
score 1.0
suf_score 0.0
rank 18.0
rank_suf 36.0
rank_change 0.0
total_points 1569.81
result 0
rank_dif -18.0
points_by_rank 0.083333
team_points 3
country_classification Classe A
Name: 2081, dtype: object
date 2021-06-18 00:00:00
team Chile
score 1.0
suf_score 0.0
rank 19.0
rank_suf 81.0
rank_change 0.0
total_points 1569.52
result 0
rank_dif -62.0
points_by_rank 0.037037
team_points 3
country_classification Classe A
Name: 2082, dtype: object
date 2021-06-18 00:00:00
team Argentina
score 1.0
suf_score 0.0
rank 8.0
rank_suf 9.0
rank_change 0.0
total_points 1641.95
result 0
rank_dif -1.0
points_by_rank 0.333333
team_points 3
country_classification Classe S-
Name: 2083, dtype: object
date 2021-06-19 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 6.0
rank_suf 21.0
rank_change 0.0
total_points 1648.13
result 2
rank_dif -15.0
points_by_rank 0.047619
team_points 1
country_classification Classe S-
Name: 2084, dtype: object
date 2021-06-19 00:00:00
team Hungary
score 1.0
suf_score 1.0
rank 37.0
rank_suf 2.0
rank_change 0.0
total_points 1468.75
result 2
rank_dif 35.0
points_by_rank 0.5
team_points 1
country_classification Classe A
Name: 2085, dtype: object
date 2021-06-19 00:00:00
team Germany
score 4.0
suf_score 2.0
rank 12.0
rank_suf 5.0
rank_change 0.0
total_points 1609.12
result 0
rank_dif 7.0
points_by_rank 0.6
team_points 3
country_classification Classe S-
Name: 2086, dtype: object
date 2021-06-19 00:00:00
team Libya
score 0.0
suf_score 1.0
rank 119.0
rank_suf 123.0
rank_change 0.0
total_points 1156.26
result 1
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2087, dtype: object
date 2021-06-20 00:00:00
team Italy
score 1.0
suf_score 0.0
rank 7.0
rank_suf 17.0
rank_change 0.0
total_points 1642.06
result 0
rank_dif -10.0
points_by_rank 0.176471
team_points 3
country_classification Classe S-
Name: 2088, dtype: object
date 2021-06-20 00:00:00
team Switzerland
score 3.0
suf_score 1.0
rank 13.0
rank_suf 29.0
rank_change 0.0
total_points 1606.21
result 0
rank_dif -16.0
points_by_rank 0.103448
team_points 3
country_classification Classe S-
Name: 2089, dtype: object
date 2021-06-20 00:00:00
team Venezuela
score 2.0
suf_score 2.0
rank 30.0
rank_suf 53.0
rank_change 0.0
total_points 1500.71
result 2
rank_dif -23.0
points_by_rank 0.018868
team_points 1
country_classification Classe A
Name: 2090, dtype: object
date 2021-06-20 00:00:00
team Colombia
score 1.0
suf_score 2.0
rank 15.0
rank_suf 27.0
rank_change 0.0
total_points 1600.66
result 1
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2091, dtype: object
date 2021-06-20 00:00:00
team Oman
score 2.0
suf_score 1.0
rank 80.0
rank_suf 197.0
rank_change 0.0
total_points 1301.51
result 0
rank_dif -117.0
points_by_rank 0.015228
team_points 3
country_classification Classe B
Name: 2092, dtype: object
date 2021-06-21 00:00:00
team Denmark
score 4.0
suf_score 1.0
rank 10.0
rank_suf 38.0
rank_change 0.0
total_points 1631.55
result 0
rank_dif -28.0
points_by_rank 0.078947
team_points 3
country_classification Classe S-
Name: 2093, dtype: object
date 2021-06-21 00:00:00
team Finland
score 0.0
suf_score 2.0
rank 54.0
rank_suf 1.0
rank_change 0.0
total_points 1410.82
result 1
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2094, dtype: object
date 2021-06-21 00:00:00
team Netherlands
score 3.0
suf_score 0.0
rank 16.0
rank_suf 62.0
rank_change 0.0
total_points 1598.04
result 0
rank_dif -46.0
points_by_rank 0.048387
team_points 3
country_classification Classe A
Name: 2095, dtype: object
date 2021-06-21 00:00:00
team Ukraine
score 0.0
suf_score 1.0
rank 24.0
rank_suf 23.0
rank_change 0.0
total_points 1514.64
result 1
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2096, dtype: object
date 2021-06-21 00:00:00
team Uruguay
score 1.0
suf_score 1.0
rank 9.0
rank_suf 19.0
rank_change 0.0
total_points 1639.08
result 2
rank_dif -10.0
points_by_rank 0.052632
team_points 1
country_classification Classe S-
Name: 2097, dtype: object
date 2021-06-21 00:00:00
team Argentina
score 1.0
suf_score 0.0
rank 8.0
rank_suf 35.0
rank_change 0.0
total_points 1641.95
result 0
rank_dif -27.0
points_by_rank 0.085714
team_points 3
country_classification Classe S-
Name: 2098, dtype: object
date 2021-06-22 00:00:00
team Scotland
score 1.0
suf_score 3.0
rank 44.0
rank_suf 14.0
rank_change 0.0
total_points 1441.43
result 1
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2099, dtype: object
date 2021-06-22 00:00:00
team England
score 1.0
suf_score 0.0
rank 4.0
rank_suf 40.0
rank_change 0.0
total_points 1686.78
result 0
rank_dif -36.0
points_by_rank 0.075
team_points 3
country_classification Classe S-
Name: 2100, dtype: object
date 2021-06-22 00:00:00
team Mauritania
score 2.0
suf_score 0.0
rank 101.0
rank_suf 145.0
rank_change 0.0
total_points 1224.76
result 0
rank_dif -44.0
points_by_rank 0.02069
team_points 3
country_classification Classe B
Name: 2101, dtype: object
date 2021-06-23 00:00:00
team Spain
score 5.0
suf_score 0.0
rank 6.0
rank_suf 36.0
rank_change 0.0
total_points 1648.13
result 0
rank_dif -30.0
points_by_rank 0.083333
team_points 3
country_classification Classe S-
Name: 2102, dtype: object
date 2021-06-23 00:00:00
team Sweden
score 3.0
suf_score 2.0
rank 18.0
rank_suf 21.0
rank_change 0.0
total_points 1569.81
result 0
rank_dif -3.0
points_by_rank 0.142857
team_points 3
country_classification Classe A
Name: 2103, dtype: object
date 2021-06-23 00:00:00
team Germany
score 2.0
suf_score 2.0
rank 12.0
rank_suf 37.0
rank_change 0.0
total_points 1609.12
result 2
rank_dif -25.0
points_by_rank 0.027027
team_points 1
country_classification Classe S-
Name: 2104, dtype: object
date 2021-06-23 00:00:00
team Portugal
score 2.0
suf_score 2.0
rank 5.0
rank_suf 2.0
rank_change 0.0
total_points 1666.12
result 2
rank_dif 3.0
points_by_rank 0.5
team_points 1
country_classification Classe S-
Name: 2105, dtype: object
date 2021-06-23 00:00:00
team Ecuador
score 2.0
suf_score 2.0
rank 53.0
rank_suf 27.0
rank_change 0.0
total_points 1413.01
result 2
rank_dif 26.0
points_by_rank 0.037037
team_points 1
country_classification Classe A
Name: 2106, dtype: object
date 2021-06-23 00:00:00
team Brazil
score 2.0
suf_score 1.0
rank 3.0
rank_suf 15.0
rank_change 0.0
total_points 1742.65
result 0
rank_dif -12.0
points_by_rank 0.2
team_points 3
country_classification Classe S
Name: 2107, dtype: object
date 2021-06-23 00:00:00
team Lebanon
score 1.0
suf_score 0.0
rank 93.0
rank_suf 183.0
rank_change 0.0
total_points 1256.08
result 0
rank_dif -90.0
points_by_rank 0.016393
team_points 3
country_classification Classe B
Name: 2108, dtype: object
date 2021-06-24 00:00:00
team Bolivia
score 0.0
suf_score 2.0
rank 81.0
rank_suf 9.0
rank_change 0.0
total_points 1300.11
result 1
rank_dif 72.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2109, dtype: object
date 2021-06-24 00:00:00
team Chile
score 0.0
suf_score 2.0
rank 19.0
rank_suf 35.0
rank_change 0.0
total_points 1569.52
result 1
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2110, dtype: object
date 2021-06-24 00:00:00
team Palestine
score 5.0
suf_score 1.0
rank 104.0
rank_suf 131.0
rank_change 0.0
total_points 1196.8
result 0
rank_dif -27.0
points_by_rank 0.022901
team_points 3
country_classification Classe C
Name: 2111, dtype: object
date 2021-06-25 00:00:00
team Bahrain
score 2.0
suf_score 0.0
rank 98.0
rank_suf 148.0
rank_change -1.0
total_points 1240.1
result 0
rank_dif -50.0
points_by_rank 0.02027
team_points 3
country_classification Classe B
Name: 2112, dtype: object
date 2021-06-26 00:00:00
team Italy
score 2.0
suf_score 1.0
rank 7.0
rank_suf 23.0
rank_change 0.0
total_points 1642.06
result 0
rank_dif -16.0
points_by_rank 0.130435
team_points 3
country_classification Classe S-
Name: 2113, dtype: object
date 2021-06-26 00:00:00
team Wales
score 0.0
suf_score 4.0
rank 17.0
rank_suf 10.0
rank_change 0.0
total_points 1570.36
result 1
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2114, dtype: object
date 2021-06-27 00:00:00
team Netherlands
score 0.0
suf_score 2.0
rank 16.0
rank_suf 40.0
rank_change 0.0
total_points 1598.04
result 1
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2115, dtype: object
date 2021-06-27 00:00:00
team Belgium
score 1.0
suf_score 0.0
rank 1.0
rank_suf 5.0
rank_change 0.0
total_points 1783.38
result 0
rank_dif -4.0
points_by_rank 0.6
team_points 3
country_classification Classe S
Name: 2116, dtype: object
date 2021-06-27 00:00:00
team Brazil
score 1.0
suf_score 1.0
rank 3.0
rank_suf 53.0
rank_change 0.0
total_points 1742.65
result 2
rank_dif -50.0
points_by_rank 0.018868
team_points 1
country_classification Classe S
Name: 2117, dtype: object
date 2021-06-27 00:00:00
team Venezuela
score 0.0
suf_score 1.0
rank 30.0
rank_suf 27.0
rank_change 0.0
total_points 1500.71
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2118, dtype: object
date 2021-06-27 00:00:00
team El Salvador
score 0.0
suf_score 0.0
rank 69.0
rank_suf 127.0
rank_change 0.0
total_points 1341.24
result 2
rank_dif -58.0
points_by_rank 0.007874
team_points 1
country_classification Classe B
Name: 2119, dtype: object
date 2021-06-28 00:00:00
team Croatia
score 3.0
suf_score 5.0
rank 14.0
rank_suf 6.0
rank_change 0.0
total_points 1605.75
result 1
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2120, dtype: object
date 2021-06-28 00:00:00
team France
score 3.0
suf_score 3.0
rank 2.0
rank_suf 13.0
rank_change 0.0
total_points 1757.3
result 2
rank_dif -11.0
points_by_rank 0.076923
team_points 1
country_classification Classe S
Name: 2121, dtype: object
date 2021-06-28 00:00:00
team Argentina
score 4.0
suf_score 1.0
rank 8.0
rank_suf 81.0
rank_change 0.0
total_points 1641.95
result 0
rank_dif -73.0
points_by_rank 0.037037
team_points 3
country_classification Classe S-
Name: 2122, dtype: object
date 2021-06-28 00:00:00
team Uruguay
score 1.0
suf_score 0.0
rank 9.0
rank_suf 35.0
rank_change 0.0
total_points 1639.08
result 0
rank_dif -26.0
points_by_rank 0.085714
team_points 3
country_classification Classe S-
Name: 2123, dtype: object
date 2021-06-29 00:00:00
team England
score 2.0
suf_score 0.0
rank 4.0
rank_suf 12.0
rank_change 0.0
total_points 1686.78
result 0
rank_dif -8.0
points_by_rank 0.25
team_points 3
country_classification Classe S-
Name: 2124, dtype: object
date 2021-06-29 00:00:00
team Sweden
score 1.0
suf_score 2.0
rank 18.0
rank_suf 24.0
rank_change 0.0
total_points 1569.81
result 1
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2125, dtype: object
date 2021-06-30 00:00:00
team Mexico
score 3.0
suf_score 0.0
rank 11.0
rank_suf 78.0
rank_change 0.0
total_points 1629.56
result 0
rank_dif -67.0
points_by_rank 0.038462
team_points 3
country_classification Classe S-
Name: 2126, dtype: object
date 2021-07-02 00:00:00
team Switzerland
score 1.0
suf_score 1.0
rank 13.0
rank_suf 6.0
rank_change 0.0
total_points 1606.21
result 2
rank_dif 7.0
points_by_rank 0.166667
team_points 1
country_classification Classe S-
Name: 2127, dtype: object
date 2021-07-02 00:00:00
team Belgium
score 1.0
suf_score 2.0
rank 1.0
rank_suf 7.0
rank_change 0.0
total_points 1783.38
result 1
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 2128, dtype: object
date 2021-07-02 00:00:00
team Peru
score 3.0
suf_score 3.0
rank 27.0
rank_suf 35.0
rank_change 0.0
total_points 1511.88
result 2
rank_dif -8.0
points_by_rank 0.028571
team_points 1
country_classification Classe A
Name: 2129, dtype: object
date 2021-07-02 00:00:00
team Brazil
score 1.0
suf_score 0.0
rank 3.0
rank_suf 19.0
rank_change 0.0
total_points 1742.65
result 0
rank_dif -16.0
points_by_rank 0.157895
team_points 3
country_classification Classe S
Name: 2130, dtype: object
date 2021-07-02 00:00:00
team Trinidad and Tobago
score 6.0
suf_score 1.0
rank 103.0
rank_suf 180.0
rank_change 0.0
total_points 1201.33
result 0
rank_dif -77.0
points_by_rank 0.016667
team_points 3
country_classification Classe B
Name: 2131, dtype: object
date 2021-07-02 00:00:00
team Bermuda
score 8.0
suf_score 1.0
rank 168.0
rank_suf 162.0
rank_change 0.0
total_points 987.78
result 0
rank_dif 6.0
points_by_rank 0.018519
team_points 3
country_classification Classe D
Name: 2132, dtype: object
date 2021-07-03 00:00:00
team Czech Republic
score 1.0
suf_score 2.0
rank 40.0
rank_suf 10.0
rank_change 0.0
total_points 1458.81
result 1
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2133, dtype: object
date 2021-07-03 00:00:00
team Ukraine
score 0.0
suf_score 4.0
rank 24.0
rank_suf 4.0
rank_change 0.0
total_points 1514.64
result 1
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2134, dtype: object
date 2021-07-03 00:00:00
team Mexico
score 4.0
suf_score 0.0
rank 11.0
rank_suf 32.0
rank_change 0.0
total_points 1629.56
result 0
rank_dif -21.0
points_by_rank 0.09375
team_points 3
country_classification Classe S-
Name: 2135, dtype: object
date 2021-07-03 00:00:00
team Uruguay
score 0.0
suf_score 0.0
rank 9.0
rank_suf 15.0
rank_change 0.0
total_points 1639.08
result 2
rank_dif -6.0
points_by_rank 0.066667
team_points 1
country_classification Classe S-
Name: 2136, dtype: object
date 2021-07-03 00:00:00
team Argentina
score 3.0
suf_score 0.0
rank 8.0
rank_suf 53.0
rank_change 0.0
total_points 1641.95
result 0
rank_dif -45.0
points_by_rank 0.056604
team_points 3
country_classification Classe S-
Name: 2137, dtype: object
date 2021-07-03 00:00:00
team Guatemala
score 4.0
suf_score 0.0
rank 127.0
rank_suf 165.0
rank_change 0.0
total_points 1129.3
result 0
rank_dif -38.0
points_by_rank 0.018182
team_points 3
country_classification Classe C
Name: 2138, dtype: object
date 2021-07-04 00:00:00
team Qatar
score 1.0
suf_score 0.0
rank 58.0
rank_suf 69.0
rank_change 0.0
total_points 1397.92
result 0
rank_dif -11.0
points_by_rank 0.043478
team_points 3
country_classification Classe B
Name: 2139, dtype: object
date 2021-07-05 00:00:00
team Brazil
score 1.0
suf_score 0.0
rank 3.0
rank_suf 27.0
rank_change 0.0
total_points 1742.65
result 0
rank_dif -24.0
points_by_rank 0.111111
team_points 3
country_classification Classe S
Name: 2140, dtype: object
date 2021-07-06 00:00:00
team Argentina
score 1.0
suf_score 1.0
rank 8.0
rank_suf 15.0
rank_change 0.0
total_points 1641.95
result 2
rank_dif -7.0
points_by_rank 0.066667
team_points 1
country_classification Classe S-
Name: 2141, dtype: object
date 2021-07-06 00:00:00
team Italy
score 1.0
suf_score 1.0
rank 7.0
rank_suf 6.0
rank_change 0.0
total_points 1642.06
result 2
rank_dif 1.0
points_by_rank 0.166667
team_points 1
country_classification Classe S-
Name: 2142, dtype: object
date 2021-07-06 00:00:00
team Haiti
score 4.0
suf_score 1.0
rank 83.0
rank_suf 168.0
rank_change 0.0
total_points 1290.62
result 0
rank_dif -85.0
points_by_rank 0.017857
team_points 3
country_classification Classe B
Name: 2143, dtype: object
date 2021-07-06 00:00:00
team Eswatini
score 3.0
suf_score 1.0
rank 154.0
rank_suf 146.0
rank_change 0.0
total_points 1039.24
result 0
rank_dif 8.0
points_by_rank 0.020548
team_points 3
country_classification Classe C
Name: 2144, dtype: object
date 2021-07-06 00:00:00
team South Africa
score 1.0
suf_score 0.0
rank 75.0
rank_suf 150.0
rank_change 0.0
total_points 1325.64
result 0
rank_dif -75.0
points_by_rank 0.02
team_points 3
country_classification Classe B
Name: 2145, dtype: object
date 2021-07-07 00:00:00
team England
score 2.0
suf_score 1.0
rank 4.0
rank_suf 10.0
rank_change 0.0
total_points 1686.78
result 0
rank_dif -6.0
points_by_rank 0.3
team_points 3
country_classification Classe S-
Name: 2146, dtype: object
date 2021-07-07 00:00:00
team Mozambique
score 0.0
suf_score 0.0
rank 117.0
rank_suf 107.0
rank_change 0.0
total_points 1161.55
result 2
rank_dif 10.0
points_by_rank 0.009346
team_points 1
country_classification Classe C
Name: 2147, dtype: object
date 2021-07-07 00:00:00
team Senegal
score 1.0
suf_score 2.0
rank 22.0
rank_suf 111.0
rank_change 0.0
total_points 1542.45
result 1
rank_dif -89.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2148, dtype: object
date 2021-07-08 00:00:00
team Zambia
score 1.0
suf_score 2.0
rank 87.0
rank_suf 146.0
rank_change 0.0
total_points 1280.15
result 1
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2149, dtype: object
date 2021-07-08 00:00:00
team South Africa
score 1.0
suf_score 0.0
rank 75.0
rank_suf 154.0
rank_change 0.0
total_points 1325.64
result 0
rank_dif -79.0
points_by_rank 0.019481
team_points 3
country_classification Classe B
Name: 2150, dtype: object
date 2021-07-09 00:00:00
team Peru
score 2.0
suf_score 3.0
rank 27.0
rank_suf 15.0
rank_change 0.0
total_points 1511.88
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2151, dtype: object
date 2021-07-09 00:00:00
team Malawi
score 2.0
suf_score 2.0
rank 115.0
rank_suf 107.0
rank_change 0.0
total_points 1162.39
result 2
rank_dif 8.0
points_by_rank 0.009346
team_points 1
country_classification Classe C
Name: 2152, dtype: object
date 2021-07-09 00:00:00
team Senegal
score 1.0
suf_score 0.0
rank 22.0
rank_suf 117.0
rank_change 0.0
total_points 1542.45
result 0
rank_dif -95.0
points_by_rank 0.025641
team_points 3
country_classification Classe A
Name: 2153, dtype: object
date 2021-07-10 00:00:00
team Brazil
score 0.0
suf_score 1.0
rank 3.0
rank_suf 8.0
rank_change 0.0
total_points 1742.65
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 2154, dtype: object
date 2021-07-10 00:00:00
team Lesotho
score 0.0
suf_score 4.0
rank 146.0
rank_suf 150.0
rank_change 0.0
total_points 1069.91
result 1
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2155, dtype: object
date 2021-07-10 00:00:00
team Zambia
score 0.0
suf_score 1.0
rank 87.0
rank_suf 154.0
rank_change 0.0
total_points 1280.15
result 1
rank_dif -67.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2156, dtype: object
date 2021-07-10 00:00:00
team Mexico
score 0.0
suf_score 0.0
rank 11.0
rank_suf 103.0
rank_change 0.0
total_points 1629.56
result 2
rank_dif -92.0
points_by_rank 0.009709
team_points 1
country_classification Classe S-
Name: 2157, dtype: object
date 2021-07-11 00:00:00
team England
score 1.0
suf_score 1.0
rank 4.0
rank_suf 7.0
rank_change 0.0
total_points 1686.78
result 2
rank_dif -3.0
points_by_rank 0.142857
team_points 1
country_classification Classe S-
Name: 2158, dtype: object
date 2021-07-11 00:00:00
team Namibia
score 2.0
suf_score 0.0
rank 111.0
rank_suf 107.0
rank_change 0.0
total_points 1168.44
result 0
rank_dif 4.0
points_by_rank 0.028037
team_points 3
country_classification Classe C
Name: 2159, dtype: object
date 2021-07-11 00:00:00
team Mozambique
score 2.0
suf_score 0.0
rank 117.0
rank_suf 115.0
rank_change 0.0
total_points 1161.55
result 0
rank_dif 2.0
points_by_rank 0.026087
team_points 3
country_classification Classe C
Name: 2160, dtype: object
date 2021-07-11 00:00:00
team El Salvador
score 2.0
suf_score 0.0
rank 69.0
rank_suf 127.0
rank_change 0.0
total_points 1341.24
result 0
rank_dif -58.0
points_by_rank 0.023622
team_points 3
country_classification Classe B
Name: 2161, dtype: object
date 2021-07-11 00:00:00
team United States
score 1.0
suf_score 0.0
rank 20.0
rank_suf 83.0
rank_change 0.0
total_points 1555.42
result 0
rank_dif -63.0
points_by_rank 0.036145
team_points 3
country_classification Classe A
Name: 2162, dtype: object
date 2021-07-12 00:00:00
team Jamaica
score 2.0
suf_score 0.0
rank 45.0
rank_suf 136.0
rank_change 0.0
total_points 1432.65
result 0
rank_dif -91.0
points_by_rank 0.022059
team_points 3
country_classification Classe A
Name: 2163, dtype: object
date 2021-07-13 00:00:00
team Botswana
score 1.0
suf_score 2.0
rank 150.0
rank_suf 87.0
rank_change 0.0
total_points 1051.82
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2164, dtype: object
date 2021-07-13 00:00:00
team South Africa
score 4.0
suf_score 0.0
rank 75.0
rank_suf 146.0
rank_change 0.0
total_points 1325.64
result 0
rank_dif -71.0
points_by_rank 0.020548
team_points 3
country_classification Classe B
Name: 2165, dtype: object
date 2021-07-13 00:00:00
team Senegal
score 2.0
suf_score 1.0
rank 22.0
rank_suf 107.0
rank_change 0.0
total_points 1542.45
result 0
rank_dif -85.0
points_by_rank 0.028037
team_points 3
country_classification Classe A
Name: 2166, dtype: object
date 2021-07-13 00:00:00
team Malawi
score 1.0
suf_score 1.0
rank 115.0
rank_suf 111.0
rank_change 0.0
total_points 1162.39
result 2
rank_dif 4.0
points_by_rank 0.009009
team_points 1
country_classification Classe C
Name: 2167, dtype: object
date 2021-07-13 00:00:00
team Qatar
score 3.0
suf_score 3.0
rank 58.0
rank_suf 78.0
rank_change 0.0
total_points 1397.92
result 2
rank_dif -20.0
points_by_rank 0.012821
team_points 1
country_classification Classe B
Name: 2168, dtype: object
date 2021-07-13 00:00:00
team Honduras
score 4.0
suf_score 0.0
rank 67.0
rank_suf 160.0
rank_change 0.0
total_points 1361.21
result 0
rank_dif -93.0
points_by_rank 0.01875
team_points 3
country_classification Classe B
Name: 2169, dtype: object
date 2021-07-14 00:00:00
team South Africa
score 0.0
suf_score 0.0
rank 75.0
rank_suf 87.0
rank_change 0.0
total_points 1325.64
result 2
rank_dif -12.0
points_by_rank 0.011494
team_points 1
country_classification Classe B
Name: 2170, dtype: object
date 2021-07-14 00:00:00
team Eswatini
score 1.0
suf_score 1.0
rank 154.0
rank_suf 150.0
rank_change 0.0
total_points 1039.24
result 2
rank_dif 4.0
points_by_rank 0.006667
team_points 1
country_classification Classe C
Name: 2171, dtype: object
date 2021-07-14 00:00:00
team Mozambique
score 1.0
suf_score 0.0
rank 117.0
rank_suf 111.0
rank_change 0.0
total_points 1161.55
result 0
rank_dif 6.0
points_by_rank 0.027027
team_points 3
country_classification Classe C
Name: 2172, dtype: object
date 2021-07-14 00:00:00
team Senegal
score 2.0
suf_score 1.0
rank 22.0
rank_suf 115.0
rank_change 0.0
total_points 1542.45
result 0
rank_dif -93.0
points_by_rank 0.026087
team_points 3
country_classification Classe A
Name: 2173, dtype: object
date 2021-07-14 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 2.0
rank 103.0
rank_suf 69.0
rank_change 0.0
total_points 1201.33
result 1
rank_dif 34.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2174, dtype: object
date 2021-07-14 00:00:00
team Guatemala
score 0.0
suf_score 3.0
rank 127.0
rank_suf 11.0
rank_change 0.0
total_points 1129.3
result 1
rank_dif 116.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2175, dtype: object
date 2021-07-15 00:00:00
team Haiti
score 1.0
suf_score 4.0
rank 83.0
rank_suf 70.0
rank_change 0.0
total_points 1290.62
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2176, dtype: object
date 2021-07-16 00:00:00
team Senegal
score 2.0
suf_score 2.0
rank 22.0
rank_suf 154.0
rank_change 0.0
total_points 1542.45
result 2
rank_dif -132.0
points_by_rank 0.006494
team_points 1
country_classification Classe A
Name: 2177, dtype: object
date 2021-07-16 00:00:00
team South Africa
score 3.0
suf_score 0.0
rank 75.0
rank_suf 117.0
rank_change 0.0
total_points 1325.64
result 0
rank_dif -42.0
points_by_rank 0.025641
team_points 3
country_classification Classe B
Name: 2178, dtype: object
date 2021-07-16 00:00:00
team Suriname
score 1.0
suf_score 2.0
rank 136.0
rank_suf 50.0
rank_change 0.0
total_points 1089.43
result 1
rank_dif 86.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2179, dtype: object
date 2021-07-17 00:00:00
team Grenada
score 0.0
suf_score 4.0
rank 160.0
rank_suf 58.0
rank_change 0.0
total_points 1017.57
result 1
rank_dif 102.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2180, dtype: object
date 2021-07-17 00:00:00
team Panama
score 2.0
suf_score 3.0
rank 78.0
rank_suf 67.0
rank_change 0.0
total_points 1321.97
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2181, dtype: object
date 2021-07-18 00:00:00
team Eswatini
score 1.0
suf_score 1.0
rank 154.0
rank_suf 117.0
rank_change 0.0
total_points 1039.24
result 2
rank_dif 37.0
points_by_rank 0.008547
team_points 1
country_classification Classe C
Name: 2182, dtype: object
date 2021-07-18 00:00:00
team South Africa
score 0.0
suf_score 0.0
rank 75.0
rank_suf 22.0
rank_change 0.0
total_points 1325.64
result 2
rank_dif 53.0
points_by_rank 0.045455
team_points 1
country_classification Classe B
Name: 2183, dtype: object
date 2021-07-18 00:00:00
team Guatemala
score 1.0
suf_score 1.0
rank 127.0
rank_suf 103.0
rank_change 0.0
total_points 1129.3
result 2
rank_dif 24.0
points_by_rank 0.009709
team_points 1
country_classification Classe C
Name: 2184, dtype: object
date 2021-07-18 00:00:00
team Mexico
score 1.0
suf_score 0.0
rank 11.0
rank_suf 69.0
rank_change 0.0
total_points 1629.56
result 0
rank_dif -58.0
points_by_rank 0.043478
team_points 3
country_classification Classe S-
Name: 2185, dtype: object
date 2021-07-18 00:00:00
team United States
score 1.0
suf_score 0.0
rank 20.0
rank_suf 70.0
rank_change 0.0
total_points 1555.42
result 0
rank_dif -50.0
points_by_rank 0.042857
team_points 3
country_classification Classe A
Name: 2186, dtype: object
date 2021-07-20 00:00:00
team Costa Rica
score 1.0
suf_score 0.0
rank 50.0
rank_suf 45.0
rank_change 0.0
total_points 1423.4
result 0
rank_dif 5.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 2187, dtype: object
date 2021-07-20 00:00:00
team Panama
score 3.0
suf_score 1.0
rank 78.0
rank_suf 160.0
rank_change 0.0
total_points 1321.97
result 0
rank_dif -82.0
points_by_rank 0.01875
team_points 3
country_classification Classe B
Name: 2188, dtype: object
date 2021-07-20 00:00:00
team Honduras
score 0.0
suf_score 2.0
rank 67.0
rank_suf 58.0
rank_change 0.0
total_points 1361.21
result 1
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2189, dtype: object
date 2021-07-24 00:00:00
team Mexico
score 3.0
suf_score 0.0
rank 11.0
rank_suf 67.0
rank_change 0.0
total_points 1629.56
result 0
rank_dif -56.0
points_by_rank 0.044776
team_points 3
country_classification Classe S-
Name: 2190, dtype: object
date 2021-07-24 00:00:00
team Qatar
score 3.0
suf_score 2.0
rank 58.0
rank_suf 69.0
rank_change 0.0
total_points 1397.92
result 0
rank_dif -11.0
points_by_rank 0.043478
team_points 3
country_classification Classe B
Name: 2191, dtype: object
date 2021-07-25 00:00:00
team Costa Rica
score 0.0
suf_score 2.0
rank 50.0
rank_suf 70.0
rank_change 0.0
total_points 1423.4
result 1
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2192, dtype: object
date 2021-07-25 00:00:00
team United States
score 1.0
suf_score 0.0
rank 20.0
rank_suf 45.0
rank_change 0.0
total_points 1555.42
result 0
rank_dif -25.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 2193, dtype: object
date 2021-07-29 00:00:00
team Mexico
score 2.0
suf_score 1.0
rank 11.0
rank_suf 70.0
rank_change 0.0
total_points 1629.56
result 0
rank_dif -59.0
points_by_rank 0.042857
team_points 3
country_classification Classe S-
Name: 2194, dtype: object
date 2021-07-29 00:00:00
team United States
score 1.0
suf_score 0.0
rank 20.0
rank_suf 58.0
rank_change 0.0
total_points 1555.42
result 0
rank_dif -38.0
points_by_rank 0.051724
team_points 3
country_classification Classe A
Name: 2195, dtype: object
date 2021-08-01 00:00:00
team United States
score 1.0
suf_score 0.0
rank 20.0
rank_suf 11.0
rank_change 0.0
total_points 1555.42
result 0
rank_dif 9.0
points_by_rank 0.272727
team_points 3
country_classification Classe A
Name: 2196, dtype: object
date 2021-08-21 00:00:00
team El Salvador
score 0.0
suf_score 0.0
rank 64.0
rank_suf 44.0
rank_change -5.0
total_points 1375.43
result 2
rank_dif 20.0
points_by_rank 0.022727
team_points 1
country_classification Classe B
Name: 2197, dtype: object
date 2021-08-22 00:00:00
team Niger
score 2.0
suf_score 1.0
rank 117.0
rank_suf 121.0
rank_change 5.0
total_points 1156.3
result 0
rank_dif -4.0
points_by_rank 0.024793
team_points 3
country_classification Classe C
Name: 2198, dtype: object
date 2021-08-26 00:00:00
team Sudan
score 3.0
suf_score 0.0
rank 121.0
rank_suf 117.0
rank_change -2.0
total_points 1147.87
result 0
rank_dif 4.0
points_by_rank 0.025641
team_points 3
country_classification Classe C
Name: 2199, dtype: object
date 2021-08-26 00:00:00
team Ethiopia
score 0.0
suf_score 0.0
rank 137.0
rank_suf 106.0
rank_change -3.0
total_points 1079.41
result 2
rank_dif 31.0
points_by_rank 0.009434
team_points 1
country_classification Classe C
Name: 2200, dtype: object
date 2021-08-29 00:00:00
team Ethiopia
score 2.0
suf_score 1.0
rank 137.0
rank_suf 84.0
rank_change -3.0
total_points 1079.41
result 0
rank_dif 53.0
points_by_rank 0.035714
team_points 3
country_classification Classe C
Name: 2201, dtype: object
date 2021-09-01 00:00:00
team Bahrain
score 6.0
suf_score 1.0
rank 94.0
rank_suf 90.0
rank_change -4.0
total_points 1251.29
result 0
rank_dif 4.0
points_by_rank 0.033333
team_points 3
country_classification Classe B
Name: 2202, dtype: object
date 2021-09-01 00:00:00
team Comoros
score 7.0
suf_score 1.0
rank 133.0
rank_suf 199.0
rank_change 2.0
total_points 1104.45
result 0
rank_dif -66.0
points_by_rank 0.015075
team_points 3
country_classification Classe C
Name: 2203, dtype: object
date 2021-09-01 00:00:00
team Finland
score 0.0
suf_score 0.0
rank 56.0
rank_suf 19.0
rank_change 2.0
total_points 1403.92
result 2
rank_dif 37.0
points_by_rank 0.052632
team_points 1
country_classification Classe A
Name: 2204, dtype: object
date 2021-09-01 00:00:00
team Qatar
score 0.0
suf_score 4.0
rank 42.0
rank_suf 29.0
rank_change -16.0
total_points 1455.23
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2205, dtype: object
date 2021-09-01 00:00:00
team Switzerland
score 2.0
suf_score 1.0
rank 14.0
rank_suf 48.0
rank_change 1.0
total_points 1621.37
result 0
rank_dif -34.0
points_by_rank 0.0625
team_points 3
country_classification Classe S-
Name: 2206, dtype: object
date 2021-09-01 00:00:00
team Mali
score 1.0
suf_score 0.0
rank 60.0
rank_suf 127.0
rank_change 3.0
total_points 1392.64
result 0
rank_dif -67.0
points_by_rank 0.023622
team_points 3
country_classification Classe B
Name: 2207, dtype: object
date 2021-09-01 00:00:00
team Egypt
score 1.0
suf_score 0.0
rank 46.0
rank_suf 126.0
rank_change 0.0
total_points 1432.63
result 0
rank_dif -80.0
points_by_rank 0.02381
team_points 3
country_classification Classe A
Name: 2208, dtype: object
date 2021-09-01 00:00:00
team Libya
score 2.0
suf_score 1.0
rank 122.0
rank_suf 85.0
rank_change 3.0
total_points 1147.67
result 0
rank_dif 37.0
points_by_rank 0.035294
team_points 3
country_classification Classe C
Name: 2209, dtype: object
date 2021-09-01 00:00:00
team Senegal
score 2.0
suf_score 0.0
rank 21.0
rank_suf 131.0
rank_change -1.0
total_points 1545.38
result 0
rank_dif -110.0
points_by_rank 0.022901
team_points 3
country_classification Classe A
Name: 2210, dtype: object
date 2021-09-01 00:00:00
team Guinea-Bissau
score 1.0
suf_score 1.0
rank 109.0
rank_suf 76.0
rank_change 1.0
total_points 1171.19
result 2
rank_dif 33.0
points_by_rank 0.013158
team_points 1
country_classification Classe C
Name: 2211, dtype: object
date 2021-09-01 00:00:00
team Portugal
score 2.0
suf_score 1.0
rank 8.0
rank_suf 47.0
rank_change 3.0
total_points 1661.51
result 0
rank_dif -39.0
points_by_rank 0.06383
team_points 3
country_classification Classe S-
Name: 2212, dtype: object
date 2021-09-01 00:00:00
team Luxembourg
score 2.0
suf_score 1.0
rank 96.0
rank_suf 112.0
rank_change 0.0
total_points 1238.59
result 0
rank_dif -16.0
points_by_rank 0.026786
team_points 3
country_classification Classe B
Name: 2213, dtype: object
date 2021-09-01 00:00:00
team Kazakhstan
score 2.0
suf_score 2.0
rank 124.0
rank_suf 25.0
rank_change 0.0
total_points 1144.41
result 2
rank_dif 99.0
points_by_rank 0.04
team_points 1
country_classification Classe C
Name: 2214, dtype: object
date 2021-09-01 00:00:00
team France
score 1.0
suf_score 1.0
rank 3.0
rank_suf 58.0
rank_change 1.0
total_points 1761.77
result 2
rank_dif -55.0
points_by_rank 0.017241
team_points 1
country_classification Classe S
Name: 2215, dtype: object
date 2021-09-01 00:00:00
team Faroe Islands
score 0.0
suf_score 4.0
rank 114.0
rank_suf 81.0
rank_change 1.0
total_points 1165.43
result 1
rank_dif 33.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2216, dtype: object
date 2021-09-01 00:00:00
team Denmark
score 2.0
suf_score 0.0
rank 11.0
rank_suf 49.0
rank_change 1.0
total_points 1642.28
result 0
rank_dif -38.0
points_by_rank 0.061224
team_points 3
country_classification Classe S-
Name: 2217, dtype: object
date 2021-09-01 00:00:00
team Moldova
score 0.0
suf_score 2.0
rank 175.0
rank_suf 23.0
rank_change -2.0
total_points 954.15
result 1
rank_dif 152.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2218, dtype: object
date 2021-09-01 00:00:00
team Norway
score 1.0
suf_score 1.0
rank 43.0
rank_suf 12.0
rank_change 1.0
total_points 1450.12
result 2
rank_dif 31.0
points_by_rank 0.083333
team_points 1
country_classification Classe A
Name: 2219, dtype: object
date 2021-09-01 00:00:00
team Latvia
score 3.0
suf_score 1.0
rank 136.0
rank_suf 194.0
rank_change -2.0
total_points 1083.57
result 0
rank_dif -58.0
points_by_rank 0.015464
team_points 3
country_classification Classe C
Name: 2220, dtype: object
date 2021-09-01 00:00:00
team Turkey
score 2.0
suf_score 2.0
rank 39.0
rank_suf 67.0
rank_change 10.0
total_points 1463.91
result 2
rank_dif -28.0
points_by_rank 0.014925
team_points 1
country_classification Classe A
Name: 2221, dtype: object
date 2021-09-01 00:00:00
team Malta
score 3.0
suf_score 0.0
rank 177.0
rank_suf 99.0
rank_change 2.0
total_points 952.0
result 0
rank_dif 78.0
points_by_rank 0.030303
team_points 3
country_classification Classe D
Name: 2222, dtype: object
date 2021-09-01 00:00:00
team Slovenia
score 1.0
suf_score 1.0
rank 66.0
rank_suf 38.0
rank_change 3.0
total_points 1371.25
result 2
rank_dif 28.0
points_by_rank 0.026316
team_points 1
country_classification Classe B
Name: 2223, dtype: object
date 2021-09-01 00:00:00
team Russia
score 0.0
suf_score 0.0
rank 41.0
rank_suf 18.0
rank_change 3.0
total_points 1462.24
result 2
rank_dif 23.0
points_by_rank 0.055556
team_points 1
country_classification Classe A
Name: 2224, dtype: object
date 2021-09-02 00:00:00
team Nepal
score 1.0
suf_score 1.0
rank 168.0
rank_suf 105.0
rank_change -3.0
total_points 972.19
result 2
rank_dif 63.0
points_by_rank 0.009524
team_points 1
country_classification Classe D
Name: 2225, dtype: object
date 2021-09-02 00:00:00
team Niger
score 0.0
suf_score 2.0
rank 117.0
rank_suf 62.0
rank_change 5.0
total_points 1156.3
result 1
rank_dif 55.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2226, dtype: object
date 2021-09-02 00:00:00
team Algeria
score 8.0
suf_score 0.0
rank 30.0
rank_suf 182.0
rank_change -3.0
total_points 1498.75
result 0
rank_dif -152.0
points_by_rank 0.016484
team_points 3
country_classification Classe A
Name: 2227, dtype: object
date 2021-09-02 00:00:00
team Kenya
score 0.0
suf_score 0.0
rank 104.0
rank_suf 84.0
rank_change 2.0
total_points 1205.26
result 2
rank_dif 20.0
points_by_rank 0.011905
team_points 1
country_classification Classe B
Name: 2228, dtype: object
date 2021-09-02 00:00:00
team Namibia
score 1.0
suf_score 1.0
rank 107.0
rank_suf 93.0
rank_change -4.0
total_points 1172.37
result 2
rank_dif 14.0
points_by_rank 0.010753
team_points 1
country_classification Classe C
Name: 2229, dtype: object
date 2021-09-02 00:00:00
team Morocco
score 2.0
suf_score 0.0
rank 32.0
rank_suf 121.0
rank_change -2.0
total_points 1487.89
result 0
rank_dif -89.0
points_by_rank 0.024793
team_points 3
country_classification Classe A
Name: 2230, dtype: object
date 2021-09-02 00:00:00
team Madagascar
score 0.0
suf_score 1.0
rank 97.0
rank_suf 86.0
rank_change -3.0
total_points 1238.24
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2231, dtype: object
date 2021-09-02 00:00:00
team South Korea
score 0.0
suf_score 0.0
rank 36.0
rank_suf 70.0
rank_change -3.0
total_points 1474.96
result 2
rank_dif -34.0
points_by_rank 0.014286
team_points 1
country_classification Classe A
Name: 2232, dtype: object
date 2021-09-02 00:00:00
team Iran
score 1.0
suf_score 0.0
rank 26.0
rank_suf 80.0
rank_change -5.0
total_points 1522.04
result 0
rank_dif -54.0
points_by_rank 0.0375
team_points 3
country_classification Classe A
Name: 2233, dtype: object
date 2021-09-02 00:00:00
team United Arab Emirates
score 0.0
suf_score 0.0
rank 68.0
rank_suf 98.0
rank_change -5.0
total_points 1362.3
result 2
rank_dif -30.0
points_by_rank 0.010204
team_points 1
country_classification Classe B
Name: 2234, dtype: object
date 2021-09-02 00:00:00
team Japan
score 0.0
suf_score 1.0
rank 24.0
rank_suf 79.0
rank_change -4.0
total_points 1529.45
result 1
rank_dif -55.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2235, dtype: object
date 2021-09-02 00:00:00
team Australia
score 3.0
suf_score 0.0
rank 35.0
rank_suf 71.0
rank_change -6.0
total_points 1477.21
result 0
rank_dif -36.0
points_by_rank 0.042254
team_points 3
country_classification Classe A
Name: 2236, dtype: object
date 2021-09-02 00:00:00
team Saudi Arabia
score 3.0
suf_score 1.0
rank 61.0
rank_suf 92.0
rank_change -4.0
total_points 1386.03
result 0
rank_dif -31.0
points_by_rank 0.032609
team_points 3
country_classification Classe B
Name: 2237, dtype: object
date 2021-09-02 00:00:00
team Georgia
score 0.0
suf_score 1.0
rank 91.0
rank_suf 115.0
rank_change 0.0
total_points 1264.06
result 1
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2238, dtype: object
date 2021-09-02 00:00:00
team Sweden
score 2.0
suf_score 1.0
rank 17.0
rank_suf 7.0
rank_change -1.0
total_points 1606.79
result 0
rank_dif 10.0
points_by_rank 0.428571
team_points 3
country_classification Classe S-
Name: 2239, dtype: object
date 2021-09-02 00:00:00
team Italy
score 1.0
suf_score 1.0
rank 5.0
rank_suf 75.0
rank_change -2.0
total_points 1744.67
result 2
rank_dif -70.0
points_by_rank 0.013333
team_points 1
country_classification Classe S
Name: 2240, dtype: object
date 2021-09-02 00:00:00
team Lithuania
score 1.0
suf_score 4.0
rank 134.0
rank_suf 51.0
rank_change 0.0
total_points 1096.56
result 1
rank_dif 83.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2241, dtype: object
date 2021-09-02 00:00:00
team Czech Republic
score 1.0
suf_score 0.0
rank 31.0
rank_suf 89.0
rank_change -9.0
total_points 1492.65
result 0
rank_dif -58.0
points_by_rank 0.033708
team_points 3
country_classification Classe A
Name: 2242, dtype: object
date 2021-09-02 00:00:00
team Estonia
score 2.0
suf_score 5.0
rank 110.0
rank_suf 1.0
rank_change -6.0
total_points 1170.89
result 1
rank_dif 109.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2243, dtype: object
date 2021-09-02 00:00:00
team Andorra
score 2.0
suf_score 0.0
rank 156.0
rank_suf 209.0
rank_change -2.0
total_points 1031.64
result 0
rank_dif -53.0
points_by_rank 0.014354
team_points 3
country_classification Classe C
Name: 2244, dtype: object
date 2021-09-02 00:00:00
team Hungary
score 0.0
suf_score 4.0
rank 37.0
rank_suf 4.0
rank_change 0.0
total_points 1474.36
result 1
rank_dif 33.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2245, dtype: object
date 2021-09-02 00:00:00
team Poland
score 4.0
suf_score 1.0
rank 27.0
rank_suf 69.0
rank_change 6.0
total_points 1516.27
result 0
rank_dif -42.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 2246, dtype: object
date 2021-09-02 00:00:00
team Iceland
score 0.0
suf_score 2.0
rank 53.0
rank_suf 45.0
rank_change 1.0
total_points 1418.48
result 1
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2247, dtype: object
date 2021-09-02 00:00:00
team Liechtenstein
score 0.0
suf_score 2.0
rank 189.0
rank_suf 16.0
rank_change 3.0
total_points 907.66
result 1
rank_dif 173.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2248, dtype: object
date 2021-09-02 00:00:00
team North Macedonia
score 0.0
suf_score 0.0
rank 72.0
rank_suf 88.0
rank_change 10.0
total_points 1342.92
result 2
rank_dif -16.0
points_by_rank 0.011364
team_points 1
country_classification Classe B
Name: 2249, dtype: object
date 2021-09-02 00:00:00
team Bolivia
score 1.0
suf_score 1.0
rank 82.0
rank_suf 15.0
rank_change 1.0
total_points 1285.94
result 2
rank_dif 67.0
points_by_rank 0.066667
team_points 1
country_classification Classe B
Name: 2250, dtype: object
date 2021-09-02 00:00:00
team Ecuador
score 2.0
suf_score 0.0
rank 55.0
rank_suf 33.0
rank_change 2.0
total_points 1405.26
result 0
rank_dif 22.0
points_by_rank 0.090909
team_points 3
country_classification Classe A
Name: 2251, dtype: object
date 2021-09-02 00:00:00
team Peru
score 1.0
suf_score 1.0
rank 22.0
rank_suf 13.0
rank_change -5.0
total_points 1543.16
result 2
rank_dif 9.0
points_by_rank 0.076923
team_points 1
country_classification Classe A
Name: 2252, dtype: object
date 2021-09-02 00:00:00
team Venezuela
score 1.0
suf_score 3.0
rank 40.0
rank_suf 6.0
rank_change 10.0
total_points 1463.3
result 1
rank_dif 34.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2253, dtype: object
date 2021-09-02 00:00:00
team Chile
score 0.0
suf_score 1.0
rank 20.0
rank_suf 2.0
rank_change 1.0
total_points 1557.81
result 1
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2254, dtype: object
date 2021-09-02 00:00:00
team Canada
score 1.0
suf_score 1.0
rank 59.0
rank_suf 63.0
rank_change -11.0
total_points 1399.35
result 2
rank_dif -4.0
points_by_rank 0.015873
team_points 1
country_classification Classe B
Name: 2255, dtype: object
date 2021-09-02 00:00:00
team El Salvador
score 0.0
suf_score 0.0
rank 64.0
rank_suf 10.0
rank_change -5.0
total_points 1375.43
result 2
rank_dif 54.0
points_by_rank 0.1
team_points 1
country_classification Classe B
Name: 2256, dtype: object
date 2021-09-02 00:00:00
team Panama
score 0.0
suf_score 0.0
rank 74.0
rank_suf 44.0
rank_change -4.0
total_points 1334.85
result 2
rank_dif 30.0
points_by_rank 0.022727
team_points 1
country_classification Classe B
Name: 2257, dtype: object
date 2021-09-02 00:00:00
team Mexico
score 2.0
suf_score 1.0
rank 9.0
rank_suf 50.0
rank_change -2.0
total_points 1658.29
result 0
rank_dif -41.0
points_by_rank 0.06
team_points 3
country_classification Classe S-
Name: 2258, dtype: object
date 2021-09-03 00:00:00
team Mauritania
score 1.0
suf_score 2.0
rank 100.0
rank_suf 87.0
rank_change -1.0
total_points 1227.14
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2259, dtype: object
date 2021-09-03 00:00:00
team Tunisia
score 3.0
suf_score 0.0
rank 28.0
rank_suf 132.0
rank_change 2.0
total_points 1515.3
result 0
rank_dif -104.0
points_by_rank 0.022727
team_points 3
country_classification Classe A
Name: 2260, dtype: object
date 2021-09-03 00:00:00
team Nigeria
score 2.0
suf_score 0.0
rank 34.0
rank_suf 150.0
rank_change 2.0
total_points 1479.58
result 0
rank_dif -116.0
points_by_rank 0.02
team_points 3
country_classification Classe A
Name: 2261, dtype: object
date 2021-09-03 00:00:00
team Cameroon
score 2.0
suf_score 0.0
rank 54.0
rank_suf 118.0
rank_change -1.0
total_points 1410.65
result 0
rank_dif -64.0
points_by_rank 0.025424
team_points 3
country_classification Classe A
Name: 2262, dtype: object
date 2021-09-03 00:00:00
team Zimbabwe
score 0.0
suf_score 0.0
rank 108.0
rank_suf 73.0
rank_change 1.0
total_points 1171.88
result 2
rank_dif 35.0
points_by_rank 0.013699
team_points 1
country_classification Classe C
Name: 2263, dtype: object
date 2021-09-03 00:00:00
team Ghana
score 1.0
suf_score 0.0
rank 52.0
rank_suf 137.0
rank_change 3.0
total_points 1420.61
result 0
rank_dif -85.0
points_by_rank 0.021898
team_points 3
country_classification Classe A
Name: 2264, dtype: object
date 2021-09-04 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 0.0
rank 58.0
rank_suf 142.0
rank_change 3.0
total_points 1401.57
result 0
rank_dif -84.0
points_by_rank 0.021127
team_points 3
country_classification Classe A
Name: 2265, dtype: object
date 2021-09-04 00:00:00
team Burundi
score 8.0
suf_score 1.0
rank 140.0
rank_suf 199.0
rank_change -2.0
total_points 1075.64
result 0
rank_dif -59.0
points_by_rank 0.015075
team_points 3
country_classification Classe C
Name: 2266, dtype: object
date 2021-09-04 00:00:00
team Haiti
score 2.0
suf_score 0.0
rank 90.0
rank_suf 95.0
rank_change 7.0
total_points 1268.38
result 0
rank_dif -5.0
points_by_rank 0.031579
team_points 3
country_classification Classe B
Name: 2267, dtype: object
date 2021-09-04 00:00:00
team Qatar
score 1.0
suf_score 3.0
rank 42.0
rank_suf 8.0
rank_change -16.0
total_points 1455.23
result 1
rank_dif 34.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2268, dtype: object
date 2021-09-04 00:00:00
team Republic of Ireland
score 1.0
suf_score 1.0
rank 47.0
rank_suf 112.0
rank_change 0.0
total_points 1429.44
result 2
rank_dif -65.0
points_by_rank 0.008929
team_points 1
country_classification Classe A
Name: 2269, dtype: object
date 2021-09-04 00:00:00
team Serbia
score 4.0
suf_score 1.0
rank 29.0
rank_suf 96.0
rank_change 4.0
total_points 1507.19
result 0
rank_dif -67.0
points_by_rank 0.03125
team_points 3
country_classification Classe A
Name: 2270, dtype: object
date 2021-09-04 00:00:00
team Finland
score 1.0
suf_score 0.0
rank 56.0
rank_suf 124.0
rank_change 2.0
total_points 1403.92
result 0
rank_dif -68.0
points_by_rank 0.024194
team_points 3
country_classification Classe A
Name: 2271, dtype: object
date 2021-09-04 00:00:00
team Ukraine
score 1.0
suf_score 1.0
rank 25.0
rank_suf 3.0
rank_change 1.0
total_points 1522.7
result 2
rank_dif 22.0
points_by_rank 0.333333
team_points 1
country_classification Classe A
Name: 2272, dtype: object
date 2021-09-04 00:00:00
team Faroe Islands
score 0.0
suf_score 1.0
rank 114.0
rank_suf 11.0
rank_change 1.0
total_points 1165.43
result 1
rank_dif 103.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2273, dtype: object
date 2021-09-04 00:00:00
team Scotland
score 1.0
suf_score 0.0
rank 49.0
rank_suf 175.0
rank_change 5.0
total_points 1424.77
result 0
rank_dif -126.0
points_by_rank 0.017143
team_points 3
country_classification Classe A
Name: 2274, dtype: object
date 2021-09-04 00:00:00
team Israel
score 5.0
suf_score 2.0
rank 81.0
rank_suf 23.0
rank_change -4.0
total_points 1288.22
result 0
rank_dif 58.0
points_by_rank 0.130435
team_points 3
country_classification Classe B
Name: 2275, dtype: object
date 2021-09-04 00:00:00
team Latvia
score 0.0
suf_score 2.0
rank 136.0
rank_suf 43.0
rank_change -2.0
total_points 1083.57
result 1
rank_dif 93.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2276, dtype: object
date 2021-09-04 00:00:00
team Gibraltar
score 0.0
suf_score 3.0
rank 194.0
rank_suf 39.0
rank_change -1.0
total_points 880.27
result 1
rank_dif 155.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2277, dtype: object
date 2021-09-04 00:00:00
team Netherlands
score 4.0
suf_score 0.0
rank 12.0
rank_suf 67.0
rank_change -4.0
total_points 1637.48
result 0
rank_dif -55.0
points_by_rank 0.044776
team_points 3
country_classification Classe S-
Name: 2278, dtype: object
date 2021-09-04 00:00:00
team Slovenia
score 1.0
suf_score 0.0
rank 66.0
rank_suf 177.0
rank_change 3.0
total_points 1371.25
result 0
rank_dif -111.0
points_by_rank 0.016949
team_points 3
country_classification Classe B
Name: 2279, dtype: object
date 2021-09-04 00:00:00
team Cyprus
score 0.0
suf_score 2.0
rank 99.0
rank_suf 41.0
rank_change 2.0
total_points 1235.3
result 1
rank_dif 58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2280, dtype: object
date 2021-09-04 00:00:00
team Slovakia
score 0.0
suf_score 1.0
rank 38.0
rank_suf 18.0
rank_change 2.0
total_points 1467.4
result 1
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2281, dtype: object
date 2021-09-05 00:00:00
team Bangladesh
score 0.0
suf_score 2.0
rank 188.0
rank_suf 102.0
rank_change 4.0
total_points 909.11
result 1
rank_dif 86.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2282, dtype: object
date 2021-09-05 00:00:00
team Estonia
score 0.0
suf_score 1.0
rank 110.0
rank_suf 51.0
rank_change -6.0
total_points 1170.89
result 1
rank_dif 59.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2283, dtype: object
date 2021-09-05 00:00:00
team Nepal
score 1.0
suf_score 2.0
rank 168.0
rank_suf 105.0
rank_change -3.0
total_points 972.19
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2284, dtype: object
date 2021-09-05 00:00:00
team Sweden
score 2.0
suf_score 1.0
rank 17.0
rank_suf 83.0
rank_change -1.0
total_points 1606.79
result 0
rank_dif -66.0
points_by_rank 0.036145
team_points 3
country_classification Classe S-
Name: 2285, dtype: object
date 2021-09-05 00:00:00
team Rwanda
score 1.0
suf_score 1.0
rank 127.0
rank_suf 104.0
rank_change -2.0
total_points 1134.24
result 2
rank_dif 23.0
points_by_rank 0.009615
team_points 1
country_classification Classe C
Name: 2286, dtype: object
date 2021-09-05 00:00:00
team Gabon
score 1.0
suf_score 1.0
rank 85.0
rank_suf 46.0
rank_change -3.0
total_points 1278.1
result 2
rank_dif 39.0
points_by_rank 0.021739
team_points 1
country_classification Classe B
Name: 2287, dtype: object
date 2021-09-05 00:00:00
team Togo
score 0.0
suf_score 1.0
rank 131.0
rank_suf 107.0
rank_change -2.0
total_points 1105.62
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2288, dtype: object
date 2021-09-05 00:00:00
team Kosovo
score 1.0
suf_score 1.0
rank 115.0
rank_suf 48.0
rank_change -5.0
total_points 1159.02
result 2
rank_dif 67.0
points_by_rank 0.020833
team_points 1
country_classification Classe C
Name: 2289, dtype: object
date 2021-09-05 00:00:00
team Spain
score 4.0
suf_score 0.0
rank 7.0
rank_suf 91.0
rank_change 1.0
total_points 1680.44
result 0
rank_dif -84.0
points_by_rank 0.032967
team_points 3
country_classification Classe S-
Name: 2290, dtype: object
date 2021-09-05 00:00:00
team Bulgaria
score 1.0
suf_score 0.0
rank 75.0
rank_suf 134.0
rank_change 4.0
total_points 1334.83
result 0
rank_dif -59.0
points_by_rank 0.022388
team_points 3
country_classification Classe B
Name: 2291, dtype: object
date 2021-09-05 00:00:00
team Switzerland
score 0.0
suf_score 0.0
rank 14.0
rank_suf 5.0
rank_change 1.0
total_points 1621.37
result 2
rank_dif 9.0
points_by_rank 0.2
team_points 1
country_classification Classe S-
Name: 2292, dtype: object
date 2021-09-05 00:00:00
team Belarus
score 2.0
suf_score 3.0
rank 89.0
rank_suf 19.0
rank_change 0.0
total_points 1270.75
result 1
rank_dif 70.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2293, dtype: object
date 2021-09-05 00:00:00
team Belgium
score 3.0
suf_score 0.0
rank 1.0
rank_suf 31.0
rank_change 0.0
total_points 1822.34
result 0
rank_dif -30.0
points_by_rank 0.096774
team_points 3
country_classification Classe S
Name: 2294, dtype: object
date 2021-09-05 00:00:00
team England
score 4.0
suf_score 0.0
rank 4.0
rank_suf 156.0
rank_change 0.0
total_points 1752.83
result 0
rank_dif -152.0
points_by_rank 0.019231
team_points 3
country_classification Classe S
Name: 2295, dtype: object
date 2021-09-05 00:00:00
team Albania
score 1.0
suf_score 0.0
rank 69.0
rank_suf 37.0
rank_change 3.0
total_points 1359.83
result 0
rank_dif 32.0
points_by_rank 0.081081
team_points 3
country_classification Classe B
Name: 2296, dtype: object
date 2021-09-05 00:00:00
team San Marino
score 1.0
suf_score 7.0
rank 209.0
rank_suf 27.0
rank_change -1.0
total_points 802.43
result 1
rank_dif 182.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2297, dtype: object
date 2021-09-05 00:00:00
team Iceland
score 2.0
suf_score 2.0
rank 53.0
rank_suf 72.0
rank_change 1.0
total_points 1418.48
result 2
rank_dif -19.0
points_by_rank 0.013889
team_points 1
country_classification Classe A
Name: 2298, dtype: object
date 2021-09-05 00:00:00
team Germany
score 6.0
suf_score 0.0
rank 16.0
rank_suf 88.0
rank_change 4.0
total_points 1613.29
result 0
rank_dif -72.0
points_by_rank 0.034091
team_points 3
country_classification Classe S-
Name: 2299, dtype: object
date 2021-09-05 00:00:00
team Romania
score 2.0
suf_score 0.0
rank 45.0
rank_suf 189.0
rank_change 2.0
total_points 1439.7
result 0
rank_dif -144.0
points_by_rank 0.015873
team_points 3
country_classification Classe A
Name: 2300, dtype: object
date 2021-09-05 00:00:00
team Ecuador
score 0.0
suf_score 0.0
rank 55.0
rank_suf 20.0
rank_change 2.0
total_points 1405.26
result 2
rank_dif 35.0
points_by_rank 0.05
team_points 1
country_classification Classe A
Name: 2301, dtype: object
date 2021-09-05 00:00:00
team Paraguay
score 1.0
suf_score 1.0
rank 33.0
rank_suf 15.0
rank_change -2.0
total_points 1483.49
result 2
rank_dif 18.0
points_by_rank 0.066667
team_points 1
country_classification Classe A
Name: 2302, dtype: object
date 2021-09-05 00:00:00
team Uruguay
score 4.0
suf_score 2.0
rank 13.0
rank_suf 82.0
rank_change 4.0
total_points 1634.63
result 0
rank_dif -69.0
points_by_rank 0.036585
team_points 3
country_classification Classe S-
Name: 2303, dtype: object
date 2021-09-05 00:00:00
team Peru
score 1.0
suf_score 0.0
rank 22.0
rank_suf 40.0
rank_change -5.0
total_points 1543.16
result 0
rank_dif -18.0
points_by_rank 0.075
team_points 3
country_classification Classe A
Name: 2304, dtype: object
date 2021-09-05 00:00:00
team Costa Rica
score 0.0
suf_score 1.0
rank 44.0
rank_suf 9.0
rank_change -6.0
total_points 1449.79
result 1
rank_dif 35.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2305, dtype: object
date 2021-09-05 00:00:00
team El Salvador
score 0.0
suf_score 0.0
rank 64.0
rank_suf 63.0
rank_change -5.0
total_points 1375.43
result 2
rank_dif 1.0
points_by_rank 0.015873
team_points 1
country_classification Classe B
Name: 2306, dtype: object
date 2021-09-05 00:00:00
team Jamaica
score 0.0
suf_score 3.0
rank 50.0
rank_suf 74.0
rank_change 5.0
total_points 1423.06
result 1
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2307, dtype: object
date 2021-09-05 00:00:00
team United States
score 1.0
suf_score 1.0
rank 10.0
rank_suf 59.0
rank_change -10.0
total_points 1647.75
result 2
rank_dif -49.0
points_by_rank 0.016949
team_points 1
country_classification Classe S-
Name: 2308, dtype: object
date 2021-09-06 00:00:00
team Djibouti
score 2.0
suf_score 4.0
rank 182.0
rank_suf 117.0
rank_change -1.0
total_points 922.37
result 1
rank_dif 65.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2309, dtype: object
date 2021-09-06 00:00:00
team Liberia
score 1.0
suf_score 0.0
rank 150.0
rank_suf 123.0
rank_change -1.0
total_points 1049.97
result 0
rank_dif 27.0
points_by_rank 0.02439
team_points 3
country_classification Classe C
Name: 2310, dtype: object
date 2021-09-06 00:00:00
team Uganda
score 0.0
suf_score 0.0
rank 84.0
rank_suf 60.0
rank_change 0.0
total_points 1282.14
result 2
rank_dif 24.0
points_by_rank 0.016667
team_points 1
country_classification Classe B
Name: 2311, dtype: object
date 2021-09-06 00:00:00
team South Africa
score 1.0
suf_score 0.0
rank 73.0
rank_suf 52.0
rank_change -2.0
total_points 1337.77
result 0
rank_dif 21.0
points_by_rank 0.057692
team_points 3
country_classification Classe B
Name: 2312, dtype: object
date 2021-09-07 00:00:00
team Bahrain
score 1.0
suf_score 2.0
rank 94.0
rank_suf 95.0
rank_change -4.0
total_points 1251.29
result 1
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2313, dtype: object
date 2021-09-07 00:00:00
team Comoros
score 1.0
suf_score 0.0
rank 133.0
rank_suf 140.0
rank_change 2.0
total_points 1104.45
result 0
rank_dif -7.0
points_by_rank 0.021429
team_points 3
country_classification Classe C
Name: 2314, dtype: object
date 2021-09-07 00:00:00
team Luxembourg
score 1.0
suf_score 1.0
rank 96.0
rank_suf 42.0
rank_change 0.0
total_points 1238.59
result 2
rank_dif 54.0
points_by_rank 0.02381
team_points 1
country_classification Classe B
Name: 2315, dtype: object
date 2021-09-07 00:00:00
team Burkina Faso
score 1.0
suf_score 1.0
rank 62.0
rank_suf 30.0
rank_change 2.0
total_points 1383.86
result 2
rank_dif 32.0
points_by_rank 0.033333
team_points 1
country_classification Classe B
Name: 2316, dtype: object
date 2021-09-07 00:00:00
team Zambia
score 0.0
suf_score 2.0
rank 87.0
rank_suf 28.0
rank_change 0.0
total_points 1276.14
result 1
rank_dif 59.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2317, dtype: object
date 2021-09-07 00:00:00
team Equatorial Guinea
score 1.0
suf_score 0.0
rank 132.0
rank_suf 100.0
rank_change 0.0
total_points 1105.2
result 0
rank_dif 32.0
points_by_rank 0.03
team_points 3
country_classification Classe C
Name: 2318, dtype: object
date 2021-09-07 00:00:00
team Malawi
score 1.0
suf_score 0.0
rank 118.0
rank_suf 113.0
rank_change 3.0
total_points 1153.5
result 0
rank_dif 5.0
points_by_rank 0.026549
team_points 3
country_classification Classe C
Name: 2319, dtype: object
date 2021-09-07 00:00:00
team Angola
score 0.0
suf_score 1.0
rank 126.0
rank_suf 122.0
rank_change 0.0
total_points 1135.88
result 1
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2320, dtype: object
date 2021-09-07 00:00:00
team Ethiopia
score 1.0
suf_score 0.0
rank 137.0
rank_suf 108.0
rank_change -3.0
total_points 1079.41
result 0
rank_dif 29.0
points_by_rank 0.027778
team_points 3
country_classification Classe C
Name: 2321, dtype: object
date 2021-09-07 00:00:00
team Congo
score 1.0
suf_score 3.0
rank 93.0
rank_suf 21.0
rank_change -1.0
total_points 1255.88
result 1
rank_dif 72.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2322, dtype: object
date 2021-09-07 00:00:00
team Sudan
score 2.0
suf_score 4.0
rank 121.0
rank_suf 109.0
rank_change -2.0
total_points 1147.87
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2323, dtype: object
date 2021-09-07 00:00:00
team Tanzania
score 3.0
suf_score 2.0
rank 135.0
rank_suf 97.0
rank_change -2.0
total_points 1093.76
result 0
rank_dif 38.0
points_by_rank 0.030928
team_points 3
country_classification Classe C
Name: 2324, dtype: object
date 2021-09-07 00:00:00
team Syria
score 1.0
suf_score 1.0
rank 80.0
rank_suf 68.0
rank_change 1.0
total_points 1302.75
result 2
rank_dif 12.0
points_by_rank 0.014706
team_points 1
country_classification Classe B
Name: 2325, dtype: object
date 2021-09-07 00:00:00
team South Korea
score 1.0
suf_score 0.0
rank 36.0
rank_suf 98.0
rank_change -3.0
total_points 1474.96
result 0
rank_dif -62.0
points_by_rank 0.030612
team_points 3
country_classification Classe A
Name: 2326, dtype: object
date 2021-09-07 00:00:00
team Iraq
score 0.0
suf_score 3.0
rank 70.0
rank_suf 26.0
rank_change 2.0
total_points 1354.51
result 1
rank_dif 44.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2327, dtype: object
date 2021-09-07 00:00:00
team China PR
score 0.0
suf_score 1.0
rank 71.0
rank_suf 24.0
rank_change -6.0
total_points 1352.68
result 1
rank_dif 47.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2328, dtype: object
date 2021-09-07 00:00:00
team Vietnam
score 0.0
suf_score 1.0
rank 92.0
rank_suf 35.0
rank_change 0.0
total_points 1260.85
result 1
rank_dif 57.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2329, dtype: object
date 2021-09-07 00:00:00
team Oman
score 0.0
suf_score 1.0
rank 79.0
rank_suf 61.0
rank_change -1.0
total_points 1305.01
result 1
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2330, dtype: object
date 2021-09-07 00:00:00
team Republic of Ireland
score 1.0
suf_score 1.0
rank 47.0
rank_suf 29.0
rank_change 0.0
total_points 1429.44
result 2
rank_dif 18.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 2331, dtype: object
date 2021-09-07 00:00:00
team Azerbaijan
score 0.0
suf_score 3.0
rank 112.0
rank_suf 8.0
rank_change 2.0
total_points 1166.44
result 1
rank_dif 104.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2332, dtype: object
date 2021-09-07 00:00:00
team Bosnia and Herzegovina
score 2.0
suf_score 2.0
rank 58.0
rank_suf 124.0
rank_change 3.0
total_points 1401.57
result 2
rank_dif -66.0
points_by_rank 0.008065
team_points 1
country_classification Classe A
Name: 2333, dtype: object
date 2021-09-07 00:00:00
team France
score 2.0
suf_score 0.0
rank 3.0
rank_suf 56.0
rank_change 1.0
total_points 1761.77
result 0
rank_dif -53.0
points_by_rank 0.053571
team_points 3
country_classification Classe S
Name: 2334, dtype: object
date 2021-09-07 00:00:00
team Faroe Islands
score 2.0
suf_score 1.0
rank 114.0
rank_suf 175.0
rank_change 1.0
total_points 1165.43
result 0
rank_dif -61.0
points_by_rank 0.017143
team_points 3
country_classification Classe C
Name: 2335, dtype: object
date 2021-09-07 00:00:00
team Austria
score 0.0
suf_score 1.0
rank 23.0
rank_suf 49.0
rank_change 0.0
total_points 1535.12
result 1
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2336, dtype: object
date 2021-09-07 00:00:00
team Denmark
score 5.0
suf_score 0.0
rank 11.0
rank_suf 81.0
rank_change 1.0
total_points 1642.28
result 0
rank_dif -70.0
points_by_rank 0.037037
team_points 3
country_classification Classe S-
Name: 2337, dtype: object
date 2021-09-07 00:00:00
team Montenegro
score 0.0
suf_score 0.0
rank 67.0
rank_suf 136.0
rank_change 3.0
total_points 1363.03
result 2
rank_dif -69.0
points_by_rank 0.007353
team_points 1
country_classification Classe B
Name: 2338, dtype: object
date 2021-09-07 00:00:00
team Netherlands
score 6.0
suf_score 1.0
rank 12.0
rank_suf 39.0
rank_change -4.0
total_points 1637.48
result 0
rank_dif -27.0
points_by_rank 0.076923
team_points 3
country_classification Classe S-
Name: 2339, dtype: object
date 2021-09-07 00:00:00
team Norway
score 5.0
suf_score 1.0
rank 43.0
rank_suf 194.0
rank_change 1.0
total_points 1450.12
result 0
rank_dif -151.0
points_by_rank 0.015464
team_points 3
country_classification Classe A
Name: 2340, dtype: object
date 2021-09-07 00:00:00
team Croatia
score 3.0
suf_score 0.0
rank 18.0
rank_suf 66.0
rank_change 4.0
total_points 1594.36
result 0
rank_dif -48.0
points_by_rank 0.045455
team_points 3
country_classification Classe A
Name: 2341, dtype: object
date 2021-09-07 00:00:00
team Slovakia
score 2.0
suf_score 0.0
rank 38.0
rank_suf 99.0
rank_change 2.0
total_points 1467.4
result 0
rank_dif -61.0
points_by_rank 0.030303
team_points 3
country_classification Classe A
Name: 2342, dtype: object
date 2021-09-07 00:00:00
team Russia
score 2.0
suf_score 0.0
rank 41.0
rank_suf 177.0
rank_change 3.0
total_points 1462.24
result 0
rank_dif -136.0
points_by_rank 0.016949
team_points 3
country_classification Classe A
Name: 2343, dtype: object
date 2021-09-08 00:00:00
team Bulgaria
score 4.0
suf_score 1.0
rank 75.0
rank_suf 91.0
rank_change 4.0
total_points 1334.83
result 0
rank_dif -16.0
points_by_rank 0.032967
team_points 3
country_classification Classe B
Name: 2344, dtype: object
date 2021-09-08 00:00:00
team Czech Republic
score 1.0
suf_score 1.0
rank 31.0
rank_suf 25.0
rank_change -9.0
total_points 1492.65
result 2
rank_dif 6.0
points_by_rank 0.04
team_points 1
country_classification Classe A
Name: 2345, dtype: object
date 2021-09-08 00:00:00
team Guatemala
score 2.0
suf_score 2.0
rank 125.0
rank_suf 143.0
rank_change -2.0
total_points 1139.12
result 2
rank_dif -18.0
points_by_rank 0.006993
team_points 1
country_classification Classe C
Name: 2346, dtype: object
date 2021-09-08 00:00:00
team Kosovo
score 0.0
suf_score 2.0
rank 115.0
rank_suf 7.0
rank_change -5.0
total_points 1159.02
result 1
rank_dif 108.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2347, dtype: object
date 2021-09-08 00:00:00
team Greece
score 2.0
suf_score 1.0
rank 48.0
rank_suf 17.0
rank_change -3.0
total_points 1427.04
result 0
rank_dif 31.0
points_by_rank 0.176471
team_points 3
country_classification Classe A
Name: 2348, dtype: object
date 2021-09-08 00:00:00
team Northern Ireland
score 0.0
suf_score 0.0
rank 51.0
rank_suf 14.0
rank_change 3.0
total_points 1422.29
result 2
rank_dif 37.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 2349, dtype: object
date 2021-09-08 00:00:00
team Italy
score 5.0
suf_score 0.0
rank 5.0
rank_suf 134.0
rank_change -2.0
total_points 1744.67
result 0
rank_dif -129.0
points_by_rank 0.022388
team_points 3
country_classification Classe S
Name: 2350, dtype: object
date 2021-09-08 00:00:00
team Wales
score 0.0
suf_score 0.0
rank 19.0
rank_suf 110.0
rank_change 2.0
total_points 1567.29
result 2
rank_dif -91.0
points_by_rank 0.009091
team_points 1
country_classification Classe A
Name: 2351, dtype: object
date 2021-09-08 00:00:00
team Belarus
score 0.0
suf_score 1.0
rank 89.0
rank_suf 1.0
rank_change 0.0
total_points 1270.75
result 1
rank_dif 88.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2352, dtype: object
date 2021-09-08 00:00:00
team Albania
score 5.0
suf_score 0.0
rank 69.0
rank_suf 209.0
rank_change 3.0
total_points 1359.83
result 0
rank_dif -140.0
points_by_rank 0.014354
team_points 3
country_classification Classe B
Name: 2353, dtype: object
date 2021-09-08 00:00:00
team Hungary
score 2.0
suf_score 1.0
rank 37.0
rank_suf 156.0
rank_change 0.0
total_points 1474.36
result 0
rank_dif -119.0
points_by_rank 0.019231
team_points 3
country_classification Classe A
Name: 2354, dtype: object
date 2021-09-08 00:00:00
team Poland
score 1.0
suf_score 1.0
rank 27.0
rank_suf 4.0
rank_change 6.0
total_points 1516.27
result 2
rank_dif 23.0
points_by_rank 0.25
team_points 1
country_classification Classe A
Name: 2355, dtype: object
date 2021-09-08 00:00:00
team Iceland
score 0.0
suf_score 4.0
rank 53.0
rank_suf 16.0
rank_change 1.0
total_points 1418.48
result 1
rank_dif 37.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2356, dtype: object
date 2021-09-08 00:00:00
team Armenia
score 1.0
suf_score 1.0
rank 88.0
rank_suf 189.0
rank_change -2.0
total_points 1273.67
result 2
rank_dif -101.0
points_by_rank 0.005291
team_points 1
country_classification Classe B
Name: 2357, dtype: object
date 2021-09-08 00:00:00
team North Macedonia
score 0.0
suf_score 0.0
rank 72.0
rank_suf 45.0
rank_change 10.0
total_points 1342.92
result 2
rank_dif 27.0
points_by_rank 0.022222
team_points 1
country_classification Classe B
Name: 2358, dtype: object
date 2021-09-08 00:00:00
team Costa Rica
score 1.0
suf_score 1.0
rank 44.0
rank_suf 50.0
rank_change -6.0
total_points 1449.79
result 2
rank_dif -6.0
points_by_rank 0.02
team_points 1
country_classification Classe A
Name: 2359, dtype: object
date 2021-09-08 00:00:00
team Panama
score 1.0
suf_score 1.0
rank 74.0
rank_suf 9.0
rank_change -4.0
total_points 1334.85
result 2
rank_dif 65.0
points_by_rank 0.111111
team_points 1
country_classification Classe B
Name: 2360, dtype: object
date 2021-09-08 00:00:00
team Canada
score 3.0
suf_score 0.0
rank 59.0
rank_suf 64.0
rank_change -11.0
total_points 1399.35
result 0
rank_dif -5.0
points_by_rank 0.046875
team_points 3
country_classification Classe B
Name: 2361, dtype: object
date 2021-09-08 00:00:00
team Honduras
score 1.0
suf_score 4.0
rank 63.0
rank_suf 10.0
rank_change -4.0
total_points 1377.79
result 1
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2362, dtype: object
date 2021-09-09 00:00:00
team Colombia
score 3.0
suf_score 1.0
rank 15.0
rank_suf 20.0
rank_change 0.0
total_points 1617.67
result 0
rank_dif -5.0
points_by_rank 0.15
team_points 3
country_classification Classe S-
Name: 2363, dtype: object
date 2021-09-09 00:00:00
team Paraguay
score 2.0
suf_score 1.0
rank 33.0
rank_suf 40.0
rank_change -2.0
total_points 1483.49
result 0
rank_dif -7.0
points_by_rank 0.075
team_points 3
country_classification Classe A
Name: 2364, dtype: object
date 2021-09-09 00:00:00
team Uruguay
score 1.0
suf_score 0.0
rank 13.0
rank_suf 55.0
rank_change 4.0
total_points 1634.63
result 0
rank_dif -42.0
points_by_rank 0.054545
team_points 3
country_classification Classe S-
Name: 2365, dtype: object
date 2021-09-09 00:00:00
team Argentina
score 3.0
suf_score 0.0
rank 6.0
rank_suf 82.0
rank_change -2.0
total_points 1714.43
result 0
rank_dif -76.0
points_by_rank 0.036585
team_points 3
country_classification Classe S
Name: 2366, dtype: object
date 2021-09-09 00:00:00
team Brazil
score 2.0
suf_score 0.0
rank 2.0
rank_suf 22.0
rank_change -1.0
total_points 1797.67
result 0
rank_dif -20.0
points_by_rank 0.136364
team_points 3
country_classification Classe S
Name: 2367, dtype: object
date 2021-09-24 00:00:00
team El Salvador
score 0.0
suf_score 2.0
rank 65.0
rank_suf 123.0
rank_change 1.0
total_points 1369.73
result 1
rank_dif -58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2368, dtype: object
date 2021-09-30 00:00:00
team Egypt
score 2.0
suf_score 0.0
rank 48.0
rank_suf 144.0
rank_change 2.0
total_points 1434.62
result 0
rank_dif -96.0
points_by_rank 0.020833
team_points 3
country_classification Classe A
Name: 2369, dtype: object
date 2021-10-01 00:00:00
team Sri Lanka
score 0.0
suf_score 1.0
rank 205.0
rank_suf 189.0
rank_change 0.0
total_points 846.54
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2370, dtype: object
date 2021-10-01 00:00:00
team Maldives
score 0.0
suf_score 1.0
rank 158.0
rank_suf 168.0
rank_change 0.0
total_points 1028.3
result 1
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2371, dtype: object
date 2021-10-04 00:00:00
team Bangladesh
score 1.0
suf_score 1.0
rank 189.0
rank_suf 107.0
rank_change 1.0
total_points 906.84
result 2
rank_dif 82.0
points_by_rank 0.009346
team_points 1
country_classification Classe D
Name: 2372, dtype: object
date 2021-10-04 00:00:00
team Sri Lanka
score 2.0
suf_score 3.0
rank 205.0
rank_suf 168.0
rank_change 0.0
total_points 846.54
result 1
rank_dif 37.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2373, dtype: object
date 2021-10-06 00:00:00
team Sudan
score 1.0
suf_score 1.0
rank 127.0
rank_suf 76.0
rank_change 6.0
total_points 1130.91
result 2
rank_dif 51.0
points_by_rank 0.013158
team_points 1
country_classification Classe C
Name: 2374, dtype: object
date 2021-10-06 00:00:00
team Morocco
score 5.0
suf_score 0.0
rank 33.0
rank_suf 105.0
rank_change 1.0
total_points 1493.23
result 0
rank_dif -72.0
points_by_rank 0.028571
team_points 3
country_classification Classe A
Name: 2375, dtype: object
date 2021-10-06 00:00:00
team Bahrain
score 4.0
suf_score 0.0
rank 91.0
rank_suf 79.0
rank_change -3.0
total_points 1251.31
result 0
rank_dif 12.0
points_by_rank 0.037975
team_points 3
country_classification Classe B
Name: 2376, dtype: object
date 2021-10-06 00:00:00
team Jordan
score 4.0
suf_score 0.0
rank 93.0
rank_suf 154.0
rank_change -2.0
total_points 1245.64
result 0
rank_dif -61.0
points_by_rank 0.019481
team_points 3
country_classification Classe B
Name: 2377, dtype: object
date 2021-10-06 00:00:00
team Sierra Leone
score 1.0
suf_score 1.0
rank 108.0
rank_suf 165.0
rank_change 2.0
total_points 1177.71
result 2
rank_dif -57.0
points_by_rank 0.006061
team_points 1
country_classification Classe C
Name: 2378, dtype: object
date 2021-10-06 00:00:00
team Italy
score 1.0
suf_score 2.0
rank 5.0
rank_suf 8.0
rank_change 0.0
total_points 1735.73
result 1
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 2379, dtype: object
date 2021-10-07 00:00:00
team Iraq
score 0.0
suf_score 0.0
rank 72.0
rank_suf 97.0
rank_change 2.0
total_points 1348.83
result 2
rank_dif -25.0
points_by_rank 0.010309
team_points 1
country_classification Classe B
Name: 2380, dtype: object
date 2021-10-07 00:00:00
team South Korea
score 2.0
suf_score 1.0
rank 36.0
rank_suf 81.0
rank_change 0.0
total_points 1479.41
result 0
rank_dif -45.0
points_by_rank 0.037037
team_points 3
country_classification Classe A
Name: 2381, dtype: object
date 2021-10-07 00:00:00
team United Arab Emirates
score 0.0
suf_score 1.0
rank 69.0
rank_suf 22.0
rank_change 1.0
total_points 1357.84
result 1
rank_dif 47.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2382, dtype: object
date 2021-10-07 00:00:00
team Saudi Arabia
score 1.0
suf_score 0.0
rank 56.0
rank_suf 26.0
rank_change -5.0
total_points 1406.34
result 0
rank_dif 30.0
points_by_rank 0.115385
team_points 3
country_classification Classe A
Name: 2383, dtype: object
date 2021-10-07 00:00:00
team China PR
score 3.0
suf_score 2.0
rank 75.0
rank_suf 95.0
rank_change 4.0
total_points 1334.52
result 0
rank_dif -20.0
points_by_rank 0.031579
team_points 3
country_classification Classe B
Name: 2384, dtype: object
date 2021-10-07 00:00:00
team Australia
score 3.0
suf_score 1.0
rank 32.0
rank_suf 78.0
rank_change -3.0
total_points 1493.99
result 0
rank_dif -46.0
points_by_rank 0.038462
team_points 3
country_classification Classe A
Name: 2385, dtype: object
date 2021-10-07 00:00:00
team Honduras
score 0.0
suf_score 0.0
rank 63.0
rank_suf 44.0
rank_change 0.0
total_points 1371.61
result 2
rank_dif 19.0
points_by_rank 0.022727
team_points 1
country_classification Classe B
Name: 2386, dtype: object
date 2021-10-07 00:00:00
team United States
score 2.0
suf_score 0.0
rank 13.0
rank_suf 59.0
rank_change 3.0
total_points 1643.1
result 0
rank_dif -46.0
points_by_rank 0.050847
team_points 3
country_classification Classe S-
Name: 2387, dtype: object
date 2021-10-07 00:00:00
team El Salvador
score 1.0
suf_score 0.0
rank 65.0
rank_suf 68.0
rank_change 1.0
total_points 1369.73
result 0
rank_dif -3.0
points_by_rank 0.044118
team_points 3
country_classification Classe B
Name: 2388, dtype: object
date 2021-10-07 00:00:00
team Mexico
score 1.0
suf_score 1.0
rank 9.0
rank_suf 51.0
rank_change 0.0
total_points 1666.19
result 2
rank_dif -42.0
points_by_rank 0.019608
team_points 1
country_classification Classe S-
Name: 2389, dtype: object
date 2021-10-07 00:00:00
team Equatorial Guinea
score 2.0
suf_score 0.0
rank 131.0
rank_suf 85.0
rank_change -1.0
total_points 1116.12
result 0
rank_dif 46.0
points_by_rank 0.035294
team_points 3
country_classification Classe C
Name: 2390, dtype: object
date 2021-10-07 00:00:00
team Tunisia
score 3.0
suf_score 0.0
rank 25.0
rank_suf 104.0
rank_change -3.0
total_points 1526.87
result 0
rank_dif -79.0
points_by_rank 0.028846
team_points 3
country_classification Classe A
Name: 2391, dtype: object
date 2021-10-07 00:00:00
team Nigeria
score 0.0
suf_score 1.0
rank 34.0
rank_suf 124.0
rank_change 0.0
total_points 1492.37
result 1
rank_dif -90.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2392, dtype: object
date 2021-10-07 00:00:00
team Rwanda
score 0.0
suf_score 1.0
rank 128.0
rank_suf 86.0
rank_change 1.0
total_points 1129.37
result 1
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2393, dtype: object
date 2021-10-07 00:00:00
team Mali
score 5.0
suf_score 0.0
rank 61.0
rank_suf 102.0
rank_change 1.0
total_points 1396.52
result 0
rank_dif -41.0
points_by_rank 0.029412
team_points 3
country_classification Classe B
Name: 2394, dtype: object
date 2021-10-07 00:00:00
team Tanzania
score 0.0
suf_score 1.0
rank 132.0
rank_suf 82.0
rank_change -3.0
total_points 1115.37
result 1
rank_dif 50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2395, dtype: object
date 2021-10-07 00:00:00
team Ecuador
score 3.0
suf_score 0.0
rank 52.0
rank_suf 83.0
rank_change -3.0
total_points 1415.09
result 0
rank_dif -31.0
points_by_rank 0.036145
team_points 3
country_classification Classe A
Name: 2396, dtype: object
date 2021-10-07 00:00:00
team Venezuela
score 1.0
suf_score 3.0
rank 49.0
rank_suf 2.0
rank_change 9.0
total_points 1434.14
result 1
rank_dif 47.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2397, dtype: object
date 2021-10-07 00:00:00
team Paraguay
score 0.0
suf_score 0.0
rank 35.0
rank_suf 6.0
rank_change 2.0
total_points 1484.31
result 2
rank_dif 29.0
points_by_rank 0.166667
team_points 1
country_classification Classe A
Name: 2398, dtype: object
date 2021-10-07 00:00:00
team Peru
score 2.0
suf_score 0.0
rank 21.0
rank_suf 23.0
rank_change -1.0
total_points 1548.78
result 0
rank_dif -2.0
points_by_rank 0.130435
team_points 3
country_classification Classe A
Name: 2399, dtype: object
date 2021-10-07 00:00:00
team Uruguay
score 0.0
suf_score 0.0
rank 12.0
rank_suf 16.0
rank_change -1.0
total_points 1645.42
result 2
rank_dif -4.0
points_by_rank 0.0625
team_points 1
country_classification Classe S-
Name: 2400, dtype: object
date 2021-10-07 00:00:00
team India
score 0.0
suf_score 0.0
rank 107.0
rank_suf 205.0
rank_change 2.0
total_points 1181.45
result 2
rank_dif -98.0
points_by_rank 0.004878
team_points 1
country_classification Classe C
Name: 2401, dtype: object
date 2021-10-07 00:00:00
team Maldives
score 2.0
suf_score 0.0
rank 158.0
rank_suf 189.0
rank_change 0.0
total_points 1028.3
result 0
rank_dif -31.0
points_by_rank 0.015873
team_points 3
country_classification Classe C
Name: 2402, dtype: object
date 2021-10-07 00:00:00
team Belgium
score 2.0
suf_score 3.0
rank 1.0
rank_suf 4.0
rank_change 0.0
total_points 1832.33
result 1
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 2403, dtype: object
date 2021-10-08 00:00:00
team Czech Republic
score 2.0
suf_score 2.0
rank 31.0
rank_suf 19.0
rank_change 0.0
total_points 1494.78
result 2
rank_dif 12.0
points_by_rank 0.052632
team_points 1
country_classification Classe A
Name: 2404, dtype: object
date 2021-10-08 00:00:00
team Estonia
score 2.0
suf_score 0.0
rank 111.0
rank_suf 90.0
rank_change 1.0
total_points 1174.44
result 0
rank_dif 21.0
points_by_rank 0.033333
team_points 3
country_classification Classe C
Name: 2405, dtype: object
date 2021-10-08 00:00:00
team Gibraltar
score 0.0
suf_score 3.0
rank 197.0
rank_suf 71.0
rank_change 3.0
total_points 867.7
result 1
rank_dif 126.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2406, dtype: object
date 2021-10-08 00:00:00
team Latvia
score 0.0
suf_score 1.0
rank 135.0
rank_suf 11.0
rank_change -1.0
total_points 1092.45
result 1
rank_dif 124.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2407, dtype: object
date 2021-10-08 00:00:00
team Turkey
score 1.0
suf_score 1.0
rank 41.0
rank_suf 39.0
rank_change 2.0
total_points 1455.44
result 2
rank_dif 2.0
points_by_rank 0.025641
team_points 1
country_classification Classe A
Name: 2408, dtype: object
date 2021-10-08 00:00:00
team Malta
score 0.0
suf_score 4.0
rank 171.0
rank_suf 64.0
rank_change -6.0
total_points 963.16
result 1
rank_dif 107.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2409, dtype: object
date 2021-10-08 00:00:00
team Cyprus
score 0.0
suf_score 3.0
rank 103.0
rank_suf 17.0
rank_change 4.0
total_points 1202.65
result 1
rank_dif 86.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2410, dtype: object
date 2021-10-08 00:00:00
team Russia
score 1.0
suf_score 0.0
rank 37.0
rank_suf 38.0
rank_change -4.0
total_points 1475.43
result 0
rank_dif -1.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 2411, dtype: object
date 2021-10-08 00:00:00
team Iceland
score 1.0
suf_score 1.0
rank 60.0
rank_suf 89.0
rank_change 7.0
total_points 1397.32
result 2
rank_dif -29.0
points_by_rank 0.011236
team_points 1
country_classification Classe B
Name: 2412, dtype: object
date 2021-10-08 00:00:00
team Germany
score 2.0
suf_score 1.0
rank 14.0
rank_suf 42.0
rank_change -2.0
total_points 1627.8
result 0
rank_dif -28.0
points_by_rank 0.071429
team_points 3
country_classification Classe S-
Name: 2413, dtype: object
date 2021-10-08 00:00:00
team Liechtenstein
score 0.0
suf_score 4.0
rank 188.0
rank_suf 74.0
rank_change -1.0
total_points 910.94
result 1
rank_dif 114.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2414, dtype: object
date 2021-10-08 00:00:00
team Algeria
score 6.0
suf_score 1.0
rank 30.0
rank_suf 119.0
rank_change 0.0
total_points 1498.62
result 0
rank_dif -89.0
points_by_rank 0.02521
team_points 3
country_classification Classe A
Name: 2415, dtype: object
date 2021-10-08 00:00:00
team Djibouti
score 0.0
suf_score 4.0
rank 185.0
rank_suf 62.0
rank_change 3.0
total_points 912.57
result 1
rank_dif 123.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2416, dtype: object
date 2021-10-08 00:00:00
team Cameroon
score 3.0
suf_score 1.0
rank 58.0
rank_suf 116.0
rank_change 4.0
total_points 1404.46
result 0
rank_dif -58.0
points_by_rank 0.025862
team_points 3
country_classification Classe A
Name: 2417, dtype: object
date 2021-10-08 00:00:00
team Angola
score 3.0
suf_score 1.0
rank 129.0
rank_suf 88.0
rank_change 3.0
total_points 1118.12
result 0
rank_dif 41.0
points_by_rank 0.034091
team_points 3
country_classification Classe C
Name: 2418, dtype: object
date 2021-10-08 00:00:00
team Egypt
score 1.0
suf_score 0.0
rank 48.0
rank_suf 110.0
rank_change 2.0
total_points 1434.62
result 0
rank_dif -62.0
points_by_rank 0.027273
team_points 3
country_classification Classe A
Name: 2419, dtype: object
date 2021-10-09 00:00:00
team Azerbaijan
score 0.0
suf_score 3.0
rank 117.0
rank_suf 50.0
rank_change 5.0
total_points 1158.46
result 1
rank_dif 67.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2420, dtype: object
date 2021-10-09 00:00:00
team Luxembourg
score 0.0
suf_score 1.0
rank 94.0
rank_suf 28.0
rank_change -2.0
total_points 1244.55
result 1
rank_dif 66.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2421, dtype: object
date 2021-10-09 00:00:00
team Sweden
score 3.0
suf_score 0.0
rank 18.0
rank_suf 109.0
rank_change 1.0
total_points 1606.03
result 0
rank_dif -91.0
points_by_rank 0.027523
team_points 3
country_classification Classe S-
Name: 2422, dtype: object
date 2021-10-09 00:00:00
team Georgia
score 0.0
suf_score 2.0
rank 96.0
rank_suf 46.0
rank_change 5.0
total_points 1240.87
result 1
rank_dif 50.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2423, dtype: object
date 2021-10-09 00:00:00
team Lithuania
score 3.0
suf_score 1.0
rank 137.0
rank_suf 70.0
rank_change 3.0
total_points 1082.2
result 0
rank_dif 67.0
points_by_rank 0.042857
team_points 3
country_classification Classe C
Name: 2424, dtype: object
date 2021-10-09 00:00:00
team Switzerland
score 2.0
suf_score 0.0
rank 15.0
rank_suf 47.0
rank_change 1.0
total_points 1622.73
result 0
rank_dif -32.0
points_by_rank 0.06383
team_points 3
country_classification Classe S-
Name: 2425, dtype: object
date 2021-10-09 00:00:00
team Finland
score 1.0
suf_score 2.0
rank 55.0
rank_suf 27.0
rank_change -1.0
total_points 1406.92
result 1
rank_dif 28.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2426, dtype: object
date 2021-10-09 00:00:00
team Kazakhstan
score 0.0
suf_score 2.0
rank 120.0
rank_suf 57.0
rank_change -4.0
total_points 1151.18
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2427, dtype: object
date 2021-10-09 00:00:00
team Scotland
score 3.0
suf_score 2.0
rank 45.0
rank_suf 80.0
rank_change -4.0
total_points 1435.64
result 0
rank_dif -35.0
points_by_rank 0.0375
team_points 3
country_classification Classe A
Name: 2428, dtype: object
date 2021-10-09 00:00:00
team Faroe Islands
score 0.0
suf_score 2.0
rank 114.0
rank_suf 29.0
rank_change 0.0
total_points 1160.39
result 1
rank_dif 85.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2429, dtype: object
date 2021-10-09 00:00:00
team Moldova
score 0.0
suf_score 4.0
rank 180.0
rank_suf 10.0
rank_change 5.0
total_points 940.3
result 1
rank_dif 170.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2430, dtype: object
date 2021-10-09 00:00:00
team Andorra
score 0.0
suf_score 5.0
rank 156.0
rank_suf 3.0
rank_change 0.0
total_points 1033.27
result 1
rank_dif 153.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2431, dtype: object
date 2021-10-09 00:00:00
team Hungary
score 0.0
suf_score 1.0
rank 40.0
rank_suf 66.0
rank_change 3.0
total_points 1456.93
result 1
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2432, dtype: object
date 2021-10-09 00:00:00
team Poland
score 5.0
suf_score 0.0
rank 24.0
rank_suf 210.0
rank_change -3.0
total_points 1531.82
result 0
rank_dif -186.0
points_by_rank 0.014286
team_points 3
country_classification Classe A
Name: 2433, dtype: object
date 2021-10-09 00:00:00
team Ethiopia
score 1.0
suf_score 3.0
rank 134.0
rank_suf 73.0
rank_change -3.0
total_points 1092.74
result 1
rank_dif 61.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2434, dtype: object
date 2021-10-09 00:00:00
team Ghana
score 3.0
suf_score 1.0
rank 53.0
rank_suf 113.0
rank_change 1.0
total_points 1411.3
result 0
rank_dif -60.0
points_by_rank 0.026549
team_points 3
country_classification Classe A
Name: 2435, dtype: object
date 2021-10-09 00:00:00
team Togo
score 1.0
suf_score 1.0
rank 136.0
rank_suf 92.0
rank_change 5.0
total_points 1090.95
result 2
rank_dif 44.0
points_by_rank 0.01087
team_points 1
country_classification Classe C
Name: 2436, dtype: object
date 2021-10-09 00:00:00
team Senegal
score 4.0
suf_score 1.0
rank 20.0
rank_suf 106.0
rank_change -1.0
total_points 1555.37
result 0
rank_dif -86.0
points_by_rank 0.028302
team_points 3
country_classification Classe A
Name: 2437, dtype: object
date 2021-10-09 00:00:00
team Guinea
score 2.0
suf_score 2.0
rank 76.0
rank_suf 127.0
rank_change 0.0
total_points 1326.09
result 2
rank_dif -51.0
points_by_rank 0.007874
team_points 1
country_classification Classe B
Name: 2438, dtype: object
date 2021-10-09 00:00:00
team Curaçao
score 1.0
suf_score 2.0
rank 79.0
rank_suf 121.0
rank_change 1.0
total_points 1310.4
result 1
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2439, dtype: object
date 2021-10-09 00:00:00
team Gambia
score 1.0
suf_score 2.0
rank 149.0
rank_suf 108.0
rank_change 1.0
total_points 1053.18
result 1
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2440, dtype: object
date 2021-10-09 00:00:00
team Portugal
score 3.0
suf_score 0.0
rank 7.0
rank_suf 43.0
rank_change -1.0
total_points 1674.9
result 0
rank_dif -36.0
points_by_rank 0.069767
team_points 3
country_classification Classe S-
Name: 2441, dtype: object
date 2021-10-09 00:00:00
team Uzbekistan
score 5.0
suf_score 1.0
rank 84.0
rank_suf 154.0
rank_change 1.0
total_points 1282.27
result 0
rank_dif -70.0
points_by_rank 0.019481
team_points 3
country_classification Classe B
Name: 2442, dtype: object
date 2021-10-09 00:00:00
team Guam
score 0.0
suf_score 1.0
rank 203.0
rank_suf 178.0
rank_change 0.0
total_points 858.49
result 1
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2443, dtype: object
date 2021-10-09 00:00:00
team Morocco
score 3.0
suf_score 0.0
rank 33.0
rank_suf 105.0
rank_change 1.0
total_points 1493.23
result 0
rank_dif -72.0
points_by_rank 0.028571
team_points 3
country_classification Classe A
Name: 2444, dtype: object
date 2021-10-10 00:00:00
team Costa Rica
score 2.0
suf_score 1.0
rank 44.0
rank_suf 65.0
rank_change 0.0
total_points 1438.29
result 0
rank_dif -21.0
points_by_rank 0.046154
team_points 3
country_classification Classe A
Name: 2445, dtype: object
date 2021-10-10 00:00:00
team Jamaica
score 0.0
suf_score 0.0
rank 59.0
rank_suf 51.0
rank_change 9.0
total_points 1402.39
result 2
rank_dif 8.0
points_by_rank 0.019608
team_points 1
country_classification Classe A
Name: 2446, dtype: object
date 2021-10-10 00:00:00
team Panama
score 1.0
suf_score 0.0
rank 68.0
rank_suf 13.0
rank_change -6.0
total_points 1358.77
result 0
rank_dif 55.0
points_by_rank 0.230769
team_points 3
country_classification Classe B
Name: 2447, dtype: object
date 2021-10-10 00:00:00
team Mexico
score 3.0
suf_score 0.0
rank 9.0
rank_suf 63.0
rank_change 0.0
total_points 1666.19
result 0
rank_dif -54.0
points_by_rank 0.047619
team_points 3
country_classification Classe S-
Name: 2448, dtype: object
date 2021-10-10 00:00:00
team Zambia
score 1.0
suf_score 1.0
rank 85.0
rank_suf 131.0
rank_change -2.0
total_points 1280.19
result 2
rank_dif -46.0
points_by_rank 0.007634
team_points 1
country_classification Classe B
Name: 2449, dtype: object
date 2021-10-10 00:00:00
team Mauritania
score 0.0
suf_score 0.0
rank 104.0
rank_suf 25.0
rank_change 4.0
total_points 1200.6
result 2
rank_dif 79.0
points_by_rank 0.04
team_points 1
country_classification Classe B
Name: 2450, dtype: object
date 2021-10-10 00:00:00
team Central African Republic
score 0.0
suf_score 2.0
rank 124.0
rank_suf 34.0
rank_change 1.0
total_points 1136.25
result 1
rank_dif 90.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2451, dtype: object
date 2021-10-10 00:00:00
team Kenya
score 0.0
suf_score 1.0
rank 102.0
rank_suf 61.0
rank_change -2.0
total_points 1205.12
result 1
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2452, dtype: object
date 2021-10-10 00:00:00
team Uganda
score 1.0
suf_score 0.0
rank 86.0
rank_suf 128.0
rank_change 2.0
total_points 1279.85
result 0
rank_dif -42.0
points_by_rank 0.023438
team_points 3
country_classification Classe B
Name: 2453, dtype: object
date 2021-10-10 00:00:00
team Benin
score 0.0
suf_score 1.0
rank 82.0
rank_suf 132.0
rank_change -4.0
total_points 1290.81
result 1
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2454, dtype: object
date 2021-10-10 00:00:00
team Bolivia
score 1.0
suf_score 0.0
rank 83.0
rank_suf 21.0
rank_change 1.0
total_points 1283.65
result 0
rank_dif 62.0
points_by_rank 0.142857
team_points 3
country_classification Classe B
Name: 2455, dtype: object
date 2021-10-10 00:00:00
team Colombia
score 0.0
suf_score 0.0
rank 16.0
rank_suf 2.0
rank_change 1.0
total_points 1618.4
result 2
rank_dif 14.0
points_by_rank 0.5
team_points 1
country_classification Classe S-
Name: 2456, dtype: object
date 2021-10-10 00:00:00
team Venezuela
score 2.0
suf_score 1.0
rank 49.0
rank_suf 52.0
rank_change 9.0
total_points 1434.14
result 0
rank_dif -3.0
points_by_rank 0.057692
team_points 3
country_classification Classe A
Name: 2457, dtype: object
date 2021-10-10 00:00:00
team Argentina
score 3.0
suf_score 0.0
rank 6.0
rank_suf 12.0
rank_change 0.0
total_points 1725.31
result 0
rank_dif -6.0
points_by_rank 0.25
team_points 3
country_classification Classe S
Name: 2458, dtype: object
date 2021-10-10 00:00:00
team Chile
score 2.0
suf_score 0.0
rank 23.0
rank_suf 35.0
rank_change 3.0
total_points 1536.53
result 0
rank_dif -12.0
points_by_rank 0.085714
team_points 3
country_classification Classe A
Name: 2459, dtype: object
date 2021-10-10 00:00:00
team Maldives
score 1.0
suf_score 0.0
rank 158.0
rank_suf 205.0
rank_change 0.0
total_points 1028.3
result 0
rank_dif -47.0
points_by_rank 0.014634
team_points 3
country_classification Classe C
Name: 2460, dtype: object
date 2021-10-10 00:00:00
team Nepal
score 0.0
suf_score 1.0
rank 168.0
rank_suf 107.0
rank_change 0.0
total_points 970.95
result 1
rank_dif 61.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2461, dtype: object
date 2021-10-10 00:00:00
team Italy
score 2.0
suf_score 1.0
rank 5.0
rank_suf 1.0
rank_change 0.0
total_points 1735.73
result 0
rank_dif 4.0
points_by_rank 3.0
team_points 3
country_classification Classe S
Name: 2462, dtype: object
date 2021-10-10 00:00:00
team Spain
score 1.0
suf_score 2.0
rank 8.0
rank_suf 4.0
rank_change 1.0
total_points 1673.68
result 1
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2463, dtype: object
date 2021-10-11 00:00:00
team Belarus
score 0.0
suf_score 2.0
rank 90.0
rank_suf 31.0
rank_change 1.0
total_points 1254.81
result 1
rank_dif 59.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2464, dtype: object
date 2021-10-11 00:00:00
team Estonia
score 0.0
suf_score 1.0
rank 111.0
rank_suf 19.0
rank_change 1.0
total_points 1174.44
result 1
rank_dif 92.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2465, dtype: object
date 2021-10-11 00:00:00
team Netherlands
score 6.0
suf_score 0.0
rank 11.0
rank_suf 197.0
rank_change -1.0
total_points 1648.2
result 0
rank_dif -186.0
points_by_rank 0.015228
team_points 3
country_classification Classe S-
Name: 2466, dtype: object
date 2021-10-11 00:00:00
team Norway
score 2.0
suf_score 0.0
rank 39.0
rank_suf 71.0
rank_change -4.0
total_points 1461.76
result 0
rank_dif -32.0
points_by_rank 0.042254
team_points 3
country_classification Classe A
Name: 2467, dtype: object
date 2021-10-11 00:00:00
team Latvia
score 1.0
suf_score 2.0
rank 135.0
rank_suf 41.0
rank_change -1.0
total_points 1092.45
result 1
rank_dif 94.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2468, dtype: object
date 2021-10-11 00:00:00
team Cyprus
score 2.0
suf_score 2.0
rank 103.0
rank_suf 171.0
rank_change 4.0
total_points 1202.65
result 2
rank_dif -68.0
points_by_rank 0.005848
team_points 1
country_classification Classe B
Name: 2469, dtype: object
date 2021-10-11 00:00:00
team Croatia
score 2.0
suf_score 2.0
rank 17.0
rank_suf 38.0
rank_change -1.0
total_points 1608.25
result 2
rank_dif -21.0
points_by_rank 0.026316
team_points 1
country_classification Classe S-
Name: 2470, dtype: object
date 2021-10-11 00:00:00
team Slovenia
score 1.0
suf_score 2.0
rank 64.0
rank_suf 37.0
rank_change -2.0
total_points 1370.46
result 1
rank_dif 27.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2471, dtype: object
date 2021-10-11 00:00:00
team Iceland
score 4.0
suf_score 0.0
rank 60.0
rank_suf 188.0
rank_change 7.0
total_points 1397.32
result 0
rank_dif -128.0
points_by_rank 0.015957
team_points 3
country_classification Classe B
Name: 2472, dtype: object
date 2021-10-11 00:00:00
team North Macedonia
score 0.0
suf_score 4.0
rank 74.0
rank_suf 14.0
rank_change 2.0
total_points 1345.47
result 1
rank_dif 60.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2473, dtype: object
date 2021-10-11 00:00:00
team Romania
score 1.0
suf_score 0.0
rank 42.0
rank_suf 89.0
rank_change -3.0
total_points 1451.8
result 0
rank_dif -47.0
points_by_rank 0.033708
team_points 3
country_classification Classe A
Name: 2474, dtype: object
date 2021-10-11 00:00:00
team Burkina Faso
score 2.0
suf_score 0.0
rank 62.0
rank_suf 185.0
rank_change 0.0
total_points 1393.82
result 0
rank_dif -123.0
points_by_rank 0.016216
team_points 3
country_classification Classe B
Name: 2475, dtype: object
date 2021-10-11 00:00:00
team Mozambique
score 0.0
suf_score 1.0
rank 116.0
rank_suf 58.0
rank_change 3.0
total_points 1158.59
result 1
rank_dif 58.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2476, dtype: object
date 2021-10-11 00:00:00
team Gabon
score 2.0
suf_score 0.0
rank 88.0
rank_suf 129.0
rank_change 3.0
total_points 1266.61
result 0
rank_dif -41.0
points_by_rank 0.023256
team_points 3
country_classification Classe B
Name: 2477, dtype: object
date 2021-10-11 00:00:00
team Libya
score 0.0
suf_score 3.0
rank 110.0
rank_suf 48.0
rank_change -12.0
total_points 1174.94
result 1
rank_dif 62.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2478, dtype: object
date 2021-10-12 00:00:00
team Iran
score 1.0
suf_score 1.0
rank 22.0
rank_suf 36.0
rank_change -4.0
total_points 1538.08
result 2
rank_dif -14.0
points_by_rank 0.027778
team_points 1
country_classification Classe A
Name: 2479, dtype: object
date 2021-10-12 00:00:00
team Syria
score 2.0
suf_score 3.0
rank 81.0
rank_suf 97.0
rank_change 1.0
total_points 1296.75
result 1
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2480, dtype: object
date 2021-10-12 00:00:00
team United Arab Emirates
score 2.0
suf_score 2.0
rank 69.0
rank_suf 72.0
rank_change 1.0
total_points 1357.84
result 2
rank_dif -3.0
points_by_rank 0.013889
team_points 1
country_classification Classe B
Name: 2481, dtype: object
date 2021-10-12 00:00:00
team Japan
score 2.0
suf_score 1.0
rank 26.0
rank_suf 32.0
rank_change 2.0
total_points 1520.46
result 0
rank_dif -6.0
points_by_rank 0.09375
team_points 3
country_classification Classe A
Name: 2482, dtype: object
date 2021-10-12 00:00:00
team Oman
score 3.0
suf_score 1.0
rank 78.0
rank_suf 95.0
rank_change -1.0
total_points 1311.82
result 0
rank_dif -17.0
points_by_rank 0.031579
team_points 3
country_classification Classe B
Name: 2483, dtype: object
date 2021-10-12 00:00:00
team Saudi Arabia
score 3.0
suf_score 2.0
rank 56.0
rank_suf 75.0
rank_change -5.0
total_points 1406.34
result 0
rank_dif -19.0
points_by_rank 0.04
team_points 3
country_classification Classe A
Name: 2484, dtype: object
date 2021-10-12 00:00:00
team Portugal
score 5.0
suf_score 0.0
rank 7.0
rank_suf 94.0
rank_change -1.0
total_points 1674.9
result 0
rank_dif -87.0
points_by_rank 0.031915
team_points 3
country_classification Classe S-
Name: 2485, dtype: object
date 2021-10-12 00:00:00
team Serbia
score 3.0
suf_score 1.0
rank 28.0
rank_suf 117.0
rank_change -1.0
total_points 1515.97
result 0
rank_dif -89.0
points_by_rank 0.025641
team_points 3
country_classification Classe A
Name: 2486, dtype: object
date 2021-10-12 00:00:00
team Kosovo
score 1.0
suf_score 2.0
rank 109.0
rank_suf 96.0
rank_change -6.0
total_points 1176.28
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2487, dtype: object
date 2021-10-12 00:00:00
team Sweden
score 2.0
suf_score 0.0
rank 18.0
rank_suf 46.0
rank_change 1.0
total_points 1606.03
result 0
rank_dif -28.0
points_by_rank 0.065217
team_points 3
country_classification Classe S-
Name: 2488, dtype: object
date 2021-10-12 00:00:00
team Bulgaria
score 2.0
suf_score 1.0
rank 70.0
rank_suf 47.0
rank_change -5.0
total_points 1353.93
result 0
rank_dif 23.0
points_by_rank 0.06383
team_points 3
country_classification Classe B
Name: 2489, dtype: object
date 2021-10-12 00:00:00
team Lithuania
score 0.0
suf_score 4.0
rank 137.0
rank_suf 15.0
rank_change 3.0
total_points 1082.2
result 1
rank_dif 122.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2490, dtype: object
date 2021-10-12 00:00:00
team Kazakhstan
score 0.0
suf_score 2.0
rank 120.0
rank_suf 55.0
rank_change -4.0
total_points 1151.18
result 1
rank_dif 65.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2491, dtype: object
date 2021-10-12 00:00:00
team Ukraine
score 1.0
suf_score 1.0
rank 27.0
rank_suf 57.0
rank_change 2.0
total_points 1520.07
result 2
rank_dif -30.0
points_by_rank 0.017544
team_points 1
country_classification Classe A
Name: 2492, dtype: object
date 2021-10-12 00:00:00
team Faroe Islands
score 0.0
suf_score 1.0
rank 114.0
rank_suf 45.0
rank_change 0.0
total_points 1160.39
result 1
rank_dif 69.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2493, dtype: object
date 2021-10-12 00:00:00
team Denmark
score 1.0
suf_score 0.0
rank 10.0
rank_suf 29.0
rank_change -1.0
total_points 1658.49
result 0
rank_dif -19.0
points_by_rank 0.103448
team_points 3
country_classification Classe S-
Name: 2494, dtype: object
date 2021-10-12 00:00:00
team Israel
score 2.0
suf_score 1.0
rank 80.0
rank_suf 180.0
rank_change -1.0
total_points 1310.33
result 0
rank_dif -100.0
points_by_rank 0.016667
team_points 3
country_classification Classe B
Name: 2495, dtype: object
date 2021-10-12 00:00:00
team England
score 1.0
suf_score 1.0
rank 3.0
rank_suf 40.0
rank_change -1.0
total_points 1755.44
result 2
rank_dif -37.0
points_by_rank 0.025
team_points 1
country_classification Classe S
Name: 2496, dtype: object
date 2021-10-12 00:00:00
team Albania
score 0.0
suf_score 1.0
rank 66.0
rank_suf 24.0
rank_change -3.0
total_points 1368.73
result 1
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2497, dtype: object
date 2021-10-12 00:00:00
team San Marino
score 0.0
suf_score 3.0
rank 210.0
rank_suf 156.0
rank_change 1.0
total_points 791.17
result 1
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2498, dtype: object
date 2021-10-12 00:00:00
team Niger
score 0.0
suf_score 4.0
rank 119.0
rank_suf 30.0
rank_change 2.0
total_points 1156.17
result 1
rank_dif 89.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2499, dtype: object
date 2021-10-12 00:00:00
team Zimbabwe
score 0.0
suf_score 1.0
rank 113.0
rank_suf 53.0
rank_change 5.0
total_points 1160.91
result 1
rank_dif 60.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2500, dtype: object
date 2021-10-12 00:00:00
team South Africa
score 1.0
suf_score 0.0
rank 73.0
rank_suf 134.0
rank_change 0.0
total_points 1348.6
result 0
rank_dif -61.0
points_by_rank 0.022388
team_points 3
country_classification Classe B
Name: 2501, dtype: object
date 2021-10-12 00:00:00
team Namibia
score 1.0
suf_score 3.0
rank 106.0
rank_suf 20.0
rank_change -1.0
total_points 1185.12
result 1
rank_dif 86.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2502, dtype: object
date 2021-10-12 00:00:00
team Congo
score 1.0
suf_score 2.0
rank 92.0
rank_suf 136.0
rank_change -1.0
total_points 1247.81
result 1
rank_dif -44.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2503, dtype: object
date 2021-10-12 00:00:00
team Bahrain
score 0.0
suf_score 1.0
rank 91.0
rank_suf 121.0
rank_change -3.0
total_points 1251.31
result 1
rank_dif -30.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2504, dtype: object
date 2021-10-12 00:00:00
team Jordan
score 3.0
suf_score 0.0
rank 93.0
rank_suf 84.0
rank_change -2.0
total_points 1245.64
result 0
rank_dif 9.0
points_by_rank 0.035714
team_points 3
country_classification Classe B
Name: 2505, dtype: object
date 2021-10-12 00:00:00
team Republic of Ireland
score 4.0
suf_score 0.0
rank 50.0
rank_suf 43.0
rank_change 3.0
total_points 1418.7
result 0
rank_dif 7.0
points_by_rank 0.069767
team_points 3
country_classification Classe A
Name: 2506, dtype: object
date 2021-10-12 00:00:00
team South Sudan
score 1.0
suf_score 2.0
rank 165.0
rank_suf 149.0
rank_change 0.0
total_points 982.84
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2507, dtype: object
date 2021-10-12 00:00:00
team Cambodia
score 2.0
suf_score 1.0
rank 178.0
rank_suf 203.0
rank_change -1.0
total_points 950.26
result 0
rank_dif -25.0
points_by_rank 0.014778
team_points 3
country_classification Classe D
Name: 2508, dtype: object
date 2021-10-12 00:00:00
team Morocco
score 4.0
suf_score 1.0
rank 33.0
rank_suf 76.0
rank_change 1.0
total_points 1493.23
result 0
rank_dif -43.0
points_by_rank 0.039474
team_points 3
country_classification Classe A
Name: 2509, dtype: object
date 2021-10-13 00:00:00
team Honduras
score 0.0
suf_score 2.0
rank 63.0
rank_suf 59.0
rank_change 0.0
total_points 1371.61
result 1
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2510, dtype: object
date 2021-10-13 00:00:00
team United States
score 2.0
suf_score 1.0
rank 13.0
rank_suf 44.0
rank_change 3.0
total_points 1643.1
result 0
rank_dif -31.0
points_by_rank 0.068182
team_points 3
country_classification Classe S-
Name: 2511, dtype: object
date 2021-10-13 00:00:00
team Canada
score 4.0
suf_score 1.0
rank 51.0
rank_suf 68.0
rank_change -8.0
total_points 1416.23
result 0
rank_dif -17.0
points_by_rank 0.044118
team_points 3
country_classification Classe A
Name: 2512, dtype: object
date 2021-10-13 00:00:00
team El Salvador
score 0.0
suf_score 2.0
rank 65.0
rank_suf 9.0
rank_change 1.0
total_points 1369.73
result 1
rank_dif 56.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2513, dtype: object
date 2021-10-13 00:00:00
team Bangladesh
score 1.0
suf_score 1.0
rank 189.0
rank_suf 168.0
rank_change 1.0
total_points 906.84
result 2
rank_dif 21.0
points_by_rank 0.005952
team_points 1
country_classification Classe D
Name: 2514, dtype: object
date 2021-10-13 00:00:00
team Maldives
score 1.0
suf_score 3.0
rank 158.0
rank_suf 107.0
rank_change 0.0
total_points 1028.3
result 1
rank_dif 51.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2515, dtype: object
date 2021-10-14 00:00:00
team Bolivia
score 4.0
suf_score 0.0
rank 83.0
rank_suf 35.0
rank_change 1.0
total_points 1283.65
result 0
rank_dif 48.0
points_by_rank 0.085714
team_points 3
country_classification Classe B
Name: 2516, dtype: object
date 2021-10-14 00:00:00
team Colombia
score 0.0
suf_score 0.0
rank 16.0
rank_suf 52.0
rank_change 1.0
total_points 1618.4
result 2
rank_dif -36.0
points_by_rank 0.019231
team_points 1
country_classification Classe S-
Name: 2517, dtype: object
date 2021-10-14 00:00:00
team Argentina
score 1.0
suf_score 0.0
rank 6.0
rank_suf 21.0
rank_change 0.0
total_points 1725.31
result 0
rank_dif -15.0
points_by_rank 0.142857
team_points 3
country_classification Classe S
Name: 2518, dtype: object
date 2021-10-14 00:00:00
team Brazil
score 4.0
suf_score 1.0
rank 2.0
rank_suf 12.0
rank_change 0.0
total_points 1811.73
result 0
rank_dif -10.0
points_by_rank 0.25
team_points 3
country_classification Classe S
Name: 2519, dtype: object
date 2021-10-14 00:00:00
team Chile
score 3.0
suf_score 0.0
rank 23.0
rank_suf 49.0
rank_change 3.0
total_points 1536.53
result 0
rank_dif -26.0
points_by_rank 0.061224
team_points 3
country_classification Classe A
Name: 2520, dtype: object
date 2021-10-16 00:00:00
team India
score 3.0
suf_score 0.0
rank 107.0
rank_suf 168.0
rank_change 2.0
total_points 1181.45
result 0
rank_dif -61.0
points_by_rank 0.017857
team_points 3
country_classification Classe C
Name: 2521, dtype: object
date 2021-10-27 00:00:00
team Mexico
score 2.0
suf_score 3.0
rank 9.0
rank_suf 55.0
rank_change 0.0
total_points 1672.92
result 1
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2522, dtype: object
date 2021-11-05 00:00:00
team El Salvador
score 0.0
suf_score 1.0
rank 65.0
rank_suf 78.0
rank_change 0.0
total_points 1364.7
result 1
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2523, dtype: object
date 2021-11-09 00:00:00
team Sri Lanka
score 4.0
suf_score 4.0
rank 204.0
rank_suf 156.0
rank_change -1.0
total_points 840.11
result 2
rank_dif 48.0
points_by_rank 0.00641
team_points 1
country_classification Classe D
Name: 2524, dtype: object
date 2021-11-10 00:00:00
team Kosovo
score 0.0
suf_score 2.0
rank 113.0
rank_suf 90.0
rank_change 4.0
total_points 1161.19
result 1
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2525, dtype: object
date 2021-11-10 00:00:00
team Nicaragua
score 0.0
suf_score 3.0
rank 143.0
rank_suf 179.0
rank_change 0.0
total_points 1064.32
result 1
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2526, dtype: object
date 2021-11-10 00:00:00
team Bangladesh
score 1.0
suf_score 1.0
rank 187.0
rank_suf 199.0
rank_change -2.0
total_points 907.84
result 2
rank_dif -12.0
points_by_rank 0.005025
team_points 1
country_classification Classe D
Name: 2527, dtype: object
date 2021-11-11 00:00:00
team Czech Republic
score 7.0
suf_score 0.0
rank 31.0
rank_suf 142.0
rank_change 0.0
total_points 1503.23
result 0
rank_dif -111.0
points_by_rank 0.021127
team_points 3
country_classification Classe A
Name: 2528, dtype: object
date 2021-11-11 00:00:00
team Serbia
score 4.0
suf_score 0.0
rank 25.0
rank_suf 46.0
rank_change -3.0
total_points 1527.34
result 0
rank_dif -21.0
points_by_rank 0.065217
team_points 3
country_classification Classe A
Name: 2529, dtype: object
date 2021-11-11 00:00:00
team Ukraine
score 1.0
suf_score 1.0
rank 26.0
rank_suf 70.0
rank_change -1.0
total_points 1527.12
result 2
rank_dif -44.0
points_by_rank 0.014286
team_points 1
country_classification Classe A
Name: 2530, dtype: object
date 2021-11-11 00:00:00
team Uganda
score 1.0
suf_score 1.0
rank 82.0
rank_suf 104.0
rank_change -4.0
total_points 1297.43
result 2
rank_dif -22.0
points_by_rank 0.009615
team_points 1
country_classification Classe B
Name: 2531, dtype: object
date 2021-11-11 00:00:00
team Rwanda
score 0.0
suf_score 3.0
rank 133.0
rank_suf 57.0
rank_change 5.0
total_points 1111.79
result 1
rank_dif 76.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2532, dtype: object
date 2021-11-11 00:00:00
team Ethiopia
score 1.0
suf_score 1.0
rank 137.0
rank_suf 52.0
rank_change 3.0
total_points 1079.37
result 2
rank_dif 85.0
points_by_rank 0.019231
team_points 1
country_classification Classe C
Name: 2533, dtype: object
date 2021-11-11 00:00:00
team South Africa
score 1.0
suf_score 0.0
rank 66.0
rank_suf 118.0
rank_change -7.0
total_points 1361.97
result 0
rank_dif -52.0
points_by_rank 0.025424
team_points 3
country_classification Classe B
Name: 2534, dtype: object
date 2021-11-11 00:00:00
team Congo
score 1.0
suf_score 1.0
rank 97.0
rank_suf 108.0
rank_change 5.0
total_points 1228.16
result 2
rank_dif -11.0
points_by_rank 0.009259
team_points 1
country_classification Classe B
Name: 2535, dtype: object
date 2021-11-11 00:00:00
team Togo
score 1.0
suf_score 1.0
rank 134.0
rank_suf 20.0
rank_change -2.0
total_points 1110.59
result 2
rank_dif 114.0
points_by_rank 0.05
team_points 1
country_classification Classe C
Name: 2536, dtype: object
date 2021-11-11 00:00:00
team Benin
score 2.0
suf_score 0.0
rank 83.0
rank_suf 99.0
rank_change 1.0
total_points 1282.34
result 0
rank_dif -16.0
points_by_rank 0.030303
team_points 3
country_classification Classe B
Name: 2537, dtype: object
date 2021-11-11 00:00:00
team Lebanon
score 1.0
suf_score 2.0
rank 92.0
rank_suf 22.0
rank_change -5.0
total_points 1250.08
result 1
rank_dif 70.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2538, dtype: object
date 2021-11-11 00:00:00
team Iraq
score 1.0
suf_score 1.0
rank 72.0
rank_suf 85.0
rank_change 0.0
total_points 1346.2
result 2
rank_dif -13.0
points_by_rank 0.011765
team_points 1
country_classification Classe B
Name: 2539, dtype: object
date 2021-11-11 00:00:00
team South Korea
score 1.0
suf_score 0.0
rank 35.0
rank_suf 71.0
rank_change -1.0
total_points 1489.1
result 0
rank_dif -36.0
points_by_rank 0.042254
team_points 3
country_classification Classe A
Name: 2540, dtype: object
date 2021-11-11 00:00:00
team China PR
score 1.0
suf_score 1.0
rank 75.0
rank_suf 77.0
rank_change 0.0
total_points 1334.2
result 2
rank_dif -2.0
points_by_rank 0.012987
team_points 1
country_classification Classe B
Name: 2541, dtype: object
date 2021-11-11 00:00:00
team Vietnam
score 0.0
suf_score 1.0
rank 98.0
rank_suf 28.0
rank_change 3.0
total_points 1222.9
result 1
rank_dif 70.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2542, dtype: object
date 2021-11-11 00:00:00
team Australia
score 0.0
suf_score 0.0
rank 34.0
rank_suf 49.0
rank_change 2.0
total_points 1489.86
result 2
rank_dif -15.0
points_by_rank 0.020408
team_points 1
country_classification Classe A
Name: 2543, dtype: object
date 2021-11-11 00:00:00
team Republic of Ireland
score 0.0
suf_score 0.0
rank 51.0
rank_suf 8.0
rank_change 1.0
total_points 1430.59
result 2
rank_dif 43.0
points_by_rank 0.125
team_points 1
country_classification Classe A
Name: 2544, dtype: object
date 2021-11-11 00:00:00
team Azerbaijan
score 1.0
suf_score 3.0
rank 119.0
rank_suf 94.0
rank_change 2.0
total_points 1146.87
result 1
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2545, dtype: object
date 2021-11-11 00:00:00
team Georgia
score 2.0
suf_score 0.0
rank 93.0
rank_suf 17.0
rank_change -3.0
total_points 1243.88
result 0
rank_dif 76.0
points_by_rank 0.176471
team_points 3
country_classification Classe B
Name: 2546, dtype: object
date 2021-11-11 00:00:00
team Greece
score 0.0
suf_score 1.0
rank 47.0
rank_suf 7.0
rank_change 1.0
total_points 1434.83
result 1
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2547, dtype: object
date 2021-11-11 00:00:00
team Russia
score 6.0
suf_score 0.0
rank 33.0
rank_suf 103.0
rank_change -4.0
total_points 1497.45
result 0
rank_dif -70.0
points_by_rank 0.029126
team_points 3
country_classification Classe A
Name: 2548, dtype: object
date 2021-11-11 00:00:00
team Malta
score 1.0
suf_score 7.0
rank 173.0
rank_suf 18.0
rank_change 2.0
total_points 964.21
result 1
rank_dif 155.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2549, dtype: object
date 2021-11-11 00:00:00
team Slovakia
score 2.0
suf_score 2.0
rank 40.0
rank_suf 64.0
rank_change 2.0
total_points 1454.16
result 2
rank_dif -24.0
points_by_rank 0.015625
team_points 1
country_classification Classe A
Name: 2550, dtype: object
date 2021-11-11 00:00:00
team Germany
score 9.0
suf_score 0.0
rank 12.0
rank_suf 190.0
rank_change -2.0
total_points 1642.47
result 0
rank_dif -178.0
points_by_rank 0.015789
team_points 3
country_classification Classe S-
Name: 2551, dtype: object
date 2021-11-11 00:00:00
team Armenia
score 0.0
suf_score 5.0
rank 89.0
rank_suf 74.0
rank_change 0.0
total_points 1257.17
result 1
rank_dif 15.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2552, dtype: object
date 2021-11-11 00:00:00
team Romania
score 0.0
suf_score 0.0
rank 41.0
rank_suf 62.0
rank_change -1.0
total_points 1451.76
result 2
rank_dif -21.0
points_by_rank 0.016129
team_points 1
country_classification Classe A
Name: 2553, dtype: object
date 2021-11-11 00:00:00
team Ecuador
score 1.0
suf_score 0.0
rank 55.0
rank_suf 50.0
rank_change 3.0
total_points 1416.93
result 0
rank_dif 5.0
points_by_rank 0.06
team_points 3
country_classification Classe A
Name: 2554, dtype: object
date 2021-11-11 00:00:00
team Paraguay
score 0.0
suf_score 1.0
rank 38.0
rank_suf 21.0
rank_change 3.0
total_points 1461.28
result 1
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2555, dtype: object
date 2021-11-11 00:00:00
team Peru
score 3.0
suf_score 0.0
rank 24.0
rank_suf 78.0
rank_change 3.0
total_points 1534.06
result 0
rank_dif -54.0
points_by_rank 0.038462
team_points 3
country_classification Classe A
Name: 2556, dtype: object
date 2021-11-11 00:00:00
team Brazil
score 1.0
suf_score 0.0
rank 2.0
rank_suf 16.0
rank_change 0.0
total_points 1820.36
result 0
rank_dif -14.0
points_by_rank 0.1875
team_points 3
country_classification Classe S
Name: 2557, dtype: object
date 2021-11-12 00:00:00
team Burkina Faso
score 1.0
suf_score 1.0
rank 61.0
rank_suf 121.0
rank_change -1.0
total_points 1400.56
result 2
rank_dif -60.0
points_by_rank 0.008264
team_points 1
country_classification Classe A
Name: 2558, dtype: object
date 2021-11-12 00:00:00
team Djibouti
score 0.0
suf_score 4.0
rank 188.0
rank_suf 30.0
rank_change 3.0
total_points 905.83
result 1
rank_dif 158.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2559, dtype: object
date 2021-11-12 00:00:00
team Gabon
score 1.0
suf_score 0.0
rank 88.0
rank_suf 112.0
rank_change 0.0
total_points 1260.39
result 0
rank_dif -24.0
points_by_rank 0.026786
team_points 3
country_classification Classe B
Name: 2560, dtype: object
date 2021-11-12 00:00:00
team Angola
score 2.0
suf_score 2.0
rank 129.0
rank_suf 44.0
rank_change 0.0
total_points 1124.33
result 2
rank_dif 85.0
points_by_rank 0.022727
team_points 1
country_classification Classe C
Name: 2561, dtype: object
date 2021-11-12 00:00:00
team Guinea
score 0.0
suf_score 0.0
rank 79.0
rank_suf 109.0
rank_change 3.0
total_points 1309.15
result 2
rank_dif -30.0
points_by_rank 0.009174
team_points 1
country_classification Classe B
Name: 2562, dtype: object
date 2021-11-12 00:00:00
team Morocco
score 3.0
suf_score 0.0
rank 29.0
rank_suf 123.0
rank_change -4.0
total_points 1513.0
result 0
rank_dif -94.0
points_by_rank 0.02439
team_points 3
country_classification Classe A
Name: 2563, dtype: object
date 2021-11-12 00:00:00
team Canada
score 1.0
suf_score 0.0
rank 48.0
rank_suf 45.0
rank_change -3.0
total_points 1432.34
result 0
rank_dif 3.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 2564, dtype: object
date 2021-11-12 00:00:00
team Honduras
score 2.0
suf_score 3.0
rank 68.0
rank_suf 69.0
rank_change 5.0
total_points 1355.17
result 1
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2565, dtype: object
date 2021-11-12 00:00:00
team El Salvador
score 1.0
suf_score 1.0
rank 65.0
rank_suf 59.0
rank_change 0.0
total_points 1364.7
result 2
rank_dif 6.0
points_by_rank 0.016949
team_points 1
country_classification Classe B
Name: 2566, dtype: object
date 2021-11-12 00:00:00
team United States
score 2.0
suf_score 0.0
rank 13.0
rank_suf 9.0
rank_change 0.0
total_points 1639.42
result 0
rank_dif 4.0
points_by_rank 0.333333
team_points 3
country_classification Classe S-
Name: 2567, dtype: object
date 2021-11-12 00:00:00
team Northern Ireland
score 1.0
suf_score 0.0
rank 58.0
rank_suf 135.0
rank_change 11.0
total_points 1412.21
result 0
rank_dif -77.0
points_by_rank 0.022222
team_points 3
country_classification Classe A
Name: 2568, dtype: object
date 2021-11-12 00:00:00
team Italy
score 1.0
suf_score 1.0
rank 4.0
rank_suf 14.0
rank_change -1.0
total_points 1750.52
result 2
rank_dif -10.0
points_by_rank 0.071429
team_points 1
country_classification Classe S
Name: 2569, dtype: object
date 2021-11-12 00:00:00
team Moldova
score 0.0
suf_score 2.0
rank 181.0
rank_suf 42.0
rank_change 1.0
total_points 933.81
result 1
rank_dif 139.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2570, dtype: object
date 2021-11-12 00:00:00
team Denmark
score 3.0
suf_score 1.0
rank 10.0
rank_suf 116.0
rank_change 0.0
total_points 1668.98
result 0
rank_dif -106.0
points_by_rank 0.025862
team_points 3
country_classification Classe S-
Name: 2571, dtype: object
date 2021-11-12 00:00:00
team Austria
score 4.0
suf_score 2.0
rank 32.0
rank_suf 80.0
rank_change 3.0
total_points 1501.09
result 0
rank_dif -48.0
points_by_rank 0.0375
team_points 3
country_classification Classe A
Name: 2572, dtype: object
date 2021-11-12 00:00:00
team England
score 5.0
suf_score 0.0
rank 5.0
rank_suf 63.0
rank_change 2.0
total_points 1750.16
result 0
rank_dif -58.0
points_by_rank 0.047619
team_points 3
country_classification Classe S
Name: 2573, dtype: object
date 2021-11-12 00:00:00
team Andorra
score 1.0
suf_score 4.0
rank 153.0
rank_suf 23.0
rank_change -3.0
total_points 1038.88
result 1
rank_dif 130.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2574, dtype: object
date 2021-11-12 00:00:00
team Hungary
score 4.0
suf_score 0.0
rank 43.0
rank_suf 210.0
rank_change 3.0
total_points 1449.08
result 0
rank_dif -167.0
points_by_rank 0.014286
team_points 3
country_classification Classe A
Name: 2575, dtype: object
date 2021-11-12 00:00:00
team Uruguay
score 0.0
suf_score 1.0
rank 15.0
rank_suf 6.0
rank_change 3.0
total_points 1625.67
result 1
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2576, dtype: object
date 2021-11-13 00:00:00
team Burundi
score 2.0
suf_score 1.0
rank 141.0
rank_suf 145.0
rank_change 0.0
total_points 1070.95
result 0
rank_dif -4.0
points_by_rank 0.02069
team_points 3
country_classification Classe C
Name: 2577, dtype: object
date 2021-11-13 00:00:00
team Nicaragua
score 2.0
suf_score 0.0
rank 143.0
rank_suf 179.0
rank_change 0.0
total_points 1064.32
result 0
rank_dif -36.0
points_by_rank 0.01676
team_points 3
country_classification Classe C
Name: 2578, dtype: object
date 2021-11-13 00:00:00
team Sierra Leone
score 0.0
suf_score 2.0
rank 107.0
rank_suf 132.0
rank_change -1.0
total_points 1179.76
result 1
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2579, dtype: object
date 2021-11-13 00:00:00
team Bangladesh
score 2.0
suf_score 1.0
rank 187.0
rank_suf 156.0
rank_change -2.0
total_points 907.84
result 0
rank_dif 31.0
points_by_rank 0.019231
team_points 3
country_classification Classe D
Name: 2580, dtype: object
date 2021-11-13 00:00:00
team Sri Lanka
score 0.0
suf_score 1.0
rank 204.0
rank_suf 199.0
rank_change -1.0
total_points 840.11
result 1
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2581, dtype: object
date 2021-11-13 00:00:00
team Zambia
score 4.0
suf_score 0.0
rank 87.0
rank_suf 102.0
rank_change 2.0
total_points 1260.8
result 0
rank_dif -15.0
points_by_rank 0.029412
team_points 3
country_classification Classe B
Name: 2582, dtype: object
date 2021-11-13 00:00:00
team Equatorial Guinea
score 1.0
suf_score 0.0
rank 126.0
rank_suf 27.0
rank_change -5.0
total_points 1135.52
result 0
rank_dif 99.0
points_by_rank 0.111111
team_points 3
country_classification Classe C
Name: 2583, dtype: object
date 2021-11-13 00:00:00
team Liberia
score 0.0
suf_score 2.0
rank 150.0
rank_suf 36.0
rank_change 6.0
total_points 1047.46
result 1
rank_dif 114.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2584, dtype: object
date 2021-11-13 00:00:00
team Malawi
score 0.0
suf_score 4.0
rank 120.0
rank_suf 54.0
rank_change 5.0
total_points 1146.25
result 1
rank_dif 66.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2585, dtype: object
date 2021-11-13 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 3.0
rank 56.0
rank_suf 60.0
rank_change -1.0
total_points 1414.92
result 1
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2586, dtype: object
date 2021-11-13 00:00:00
team France
score 8.0
suf_score 0.0
rank 3.0
rank_suf 125.0
rank_change -1.0
total_points 1779.24
result 0
rank_dif -122.0
points_by_rank 0.024
team_points 3
country_classification Classe S
Name: 2587, dtype: object
date 2021-11-13 00:00:00
team Wales
score 5.0
suf_score 1.0
rank 19.0
rank_suf 95.0
rank_change 0.0
total_points 1566.77
result 0
rank_dif -76.0
points_by_rank 0.031579
team_points 3
country_classification Classe A
Name: 2588, dtype: object
date 2021-11-13 00:00:00
team Belgium
score 3.0
suf_score 1.0
rank 1.0
rank_suf 105.0
rank_change 0.0
total_points 1832.33
result 0
rank_dif -104.0
points_by_rank 0.028571
team_points 3
country_classification Classe S
Name: 2589, dtype: object
date 2021-11-13 00:00:00
team Norway
score 0.0
suf_score 0.0
rank 37.0
rank_suf 136.0
rank_change -2.0
total_points 1471.62
result 2
rank_dif -99.0
points_by_rank 0.007353
team_points 1
country_classification Classe A
Name: 2590, dtype: object
date 2021-11-13 00:00:00
team Turkey
score 6.0
suf_score 0.0
rank 39.0
rank_suf 198.0
rank_change -2.0
total_points 1460.53
result 0
rank_dif -159.0
points_by_rank 0.015152
team_points 3
country_classification Classe A
Name: 2591, dtype: object
date 2021-11-13 00:00:00
team Montenegro
score 2.0
suf_score 2.0
rank 73.0
rank_suf 11.0
rank_change 2.0
total_points 1346.19
result 2
rank_dif 62.0
points_by_rank 0.090909
team_points 1
country_classification Classe B
Name: 2592, dtype: object
date 2021-11-14 00:00:00
team Azerbaijan
score 2.0
suf_score 2.0
rank 119.0
rank_suf 46.0
rank_change 2.0
total_points 1146.87
result 2
rank_dif 73.0
points_by_rank 0.021739
team_points 1
country_classification Classe C
Name: 2593, dtype: object
date 2021-11-14 00:00:00
team Nicaragua
score 2.0
suf_score 0.0
rank 143.0
rank_suf 179.0
rank_change 0.0
total_points 1064.32
result 0
rank_dif -36.0
points_by_rank 0.01676
team_points 3
country_classification Classe C
Name: 2594, dtype: object
date 2021-11-14 00:00:00
team Mali
score 1.0
suf_score 0.0
rank 57.0
rank_suf 82.0
rank_change -4.0
total_points 1412.39
result 0
rank_dif -25.0
points_by_rank 0.036585
team_points 3
country_classification Classe A
Name: 2595, dtype: object
date 2021-11-14 00:00:00
team Zimbabwe
score 1.0
suf_score 1.0
rank 118.0
rank_suf 137.0
rank_change 5.0
total_points 1147.34
result 2
rank_dif -19.0
points_by_rank 0.007299
team_points 1
country_classification Classe C
Name: 2596, dtype: object
date 2021-11-14 00:00:00
team Ghana
score 1.0
suf_score 0.0
rank 52.0
rank_suf 66.0
rank_change -1.0
total_points 1424.87
result 0
rank_dif -14.0
points_by_rank 0.045455
team_points 3
country_classification Classe A
Name: 2597, dtype: object
date 2021-11-14 00:00:00
team Senegal
score 2.0
suf_score 0.0
rank 20.0
rank_suf 97.0
rank_change 0.0
total_points 1564.95
result 0
rank_dif -77.0
points_by_rank 0.030928
team_points 3
country_classification Classe A
Name: 2598, dtype: object
date 2021-11-14 00:00:00
team Madagascar
score 1.0
suf_score 1.0
rank 99.0
rank_suf 130.0
rank_change -1.0
total_points 1218.76
result 2
rank_dif -31.0
points_by_rank 0.007692
team_points 1
country_classification Classe B
Name: 2599, dtype: object
date 2021-11-14 00:00:00
team Portugal
score 1.0
suf_score 2.0
rank 8.0
rank_suf 25.0
rank_change 1.0
total_points 1681.73
result 1
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2600, dtype: object
date 2021-11-14 00:00:00
team Luxembourg
score 0.0
suf_score 3.0
rank 94.0
rank_suf 51.0
rank_change 0.0
total_points 1234.13
result 1
rank_dif 43.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2601, dtype: object
date 2021-11-14 00:00:00
team Spain
score 1.0
suf_score 0.0
rank 7.0
rank_suf 17.0
rank_change -1.0
total_points 1687.66
result 0
rank_dif -10.0
points_by_rank 0.176471
team_points 3
country_classification Classe S-
Name: 2602, dtype: object
date 2021-11-14 00:00:00
team Greece
score 1.0
suf_score 1.0
rank 47.0
rank_suf 113.0
rank_change 1.0
total_points 1434.83
result 2
rank_dif -66.0
points_by_rank 0.00885
team_points 1
country_classification Classe A
Name: 2603, dtype: object
date 2021-11-14 00:00:00
team Croatia
score 1.0
suf_score 0.0
rank 18.0
rank_suf 33.0
rank_change 1.0
total_points 1608.84
result 0
rank_dif -15.0
points_by_rank 0.090909
team_points 3
country_classification Classe S-
Name: 2604, dtype: object
date 2021-11-14 00:00:00
team Malta
score 0.0
suf_score 6.0
rank 173.0
rank_suf 40.0
rank_change 2.0
total_points 964.21
result 1
rank_dif 133.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2605, dtype: object
date 2021-11-14 00:00:00
team Slovenia
score 2.0
suf_score 1.0
rank 64.0
rank_suf 103.0
rank_change 0.0
total_points 1364.96
result 0
rank_dif -39.0
points_by_rank 0.029126
team_points 3
country_classification Classe B
Name: 2606, dtype: object
date 2021-11-14 00:00:00
team Liechtenstein
score 0.0
suf_score 2.0
rank 190.0
rank_suf 41.0
rank_change 2.0
total_points 903.63
result 1
rank_dif 149.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2607, dtype: object
date 2021-11-14 00:00:00
team North Macedonia
score 3.0
suf_score 1.0
rank 74.0
rank_suf 62.0
rank_change 0.0
total_points 1343.19
result 0
rank_dif 12.0
points_by_rank 0.048387
team_points 3
country_classification Classe B
Name: 2608, dtype: object
date 2021-11-14 00:00:00
team Armenia
score 1.0
suf_score 4.0
rank 89.0
rank_suf 12.0
rank_change 0.0
total_points 1257.17
result 1
rank_dif 77.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2609, dtype: object
date 2021-11-15 00:00:00
team Georgia
score 1.0
suf_score 0.0
rank 93.0
rank_suf 84.0
rank_change -3.0
total_points 1243.88
result 0
rank_dif 9.0
points_by_rank 0.035714
team_points 3
country_classification Classe B
Name: 2610, dtype: object
date 2021-11-15 00:00:00
team Lithuania
score 1.0
suf_score 1.0
rank 135.0
rank_suf 142.0
rank_change -2.0
total_points 1097.8
result 2
rank_dif -7.0
points_by_rank 0.007042
team_points 1
country_classification Classe C
Name: 2611, dtype: object
date 2021-11-15 00:00:00
team Niger
score 7.0
suf_score 2.0
rank 121.0
rank_suf 188.0
rank_change 2.0
total_points 1145.75
result 0
rank_dif -67.0
points_by_rank 0.015957
team_points 3
country_classification Classe C
Name: 2612, dtype: object
date 2021-11-15 00:00:00
team Kenya
score 2.0
suf_score 1.0
rank 104.0
rank_suf 133.0
rank_change 2.0
total_points 1189.24
result 0
rank_dif -29.0
points_by_rank 0.022556
team_points 3
country_classification Classe C
Name: 2613, dtype: object
date 2021-11-15 00:00:00
team Namibia
score 0.0
suf_score 1.0
rank 108.0
rank_suf 134.0
rank_change 2.0
total_points 1175.54
result 1
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2614, dtype: object
date 2021-11-15 00:00:00
team Guinea-Bissau
score 0.0
suf_score 0.0
rank 109.0
rank_suf 123.0
rank_change 4.0
total_points 1175.03
result 2
rank_dif -14.0
points_by_rank 0.00813
team_points 1
country_classification Classe C
Name: 2615, dtype: object
date 2021-11-15 00:00:00
team Northern Ireland
score 0.0
suf_score 0.0
rank 58.0
rank_suf 4.0
rank_change 11.0
total_points 1412.21
result 2
rank_dif 54.0
points_by_rank 0.25
team_points 1
country_classification Classe A
Name: 2616, dtype: object
date 2021-11-15 00:00:00
team Switzerland
score 4.0
suf_score 0.0
rank 14.0
rank_suf 70.0
rank_change -1.0
total_points 1633.8
result 0
rank_dif -56.0
points_by_rank 0.042857
team_points 3
country_classification Classe S-
Name: 2617, dtype: object
date 2021-11-15 00:00:00
team Scotland
score 2.0
suf_score 0.0
rank 42.0
rank_suf 10.0
rank_change -3.0
total_points 1451.37
result 0
rank_dif 32.0
points_by_rank 0.3
team_points 3
country_classification Classe A
Name: 2618, dtype: object
date 2021-11-15 00:00:00
team Austria
score 4.0
suf_score 1.0
rank 32.0
rank_suf 181.0
rank_change 3.0
total_points 1501.09
result 0
rank_dif -149.0
points_by_rank 0.016575
team_points 3
country_classification Classe A
Name: 2619, dtype: object
date 2021-11-15 00:00:00
team Israel
score 3.0
suf_score 2.0
rank 80.0
rank_suf 116.0
rank_change 0.0
total_points 1305.76
result 0
rank_dif -36.0
points_by_rank 0.025862
team_points 3
country_classification Classe B
Name: 2620, dtype: object
date 2021-11-15 00:00:00
team Albania
score 1.0
suf_score 0.0
rank 63.0
rank_suf 153.0
rank_change -3.0
total_points 1374.33
result 0
rank_dif -90.0
points_by_rank 0.019608
team_points 3
country_classification Classe B
Name: 2621, dtype: object
date 2021-11-15 00:00:00
team Poland
score 1.0
suf_score 2.0
rank 23.0
rank_suf 43.0
rank_change -1.0
total_points 1542.2
result 1
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2622, dtype: object
date 2021-11-15 00:00:00
team San Marino
score 0.0
suf_score 10.0
rank 210.0
rank_suf 5.0
rank_change 0.0
total_points 782.71
result 1
rank_dif 205.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2623, dtype: object
date 2021-11-16 00:00:00
team Belarus
score 1.0
suf_score 0.0
rank 95.0
rank_suf 90.0
rank_change 5.0
total_points 1233.59
result 0
rank_dif 5.0
points_by_rank 0.033333
team_points 3
country_classification Classe B
Name: 2624, dtype: object
date 2021-11-16 00:00:00
team Kazakhstan
score 1.0
suf_score 0.0
rank 125.0
rank_suf 114.0
rank_change 5.0
total_points 1137.46
result 0
rank_dif 11.0
points_by_rank 0.026316
team_points 3
country_classification Classe C
Name: 2625, dtype: object
date 2021-11-16 00:00:00
team New Zealand
score 2.0
suf_score 0.0
rank 111.0
rank_suf 147.0
rank_change -10.0
total_points 1161.83
result 0
rank_dif -36.0
points_by_rank 0.020408
team_points 3
country_classification Classe C
Name: 2626, dtype: object
date 2021-11-16 00:00:00
team Indonesia
score 0.0
suf_score 1.0
rank 165.0
rank_suf 152.0
rank_change -10.0
total_points 985.61
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2627, dtype: object
date 2021-11-16 00:00:00
team Maldives
score 0.0
suf_score 0.0
rank 156.0
rank_suf 199.0
rank_change -2.0
total_points 1030.92
result 2
rank_dif -43.0
points_by_rank 0.005025
team_points 1
country_classification Classe C
Name: 2628, dtype: object
date 2021-11-16 00:00:00
team Sri Lanka
score 2.0
suf_score 1.0
rank 204.0
rank_suf 187.0
rank_change -1.0
total_points 840.11
result 0
rank_dif 17.0
points_by_rank 0.016043
team_points 3
country_classification Classe D
Name: 2629, dtype: object
date 2021-11-16 00:00:00
team Algeria
score 2.0
suf_score 2.0
rank 30.0
rank_suf 61.0
rank_change 0.0
total_points 1509.04
result 2
rank_dif -31.0
points_by_rank 0.016393
team_points 1
country_classification Classe A
Name: 2630, dtype: object
date 2021-11-16 00:00:00
team Mauritania
score 1.0
suf_score 1.0
rank 102.0
rank_suf 126.0
rank_change -2.0
total_points 1202.17
result 2
rank_dif -24.0
points_by_rank 0.007937
team_points 1
country_classification Classe B
Name: 2631, dtype: object
date 2021-11-16 00:00:00
team Tunisia
score 3.0
suf_score 1.0
rank 27.0
rank_suf 87.0
rank_change 2.0
total_points 1525.3
result 0
rank_dif -60.0
points_by_rank 0.034483
team_points 3
country_classification Classe A
Name: 2632, dtype: object
date 2021-11-16 00:00:00
team Liberia
score 3.0
suf_score 1.0
rank 150.0
rank_suf 115.0
rank_change 6.0
total_points 1047.46
result 0
rank_dif 35.0
points_by_rank 0.026087
team_points 3
country_classification Classe C
Name: 2633, dtype: object
date 2021-11-16 00:00:00
team Mozambique
score 1.0
suf_score 0.0
rank 122.0
rank_suf 120.0
rank_change 6.0
total_points 1144.85
result 0
rank_dif 2.0
points_by_rank 0.025
team_points 3
country_classification Classe C
Name: 2634, dtype: object
date 2021-11-16 00:00:00
team Egypt
score 2.0
suf_score 1.0
rank 44.0
rank_suf 88.0
rank_change -4.0
total_points 1447.85
result 0
rank_dif -44.0
points_by_rank 0.034091
team_points 3
country_classification Classe A
Name: 2635, dtype: object
date 2021-11-16 00:00:00
team Libya
score 1.0
suf_score 1.0
rank 112.0
rank_suf 129.0
rank_change 2.0
total_points 1161.71
result 2
rank_dif -17.0
points_by_rank 0.007752
team_points 1
country_classification Classe C
Name: 2636, dtype: object
date 2021-11-16 00:00:00
team Morocco
score 3.0
suf_score 0.0
rank 29.0
rank_suf 79.0
rank_change -4.0
total_points 1513.0
result 0
rank_dif -50.0
points_by_rank 0.037975
team_points 3
country_classification Classe A
Name: 2637, dtype: object
date 2021-11-16 00:00:00
team Lebanon
score 0.0
suf_score 1.0
rank 92.0
rank_suf 71.0
rank_change -5.0
total_points 1250.08
result 1
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2638, dtype: object
date 2021-11-16 00:00:00
team Iraq
score 0.0
suf_score 3.0
rank 72.0
rank_suf 35.0
rank_change 0.0
total_points 1346.2
result 1
rank_dif 37.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2639, dtype: object
date 2021-11-16 00:00:00
team Syria
score 0.0
suf_score 3.0
rank 85.0
rank_suf 22.0
rank_change 4.0
total_points 1274.72
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2640, dtype: object
date 2021-11-16 00:00:00
team China PR
score 1.0
suf_score 1.0
rank 75.0
rank_suf 34.0
rank_change 0.0
total_points 1334.2
result 2
rank_dif 41.0
points_by_rank 0.029412
team_points 1
country_classification Classe B
Name: 2641, dtype: object
date 2021-11-16 00:00:00
team Vietnam
score 0.0
suf_score 1.0
rank 98.0
rank_suf 49.0
rank_change 3.0
total_points 1222.9
result 1
rank_dif 49.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2642, dtype: object
date 2021-11-16 00:00:00
team Oman
score 0.0
suf_score 1.0
rank 77.0
rank_suf 28.0
rank_change -1.0
total_points 1314.36
result 1
rank_dif 49.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2643, dtype: object
date 2021-11-16 00:00:00
team Jamaica
score 1.0
suf_score 1.0
rank 59.0
rank_suf 13.0
rank_change 0.0
total_points 1407.72
result 2
rank_dif 46.0
points_by_rank 0.076923
team_points 1
country_classification Classe A
Name: 2644, dtype: object
date 2021-11-16 00:00:00
team Canada
score 2.0
suf_score 1.0
rank 48.0
rank_suf 9.0
rank_change -3.0
total_points 1432.34
result 0
rank_dif 39.0
points_by_rank 0.333333
team_points 3
country_classification Classe A
Name: 2645, dtype: object
date 2021-11-16 00:00:00
team Costa Rica
score 2.0
suf_score 1.0
rank 45.0
rank_suf 68.0
rank_change 1.0
total_points 1439.61
result 0
rank_dif -23.0
points_by_rank 0.044118
team_points 3
country_classification Classe A
Name: 2646, dtype: object
date 2021-11-16 00:00:00
team Panama
score 2.0
suf_score 1.0
rank 69.0
rank_suf 65.0
rank_change 1.0
total_points 1354.42
result 0
rank_dif 4.0
points_by_rank 0.046154
team_points 3
country_classification Classe B
Name: 2647, dtype: object
date 2021-11-16 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 2.0
rank 56.0
rank_suf 26.0
rank_change -1.0
total_points 1414.92
result 1
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2648, dtype: object
date 2021-11-16 00:00:00
team Finland
score 0.0
suf_score 2.0
rank 60.0
rank_suf 3.0
rank_change 5.0
total_points 1403.96
result 1
rank_dif 57.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2649, dtype: object
date 2021-11-16 00:00:00
team Wales
score 1.0
suf_score 1.0
rank 19.0
rank_suf 1.0
rank_change 0.0
total_points 1566.77
result 2
rank_dif 18.0
points_by_rank 1.0
team_points 1
country_classification Classe A
Name: 2650, dtype: object
date 2021-11-16 00:00:00
team Czech Republic
score 2.0
suf_score 0.0
rank 31.0
rank_suf 105.0
rank_change 0.0
total_points 1503.23
result 0
rank_dif -74.0
points_by_rank 0.028571
team_points 3
country_classification Classe A
Name: 2651, dtype: object
date 2021-11-16 00:00:00
team Gibraltar
score 1.0
suf_score 3.0
rank 198.0
rank_suf 136.0
rank_change 1.0
total_points 863.17
result 1
rank_dif 62.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2652, dtype: object
date 2021-11-16 00:00:00
team Montenegro
score 1.0
suf_score 2.0
rank 73.0
rank_suf 39.0
rank_change 2.0
total_points 1346.19
result 1
rank_dif 34.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2653, dtype: object
date 2021-11-16 00:00:00
team Netherlands
score 2.0
suf_score 0.0
rank 11.0
rank_suf 37.0
rank_change 0.0
total_points 1652.01
result 0
rank_dif -26.0
points_by_rank 0.081081
team_points 3
country_classification Classe S-
Name: 2654, dtype: object
date 2021-11-16 00:00:00
team Bolivia
score 3.0
suf_score 0.0
rank 78.0
rank_suf 15.0
rank_change -5.0
total_points 1309.75
result 0
rank_dif 63.0
points_by_rank 0.2
team_points 3
country_classification Classe B
Name: 2655, dtype: object
date 2021-11-16 00:00:00
team Venezuela
score 1.0
suf_score 2.0
rank 50.0
rank_suf 24.0
rank_change 1.0
total_points 1431.51
result 1
rank_dif 26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2656, dtype: object
date 2021-11-16 00:00:00
team Colombia
score 0.0
suf_score 0.0
rank 16.0
rank_suf 38.0
rank_change 0.0
total_points 1618.76
result 2
rank_dif -22.0
points_by_rank 0.026316
team_points 1
country_classification Classe S-
Name: 2657, dtype: object
date 2021-11-16 00:00:00
team Argentina
score 0.0
suf_score 0.0
rank 6.0
rank_suf 2.0
rank_change 0.0
total_points 1738.79
result 2
rank_dif 4.0
points_by_rank 0.5
team_points 1
country_classification Classe S
Name: 2658, dtype: object
date 2021-11-16 00:00:00
team Chile
score 0.0
suf_score 2.0
rank 21.0
rank_suf 55.0
rank_change -2.0
total_points 1546.26
result 1
rank_dif -34.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2659, dtype: object
date 2021-11-19 00:00:00
team Sri Lanka
score 3.0
suf_score 3.0
rank 204.0
rank_suf 197.0
rank_change 0.0
total_points 842.8
result 2
rank_dif 7.0
points_by_rank 0.005076
team_points 1
country_classification Classe D
Name: 2660, dtype: object
date 2021-11-25 00:00:00
team Indonesia
score 4.0
suf_score 1.0
rank 166.0
rank_suf 148.0
rank_change 1.0
total_points 981.18
result 0
rank_dif 18.0
points_by_rank 0.02027
team_points 3
country_classification Classe D
Name: 2661, dtype: object
date 2021-11-30 00:00:00
team Iraq
score 1.0
suf_score 1.0
rank 75.0
rank_suf 78.0
rank_change 3.0
total_points 1335.58
result 2
rank_dif -3.0
points_by_rank 0.012821
team_points 1
country_classification Classe B
Name: 2662, dtype: object
date 2021-11-30 00:00:00
team Qatar
score 1.0
suf_score 0.0
rank 51.0
rank_suf 90.0
rank_change 5.0
total_points 1431.01
result 0
rank_dif -39.0
points_by_rank 0.033333
team_points 3
country_classification Classe A
Name: 2663, dtype: object
date 2021-11-30 00:00:00
team Tunisia
score 5.0
suf_score 1.0
rank 29.0
rank_suf 103.0
rank_change 2.0
total_points 1512.13
result 0
rank_dif -74.0
points_by_rank 0.029126
team_points 3
country_classification Classe A
Name: 2664, dtype: object
date 2021-11-30 00:00:00
team United Arab Emirates
score 2.0
suf_score 1.0
rank 70.0
rank_suf 85.0
rank_change -1.0
total_points 1350.41
result 0
rank_dif -15.0
points_by_rank 0.035294
team_points 3
country_classification Classe B
Name: 2665, dtype: object
date 2021-12-01 00:00:00
team Morocco
score 4.0
suf_score 0.0
rank 28.0
rank_suf 98.0
rank_change -1.0
total_points 1525.5
result 0
rank_dif -70.0
points_by_rank 0.030612
team_points 3
country_classification Classe A
Name: 2666, dtype: object
date 2021-12-01 00:00:00
team Saudi Arabia
score 0.0
suf_score 1.0
rank 48.0
rank_suf 91.0
rank_change -1.0
total_points 1441.17
result 1
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2667, dtype: object
date 2021-12-01 00:00:00
team Algeria
score 4.0
suf_score 0.0
rank 32.0
rank_suf 124.0
rank_change 2.0
total_points 1508.54
result 0
rank_dif -92.0
points_by_rank 0.024194
team_points 3
country_classification Classe A
Name: 2668, dtype: object
date 2021-12-01 00:00:00
team Egypt
score 1.0
suf_score 0.0
rank 45.0
rank_suf 94.0
rank_change 1.0
total_points 1449.51
result 0
rank_dif -49.0
points_by_rank 0.031915
team_points 3
country_classification Classe A
Name: 2669, dtype: object
date 2021-12-03 00:00:00
team Bahrain
score 0.0
suf_score 0.0
rank 90.0
rank_suf 75.0
rank_change -1.0
total_points 1255.75
result 2
rank_dif 15.0
points_by_rank 0.013333
team_points 1
country_classification Classe B
Name: 2670, dtype: object
date 2021-12-03 00:00:00
team Qatar
score 2.0
suf_score 1.0
rank 51.0
rank_suf 78.0
rank_change 5.0
total_points 1431.01
result 0
rank_dif -27.0
points_by_rank 0.038462
team_points 3
country_classification Classe A
Name: 2671, dtype: object
date 2021-12-03 00:00:00
team Mauritania
score 0.0
suf_score 1.0
rank 103.0
rank_suf 70.0
rank_change 1.0
total_points 1190.23
result 1
rank_dif 33.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2672, dtype: object
date 2021-12-03 00:00:00
team Syria
score 2.0
suf_score 0.0
rank 85.0
rank_suf 29.0
rank_change 0.0
total_points 1269.96
result 0
rank_dif 56.0
points_by_rank 0.103448
team_points 3
country_classification Classe B
Name: 2673, dtype: object
date 2021-12-04 00:00:00
team El Salvador
score 1.0
suf_score 1.0
rank 69.0
rank_suf 46.0
rank_change 4.0
total_points 1350.63
result 2
rank_dif 23.0
points_by_rank 0.021739
team_points 1
country_classification Classe B
Name: 2674, dtype: object
date 2021-12-04 00:00:00
team Jordan
score 0.0
suf_score 4.0
rank 91.0
rank_suf 28.0
rank_change 1.0
total_points 1252.95
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2675, dtype: object
date 2021-12-04 00:00:00
team Palestine
score 1.0
suf_score 1.0
rank 98.0
rank_suf 48.0
rank_change -2.0
total_points 1211.32
result 2
rank_dif 50.0
points_by_rank 0.020833
team_points 1
country_classification Classe B
Name: 2676, dtype: object
date 2021-12-04 00:00:00
team Lebanon
score 0.0
suf_score 2.0
rank 94.0
rank_suf 32.0
rank_change 2.0
total_points 1233.76
result 1
rank_dif 62.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2677, dtype: object
date 2021-12-04 00:00:00
team Sudan
score 0.0
suf_score 5.0
rank 124.0
rank_suf 45.0
rank_change 1.0
total_points 1135.89
result 1
rank_dif 79.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2678, dtype: object
date 2021-12-06 00:00:00
team Oman
score 3.0
suf_score 0.0
rank 78.0
rank_suf 90.0
rank_change 1.0
total_points 1307.09
result 0
rank_dif -12.0
points_by_rank 0.033333
team_points 3
country_classification Classe B
Name: 2679, dtype: object
date 2021-12-06 00:00:00
team Qatar
score 3.0
suf_score 0.0
rank 51.0
rank_suf 75.0
rank_change 5.0
total_points 1431.01
result 0
rank_dif -24.0
points_by_rank 0.04
team_points 3
country_classification Classe A
Name: 2680, dtype: object
date 2021-12-06 00:00:00
team Syria
score 1.0
suf_score 2.0
rank 85.0
rank_suf 103.0
rank_change 0.0
total_points 1269.96
result 1
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2681, dtype: object
date 2021-12-06 00:00:00
team Tunisia
score 1.0
suf_score 0.0
rank 29.0
rank_suf 70.0
rank_change 2.0
total_points 1512.13
result 0
rank_dif -41.0
points_by_rank 0.042857
team_points 3
country_classification Classe A
Name: 2682, dtype: object
date 2021-12-07 00:00:00
team Jordan
score 5.0
suf_score 1.0
rank 91.0
rank_suf 98.0
rank_change 1.0
total_points 1252.95
result 0
rank_dif -7.0
points_by_rank 0.030612
team_points 3
country_classification Classe B
Name: 2683, dtype: object
date 2021-12-07 00:00:00
team Morocco
score 1.0
suf_score 0.0
rank 28.0
rank_suf 48.0
rank_change -1.0
total_points 1525.5
result 0
rank_dif -20.0
points_by_rank 0.0625
team_points 3
country_classification Classe A
Name: 2684, dtype: object
date 2021-12-07 00:00:00
team Algeria
score 1.0
suf_score 1.0
rank 32.0
rank_suf 45.0
rank_change 2.0
total_points 1508.54
result 2
rank_dif -13.0
points_by_rank 0.022222
team_points 1
country_classification Classe A
Name: 2685, dtype: object
date 2021-12-07 00:00:00
team Lebanon
score 1.0
suf_score 0.0
rank 94.0
rank_suf 124.0
rank_change 2.0
total_points 1233.76
result 0
rank_dif -30.0
points_by_rank 0.024194
team_points 3
country_classification Classe B
Name: 2686, dtype: object
date 2021-12-08 00:00:00
team Mexico
score 2.0
suf_score 2.0
rank 14.0
rank_suf 24.0
rank_change 5.0
total_points 1638.76
result 2
rank_dif -10.0
points_by_rank 0.041667
team_points 1
country_classification Classe S-
Name: 2687, dtype: object
date 2021-12-09 00:00:00
team Tanzania
score 0.0
suf_score 2.0
rank 131.0
rank_suf 82.0
rank_change 1.0
total_points 1118.76
result 1
rank_dif 49.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2688, dtype: object
date 2021-12-10 00:00:00
team Tunisia
score 2.0
suf_score 1.0
rank 29.0
rank_suf 78.0
rank_change 2.0
total_points 1512.13
result 0
rank_dif -49.0
points_by_rank 0.038462
team_points 3
country_classification Classe A
Name: 2689, dtype: object
date 2021-12-10 00:00:00
team Qatar
score 5.0
suf_score 0.0
rank 51.0
rank_suf 70.0
rank_change 5.0
total_points 1431.01
result 0
rank_dif -19.0
points_by_rank 0.042857
team_points 3
country_classification Classe A
Name: 2690, dtype: object
date 2021-12-11 00:00:00
team Egypt
score 3.0
suf_score 1.0
rank 45.0
rank_suf 91.0
rank_change 1.0
total_points 1449.51
result 0
rank_dif -46.0
points_by_rank 0.032967
team_points 3
country_classification Classe A
Name: 2691, dtype: object
date 2021-12-11 00:00:00
team Morocco
score 2.0
suf_score 2.0
rank 28.0
rank_suf 32.0
rank_change -1.0
total_points 1525.5
result 2
rank_dif -4.0
points_by_rank 0.03125
team_points 1
country_classification Classe A
Name: 2692, dtype: object
date 2021-12-11 00:00:00
team El Salvador
score 0.0
suf_score 1.0
rank 69.0
rank_suf 24.0
rank_change 4.0
total_points 1350.63
result 1
rank_dif 45.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2693, dtype: object
date 2021-12-15 00:00:00
team Tunisia
score 1.0
suf_score 0.0
rank 29.0
rank_suf 45.0
rank_change 2.0
total_points 1512.13
result 0
rank_dif -16.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 2694, dtype: object
date 2021-12-15 00:00:00
team Qatar
score 1.0
suf_score 2.0
rank 51.0
rank_suf 32.0
rank_change 5.0
total_points 1431.01
result 1
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2695, dtype: object
date 2021-12-18 00:00:00
team Qatar
score 0.0
suf_score 0.0
rank 51.0
rank_suf 45.0
rank_change 5.0
total_points 1431.01
result 2
rank_dif 6.0
points_by_rank 0.022222
team_points 1
country_classification Classe A
Name: 2696, dtype: object
date 2021-12-18 00:00:00
team Tunisia
score 0.0
suf_score 2.0
rank 29.0
rank_suf 32.0
rank_change 2.0
total_points 1512.13
result 1
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2697, dtype: object
date 2021-12-18 00:00:00
team United States
score 1.0
suf_score 0.0
rank 12.0
rank_suf 61.0
rank_change -1.0
total_points 1647.14
result 0
rank_dif -49.0
points_by_rank 0.04918
team_points 3
country_classification Classe S-
Name: 2698, dtype: object
date 2021-12-30 00:00:00
team Mauritania
score 0.0
suf_score 0.0
rank 103.0
rank_suf 60.0
rank_change 0.0
total_points 1190.26
result 2
rank_dif 43.0
points_by_rank 0.016667
team_points 1
country_classification Classe C
Name: 2699, dtype: object
date 2021-12-30 00:00:00
team Sudan
score 2.0
suf_score 3.0
rank 125.0
rank_suf 137.0
rank_change 1.0
total_points 1131.74
result 1
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2700, dtype: object
date 2021-12-31 00:00:00
team Malawi
score 2.0
suf_score 1.0
rank 129.0
rank_suf 132.0
rank_change 0.0
total_points 1127.21
result 0
rank_dif -3.0
points_by_rank 0.022727
team_points 3
country_classification Classe C
Name: 2701, dtype: object
date 2022-01-02 00:00:00
team Gabon
score 0.0
suf_score 3.0
rank 89.0
rank_suf 60.0
rank_change 0.0
total_points 1262.0
result 1
rank_dif 29.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2702, dtype: object
date 2022-01-02 00:00:00
team Sudan
score 0.0
suf_score 0.0
rank 125.0
rank_suf 121.0
rank_change 1.0
total_points 1131.74
result 2
rank_dif 4.0
points_by_rank 0.008264
team_points 1
country_classification Classe C
Name: 2703, dtype: object
date 2022-01-03 00:00:00
team Rwanda
score 3.0
suf_score 0.0
rank 135.0
rank_suf 81.0
rank_change 0.0
total_points 1095.34
result 0
rank_dif 54.0
points_by_rank 0.037037
team_points 3
country_classification Classe C
Name: 2704, dtype: object
date 2022-01-04 00:00:00
team Mauritania
score 1.0
suf_score 1.0
rank 103.0
rank_suf 89.0
rank_change 0.0
total_points 1190.26
result 2
rank_dif 14.0
points_by_rank 0.011236
team_points 1
country_classification Classe C
Name: 2705, dtype: object
date 2022-01-05 00:00:00
team Algeria
score 3.0
suf_score 0.0
rank 29.0
rank_suf 52.0
rank_change -3.0
total_points 1516.51
result 0
rank_dif -23.0
points_by_rank 0.057692
team_points 3
country_classification Classe A
Name: 2706, dtype: object
date 2022-01-06 00:00:00
team Rwanda
score 0.0
suf_score 2.0
rank 135.0
rank_suf 81.0
rank_change 0.0
total_points 1095.34
result 1
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2707, dtype: object
date 2022-01-09 00:00:00
team Cameroon
score 2.0
suf_score 1.0
rank 50.0
rank_suf 60.0
rank_change 0.0
total_points 1437.35
result 0
rank_dif -10.0
points_by_rank 0.05
team_points 3
country_classification Classe A
Name: 2708, dtype: object
date 2022-01-10 00:00:00
team Senegal
score 1.0
suf_score 0.0
rank 20.0
rank_suf 121.0
rank_change 0.0
total_points 1561.68
result 0
rank_dif -101.0
points_by_rank 0.024793
team_points 3
country_classification Classe A
Name: 2709, dtype: object
date 2022-01-10 00:00:00
team Guinea
score 1.0
suf_score 0.0
rank 81.0
rank_suf 129.0
rank_change 0.0
total_points 1298.32
result 0
rank_dif -48.0
points_by_rank 0.023256
team_points 3
country_classification Classe B
Name: 2710, dtype: object
date 2022-01-10 00:00:00
team Morocco
score 1.0
suf_score 0.0
rank 28.0
rank_suf 52.0
rank_change 0.0
total_points 1529.93
result 0
rank_dif -24.0
points_by_rank 0.057692
team_points 3
country_classification Classe A
Name: 2711, dtype: object
date 2022-01-10 00:00:00
team Comoros
score 0.0
suf_score 1.0
rank 132.0
rank_suf 89.0
rank_change 0.0
total_points 1117.65
result 1
rank_dif 43.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2712, dtype: object
date 2022-01-11 00:00:00
team Nigeria
score 1.0
suf_score 0.0
rank 36.0
rank_suf 45.0
rank_change 0.0
total_points 1478.78
result 0
rank_dif -9.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 2713, dtype: object
date 2022-01-11 00:00:00
team Sudan
score 0.0
suf_score 0.0
rank 125.0
rank_suf 106.0
rank_change 1.0
total_points 1131.74
result 2
rank_dif 19.0
points_by_rank 0.009434
team_points 1
country_classification Classe C
Name: 2714, dtype: object
date 2022-01-11 00:00:00
team Algeria
score 0.0
suf_score 0.0
rank 29.0
rank_suf 108.0
rank_change -3.0
total_points 1516.51
result 2
rank_dif -79.0
points_by_rank 0.009259
team_points 1
country_classification Classe A
Name: 2715, dtype: object
date 2022-01-12 00:00:00
team Iceland
score 1.0
suf_score 1.0
rank 62.0
rank_suf 82.0
rank_change 0.0
total_points 1385.21
result 2
rank_dif -20.0
points_by_rank 0.012195
team_points 1
country_classification Classe B
Name: 2716, dtype: object
date 2022-01-12 00:00:00
team Tunisia
score 0.0
suf_score 1.0
rank 30.0
rank_suf 53.0
rank_change 1.0
total_points 1512.72
result 1
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2717, dtype: object
date 2022-01-12 00:00:00
team Mauritania
score 0.0
suf_score 1.0
rank 103.0
rank_suf 150.0
rank_change 0.0
total_points 1190.26
result 1
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2718, dtype: object
date 2022-01-13 00:00:00
team Cameroon
score 4.0
suf_score 1.0
rank 50.0
rank_suf 137.0
rank_change 0.0
total_points 1437.35
result 0
rank_dif -87.0
points_by_rank 0.021898
team_points 3
country_classification Classe A
Name: 2719, dtype: object
date 2022-01-14 00:00:00
team Senegal
score 0.0
suf_score 0.0
rank 20.0
rank_suf 81.0
rank_change 0.0
total_points 1561.68
result 2
rank_dif -61.0
points_by_rank 0.012346
team_points 1
country_classification Classe A
Name: 2720, dtype: object
date 2022-01-14 00:00:00
team Malawi
score 2.0
suf_score 1.0
rank 129.0
rank_suf 121.0
rank_change 0.0
total_points 1127.21
result 0
rank_dif 8.0
points_by_rank 0.024793
team_points 3
country_classification Classe C
Name: 2721, dtype: object
date 2022-01-14 00:00:00
team Morocco
score 2.0
suf_score 0.0
rank 28.0
rank_suf 132.0
rank_change 0.0
total_points 1529.93
result 0
rank_dif -104.0
points_by_rank 0.022727
team_points 3
country_classification Classe A
Name: 2722, dtype: object
date 2022-01-14 00:00:00
team Gabon
score 1.0
suf_score 1.0
rank 89.0
rank_suf 52.0
rank_change 0.0
total_points 1262.0
result 2
rank_dif 37.0
points_by_rank 0.019231
team_points 1
country_classification Classe B
Name: 2723, dtype: object
date 2022-01-15 00:00:00
team South Korea
score 5.0
suf_score 1.0
rank 33.0
rank_suf 62.0
rank_change 0.0
total_points 1507.24
result 0
rank_dif -29.0
points_by_rank 0.048387
team_points 3
country_classification Classe A
Name: 2724, dtype: object
date 2022-01-15 00:00:00
team Nigeria
score 3.0
suf_score 1.0
rank 36.0
rank_suf 125.0
rank_change 0.0
total_points 1478.78
result 0
rank_dif -89.0
points_by_rank 0.024
team_points 3
country_classification Classe A
Name: 2725, dtype: object
date 2022-01-15 00:00:00
team Guinea-Bissau
score 0.0
suf_score 1.0
rank 106.0
rank_suf 45.0
rank_change 0.0
total_points 1177.14
result 1
rank_dif 61.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2726, dtype: object
date 2022-01-16 00:00:00
team Colombia
score 2.0
suf_score 1.0
rank 16.0
rank_suf 76.0
rank_change 0.0
total_points 1607.15
result 0
rank_dif -60.0
points_by_rank 0.039474
team_points 3
country_classification Classe S-
Name: 2727, dtype: object
date 2022-01-16 00:00:00
team Peru
score 1.0
suf_score 1.0
rank 22.0
rank_suf 63.0
rank_change 0.0
total_points 1551.15
result 2
rank_dif -41.0
points_by_rank 0.015873
team_points 1
country_classification Classe A
Name: 2728, dtype: object
date 2022-01-16 00:00:00
team Algeria
score 0.0
suf_score 1.0
rank 29.0
rank_suf 114.0
rank_change -3.0
total_points 1516.51
result 1
rank_dif -85.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2729, dtype: object
date 2022-01-16 00:00:00
team Gambia
score 1.0
suf_score 1.0
rank 150.0
rank_suf 53.0
rank_change -1.0
total_points 1049.74
result 2
rank_dif 97.0
points_by_rank 0.018868
team_points 1
country_classification Classe C
Name: 2730, dtype: object
date 2022-01-16 00:00:00
team Tunisia
score 4.0
suf_score 0.0
rank 30.0
rank_suf 103.0
rank_change 1.0
total_points 1512.72
result 0
rank_dif -73.0
points_by_rank 0.029126
team_points 3
country_classification Classe A
Name: 2731, dtype: object
date 2022-01-17 00:00:00
team Burkina Faso
score 1.0
suf_score 1.0
rank 60.0
rank_suf 137.0
rank_change 0.0
total_points 1397.64
result 2
rank_dif -77.0
points_by_rank 0.007299
team_points 1
country_classification Classe B
Name: 2732, dtype: object
date 2022-01-18 00:00:00
team Moldova
score 2.0
suf_score 3.0
rank 181.0
rank_suf 82.0
rank_change 0.0
total_points 928.35
result 1
rank_dif 99.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2733, dtype: object
date 2022-01-18 00:00:00
team Malawi
score 0.0
suf_score 0.0
rank 129.0
rank_suf 20.0
rank_change 0.0
total_points 1127.21
result 2
rank_dif 109.0
points_by_rank 0.05
team_points 1
country_classification Classe C
Name: 2734, dtype: object
date 2022-01-18 00:00:00
team Zimbabwe
score 2.0
suf_score 1.0
rank 121.0
rank_suf 81.0
rank_change 0.0
total_points 1138.44
result 0
rank_dif 40.0
points_by_rank 0.037037
team_points 3
country_classification Classe C
Name: 2735, dtype: object
date 2022-01-18 00:00:00
team Gabon
score 2.0
suf_score 2.0
rank 89.0
rank_suf 28.0
rank_change 0.0
total_points 1262.0
result 2
rank_dif 61.0
points_by_rank 0.035714
team_points 1
country_classification Classe B
Name: 2736, dtype: object
date 2022-01-18 00:00:00
team Ghana
score 2.0
suf_score 3.0
rank 52.0
rank_suf 132.0
rank_change 0.0
total_points 1428.97
result 1
rank_dif -80.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2737, dtype: object
date 2022-01-19 00:00:00
team Egypt
score 1.0
suf_score 0.0
rank 45.0
rank_suf 125.0
rank_change 0.0
total_points 1451.77
result 0
rank_dif -80.0
points_by_rank 0.024
team_points 3
country_classification Classe A
Name: 2738, dtype: object
date 2022-01-19 00:00:00
team Guinea-Bissau
score 0.0
suf_score 2.0
rank 106.0
rank_suf 36.0
rank_change 0.0
total_points 1177.14
result 1
rank_dif 70.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2739, dtype: object
date 2022-01-20 00:00:00
team South Korea
score 4.0
suf_score 0.0
rank 33.0
rank_suf 181.0
rank_change 0.0
total_points 1507.24
result 0
rank_dif -148.0
points_by_rank 0.016575
team_points 3
country_classification Classe A
Name: 2740, dtype: object
date 2022-01-20 00:00:00
team Peru
score 3.0
suf_score 0.0
rank 22.0
rank_suf 57.0
rank_change 0.0
total_points 1551.15
result 0
rank_dif -35.0
points_by_rank 0.052632
team_points 3
country_classification Classe A
Name: 2741, dtype: object
date 2022-01-20 00:00:00
team Sierra Leone
score 0.0
suf_score 1.0
rank 108.0
rank_suf 114.0
rank_change 0.0
total_points 1174.12
result 1
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2742, dtype: object
date 2022-01-20 00:00:00
team Gambia
score 1.0
suf_score 0.0
rank 150.0
rank_suf 30.0
rank_change -1.0
total_points 1049.74
result 0
rank_dif 120.0
points_by_rank 0.1
team_points 3
country_classification Classe C
Name: 2743, dtype: object
date 2022-01-20 00:00:00
team Mali
score 2.0
suf_score 0.0
rank 53.0
rank_suf 103.0
rank_change 0.0
total_points 1427.98
result 0
rank_dif -50.0
points_by_rank 0.029126
team_points 3
country_classification Classe A
Name: 2744, dtype: object
date 2022-01-21 00:00:00
team Bolivia
score 5.0
suf_score 0.0
rank 77.0
rank_suf 100.0
rank_change 0.0
total_points 1324.21
result 0
rank_dif -23.0
points_by_rank 0.03
team_points 3
country_classification Classe B
Name: 2745, dtype: object
date 2022-01-21 00:00:00
team Iraq
score 1.0
suf_score 0.0
rank 75.0
rank_suf 82.0
rank_change 0.0
total_points 1333.03
result 0
rank_dif -7.0
points_by_rank 0.036585
team_points 3
country_classification Classe B
Name: 2746, dtype: object
date 2022-01-23 00:00:00
team Burkina Faso
score 1.0
suf_score 1.0
rank 60.0
rank_suf 89.0
rank_change 0.0
total_points 1397.64
result 2
rank_dif -29.0
points_by_rank 0.011236
team_points 1
country_classification Classe B
Name: 2747, dtype: object
date 2022-01-23 00:00:00
team Nigeria
score 0.0
suf_score 1.0
rank 36.0
rank_suf 30.0
rank_change 0.0
total_points 1478.78
result 1
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2748, dtype: object
date 2022-01-24 00:00:00
team Cameroon
score 2.0
suf_score 1.0
rank 50.0
rank_suf 132.0
rank_change 0.0
total_points 1437.35
result 0
rank_dif -82.0
points_by_rank 0.022727
team_points 3
country_classification Classe A
Name: 2749, dtype: object
date 2022-01-24 00:00:00
team Guinea
score 0.0
suf_score 1.0
rank 81.0
rank_suf 150.0
rank_change 0.0
total_points 1298.32
result 1
rank_dif -69.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2750, dtype: object
date 2022-01-25 00:00:00
team Morocco
score 2.0
suf_score 1.0
rank 28.0
rank_suf 129.0
rank_change 0.0
total_points 1529.93
result 0
rank_dif -101.0
points_by_rank 0.023256
team_points 3
country_classification Classe A
Name: 2751, dtype: object
date 2022-01-26 00:00:00
team Mali
score 0.0
suf_score 0.0
rank 53.0
rank_suf 114.0
rank_change 0.0
total_points 1427.98
result 2
rank_dif -61.0
points_by_rank 0.008772
team_points 1
country_classification Classe A
Name: 2752, dtype: object
date 2022-01-27 00:00:00
team Bahrain
score 3.0
suf_score 1.0
rank 91.0
rank_suf 82.0
rank_change 1.0
total_points 1252.19
result 0
rank_dif 9.0
points_by_rank 0.036585
team_points 3
country_classification Classe B
Name: 2753, dtype: object
date 2022-01-27 00:00:00
team Indonesia
score 4.0
suf_score 1.0
rank 164.0
rank_suf 196.0
rank_change -2.0
total_points 992.31
result 0
rank_dif -32.0
points_by_rank 0.015306
team_points 3
country_classification Classe D
Name: 2754, dtype: object
date 2022-01-27 00:00:00
team Uzbekistan
score 3.0
suf_score 0.0
rank 84.0
rank_suf 167.0
rank_change 0.0
total_points 1274.58
result 0
rank_dif -83.0
points_by_rank 0.017964
team_points 3
country_classification Classe B
Name: 2755, dtype: object
date 2022-01-27 00:00:00
team Jamaica
score 1.0
suf_score 2.0
rank 57.0
rank_suf 14.0
rank_change 0.0
total_points 1412.13
result 1
rank_dif 43.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2756, dtype: object
date 2022-01-27 00:00:00
team United States
score 1.0
suf_score 0.0
rank 11.0
rank_suf 70.0
rank_change -1.0
total_points 1648.51
result 0
rank_dif -59.0
points_by_rank 0.042857
team_points 3
country_classification Classe S-
Name: 2757, dtype: object
date 2022-01-27 00:00:00
team Honduras
score 0.0
suf_score 2.0
rank 76.0
rank_suf 40.0
rank_change 0.0
total_points 1332.16
result 1
rank_dif 36.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2758, dtype: object
date 2022-01-27 00:00:00
team Costa Rica
score 1.0
suf_score 0.0
rank 49.0
rank_suf 63.0
rank_change 0.0
total_points 1437.43
result 0
rank_dif -14.0
points_by_rank 0.047619
team_points 3
country_classification Classe A
Name: 2759, dtype: object
date 2022-01-27 00:00:00
team Lebanon
score 0.0
suf_score 1.0
rank 95.0
rank_suf 33.0
rank_change 1.0
total_points 1233.0
result 1
rank_dif 62.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2760, dtype: object
date 2022-01-27 00:00:00
team Iran
score 1.0
suf_score 0.0
rank 21.0
rank_suf 75.0
rank_change 0.0
total_points 1557.58
result 0
rank_dif -54.0
points_by_rank 0.04
team_points 3
country_classification Classe A
Name: 2761, dtype: object
date 2022-01-27 00:00:00
team United Arab Emirates
score 2.0
suf_score 0.0
rank 69.0
rank_suf 86.0
rank_change -1.0
total_points 1350.39
result 0
rank_dif -17.0
points_by_rank 0.034884
team_points 3
country_classification Classe B
Name: 2762, dtype: object
date 2022-01-27 00:00:00
team Japan
score 2.0
suf_score 0.0
rank 26.0
rank_suf 74.0
rank_change 0.0
total_points 1531.53
result 0
rank_dif -48.0
points_by_rank 0.040541
team_points 3
country_classification Classe A
Name: 2763, dtype: object
date 2022-01-27 00:00:00
team Australia
score 4.0
suf_score 0.0
rank 35.0
rank_suf 98.0
rank_change 0.0
total_points 1484.88
result 0
rank_dif -63.0
points_by_rank 0.030612
team_points 3
country_classification Classe A
Name: 2764, dtype: object
date 2022-01-27 00:00:00
team Saudi Arabia
score 1.0
suf_score 0.0
rank 51.0
rank_suf 79.0
rank_change 3.0
total_points 1434.71
result 0
rank_dif -28.0
points_by_rank 0.037975
team_points 3
country_classification Classe A
Name: 2765, dtype: object
date 2022-01-27 00:00:00
team Ecuador
score 1.0
suf_score 1.0
rank 46.0
rank_suf 2.0
rank_change 0.0
total_points 1448.27
result 2
rank_dif 44.0
points_by_rank 0.5
team_points 1
country_classification Classe A
Name: 2766, dtype: object
date 2022-01-27 00:00:00
team Paraguay
score 0.0
suf_score 1.0
rank 43.0
rank_suf 17.0
rank_change 0.0
total_points 1454.52
result 1
rank_dif 26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2767, dtype: object
date 2022-01-27 00:00:00
team Chile
score 1.0
suf_score 2.0
rank 24.0
rank_suf 5.0
rank_change 0.0
total_points 1543.42
result 1
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2768, dtype: object
date 2022-01-28 00:00:00
team Jordan
score 3.0
suf_score 1.0
rank 90.0
rank_suf 110.0
rank_change -1.0
total_points 1255.69
result 0
rank_dif -20.0
points_by_rank 0.027273
team_points 3
country_classification Classe B
Name: 2769, dtype: object
date 2022-01-28 00:00:00
team Suriname
score 1.0
suf_score 0.0
rank 139.0
rank_suf 162.0
rank_change 0.0
total_points 1077.57
result 0
rank_dif -23.0
points_by_rank 0.018519
team_points 3
country_classification Classe C
Name: 2770, dtype: object
date 2022-01-28 00:00:00
team Colombia
score 0.0
suf_score 1.0
rank 16.0
rank_suf 22.0
rank_change 0.0
total_points 1607.15
result 1
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2771, dtype: object
date 2022-01-28 00:00:00
team Venezuela
score 4.0
suf_score 1.0
rank 59.0
rank_suf 77.0
rank_change 0.0
total_points 1409.14
result 0
rank_dif -18.0
points_by_rank 0.038961
team_points 3
country_classification Classe A
Name: 2772, dtype: object
date 2022-01-29 00:00:00
team Kuwait
score 2.0
suf_score 0.0
rank 142.0
rank_suf 117.0
rank_change 0.0
total_points 1064.02
result 0
rank_dif 25.0
points_by_rank 0.025641
team_points 3
country_classification Classe C
Name: 2773, dtype: object
date 2022-01-29 00:00:00
team Nepal
score 1.0
suf_score 0.0
rank 169.0
rank_suf 172.0
rank_change 0.0
total_points 972.45
result 0
rank_dif -3.0
points_by_rank 0.017442
team_points 3
country_classification Classe D
Name: 2774, dtype: object
date 2022-01-29 00:00:00
team Nicaragua
score 4.0
suf_score 0.0
rank 143.0
rank_suf 170.0
rank_change 0.0
total_points 1062.21
result 0
rank_dif -27.0
points_by_rank 0.017647
team_points 3
country_classification Classe C
Name: 2775, dtype: object
date 2022-01-29 00:00:00
team Burkina Faso
score 1.0
suf_score 0.0
rank 60.0
rank_suf 30.0
rank_change 0.0
total_points 1397.64
result 0
rank_dif 30.0
points_by_rank 0.1
team_points 3
country_classification Classe B
Name: 2776, dtype: object
date 2022-01-29 00:00:00
team Cameroon
score 2.0
suf_score 0.0
rank 50.0
rank_suf 150.0
rank_change 0.0
total_points 1437.35
result 0
rank_dif -100.0
points_by_rank 0.02
team_points 3
country_classification Classe A
Name: 2777, dtype: object
date 2022-01-30 00:00:00
team Indonesia
score 3.0
suf_score 0.0
rank 164.0
rank_suf 196.0
rank_change -2.0
total_points 992.31
result 0
rank_dif -32.0
points_by_rank 0.015306
team_points 3
country_classification Classe D
Name: 2778, dtype: object
date 2022-01-30 00:00:00
team Egypt
score 2.0
suf_score 1.0
rank 45.0
rank_suf 28.0
rank_change 0.0
total_points 1451.77
result 0
rank_dif 17.0
points_by_rank 0.107143
team_points 3
country_classification Classe A
Name: 2779, dtype: object
date 2022-01-30 00:00:00
team Senegal
score 3.0
suf_score 1.0
rank 20.0
rank_suf 114.0
rank_change 0.0
total_points 1561.68
result 0
rank_dif -94.0
points_by_rank 0.026316
team_points 3
country_classification Classe A
Name: 2780, dtype: object
date 2022-01-30 00:00:00
team Canada
score 2.0
suf_score 0.0
rank 40.0
rank_suf 11.0
rank_change 0.0
total_points 1462.32
result 0
rank_dif 29.0
points_by_rank 0.272727
team_points 3
country_classification Classe A
Name: 2781, dtype: object
date 2022-01-30 00:00:00
team Mexico
score 0.0
suf_score 0.0
rank 14.0
rank_suf 49.0
rank_change 0.0
total_points 1638.3
result 2
rank_dif -35.0
points_by_rank 0.020408
team_points 1
country_classification Classe S-
Name: 2782, dtype: object
date 2022-01-30 00:00:00
team Panama
score 3.0
suf_score 2.0
rank 63.0
rank_suf 57.0
rank_change 0.0
total_points 1379.34
result 0
rank_dif 6.0
points_by_rank 0.052632
team_points 3
country_classification Classe B
Name: 2783, dtype: object
date 2022-01-30 00:00:00
team Honduras
score 0.0
suf_score 2.0
rank 76.0
rank_suf 70.0
rank_change 0.0
total_points 1332.16
result 1
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2784, dtype: object
date 2022-02-01 00:00:00
team Kuwait
score 0.0
suf_score 2.0
rank 142.0
rank_suf 117.0
rank_change 0.0
total_points 1064.02
result 1
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2785, dtype: object
date 2022-02-01 00:00:00
team Nepal
score 1.0
suf_score 0.0
rank 169.0
rank_suf 172.0
rank_change 0.0
total_points 972.45
result 0
rank_dif -3.0
points_by_rank 0.017442
team_points 3
country_classification Classe D
Name: 2786, dtype: object
date 2022-02-01 00:00:00
team Nicaragua
score 1.0
suf_score 1.0
rank 143.0
rank_suf 170.0
rank_change 0.0
total_points 1062.21
result 2
rank_dif -27.0
points_by_rank 0.005882
team_points 1
country_classification Classe C
Name: 2787, dtype: object
date 2022-02-01 00:00:00
team Suriname
score 2.0
suf_score 1.0
rank 139.0
rank_suf 176.0
rank_change 0.0
total_points 1077.57
result 0
rank_dif -37.0
points_by_rank 0.017045
team_points 3
country_classification Classe C
Name: 2788, dtype: object
date 2022-02-01 00:00:00
team Lebanon
score 1.0
suf_score 1.0
rank 95.0
rank_suf 75.0
rank_change 1.0
total_points 1233.0
result 2
rank_dif 20.0
points_by_rank 0.013333
team_points 1
country_classification Classe B
Name: 2789, dtype: object
date 2022-02-01 00:00:00
team Iran
score 1.0
suf_score 0.0
rank 21.0
rank_suf 69.0
rank_change 0.0
total_points 1557.58
result 0
rank_dif -48.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 2790, dtype: object
date 2022-02-01 00:00:00
team Syria
score 0.0
suf_score 2.0
rank 86.0
rank_suf 33.0
rank_change 1.0
total_points 1268.54
result 1
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2791, dtype: object
date 2022-02-01 00:00:00
team Vietnam
score 3.0
suf_score 1.0
rank 98.0
rank_suf 74.0
rank_change -1.0
total_points 1212.54
result 0
rank_dif 24.0
points_by_rank 0.040541
team_points 3
country_classification Classe B
Name: 2792, dtype: object
date 2022-02-01 00:00:00
team Japan
score 2.0
suf_score 0.0
rank 26.0
rank_suf 51.0
rank_change 0.0
total_points 1531.53
result 0
rank_dif -25.0
points_by_rank 0.058824
team_points 3
country_classification Classe A
Name: 2793, dtype: object
date 2022-02-01 00:00:00
team Oman
score 2.0
suf_score 2.0
rank 79.0
rank_suf 35.0
rank_change 1.0
total_points 1306.01
result 2
rank_dif 44.0
points_by_rank 0.028571
team_points 1
country_classification Classe B
Name: 2794, dtype: object
date 2022-02-01 00:00:00
team Bolivia
score 2.0
suf_score 3.0
rank 77.0
rank_suf 24.0
rank_change 0.0
total_points 1324.21
result 1
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2795, dtype: object
date 2022-02-01 00:00:00
team Uruguay
score 4.0
suf_score 1.0
rank 17.0
rank_suf 59.0
rank_change 0.0
total_points 1596.66
result 0
rank_dif -42.0
points_by_rank 0.050847
team_points 3
country_classification Classe A
Name: 2796, dtype: object
date 2022-02-01 00:00:00
team Argentina
score 1.0
suf_score 0.0
rank 5.0
rank_suf 16.0
rank_change 0.0
total_points 1750.51
result 0
rank_dif -11.0
points_by_rank 0.1875
team_points 3
country_classification Classe S
Name: 2797, dtype: object
date 2022-02-01 00:00:00
team Peru
score 1.0
suf_score 1.0
rank 22.0
rank_suf 46.0
rank_change 0.0
total_points 1551.15
result 2
rank_dif -24.0
points_by_rank 0.021739
team_points 1
country_classification Classe A
Name: 2798, dtype: object
date 2022-02-01 00:00:00
team Brazil
score 4.0
suf_score 0.0
rank 2.0
rank_suf 43.0
rank_change 0.0
total_points 1826.35
result 0
rank_dif -41.0
points_by_rank 0.069767
team_points 3
country_classification Classe S
Name: 2799, dtype: object
date 2022-02-02 00:00:00
team Burkina Faso
score 1.0
suf_score 3.0
rank 60.0
rank_suf 20.0
rank_change 0.0
total_points 1397.64
result 1
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2800, dtype: object
date 2022-02-02 00:00:00
team United States
score 3.0
suf_score 0.0
rank 11.0
rank_suf 76.0
rank_change -1.0
total_points 1648.51
result 0
rank_dif -65.0
points_by_rank 0.039474
team_points 3
country_classification Classe S-
Name: 2801, dtype: object
date 2022-02-02 00:00:00
team Jamaica
score 0.0
suf_score 1.0
rank 57.0
rank_suf 49.0
rank_change 0.0
total_points 1412.13
result 1
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2802, dtype: object
date 2022-02-02 00:00:00
team El Salvador
score 0.0
suf_score 2.0
rank 70.0
rank_suf 40.0
rank_change 1.0
total_points 1349.47
result 1
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2803, dtype: object
date 2022-02-02 00:00:00
team Mexico
score 1.0
suf_score 0.0
rank 14.0
rank_suf 63.0
rank_change 0.0
total_points 1638.3
result 0
rank_dif -49.0
points_by_rank 0.047619
team_points 3
country_classification Classe S-
Name: 2804, dtype: object
date 2022-02-03 00:00:00
team Cameroon
score 0.0
suf_score 0.0
rank 50.0
rank_suf 45.0
rank_change 0.0
total_points 1437.35
result 2
rank_dif 5.0
points_by_rank 0.022222
team_points 1
country_classification Classe A
Name: 2805, dtype: object
date 2022-02-05 00:00:00
team Cameroon
score 3.0
suf_score 3.0
rank 50.0
rank_suf 60.0
rank_change 0.0
total_points 1437.35
result 2
rank_dif -10.0
points_by_rank 0.016667
team_points 1
country_classification Classe A
Name: 2806, dtype: object
date 2022-02-06 00:00:00
team Senegal
score 0.0
suf_score 0.0
rank 20.0
rank_suf 45.0
rank_change 0.0
total_points 1561.68
result 2
rank_dif -25.0
points_by_rank 0.022222
team_points 1
country_classification Classe A
Name: 2807, dtype: object
date 2022-03-17 00:00:00
team Cook Islands
score 0.0
suf_score 2.0
rank 190.0
rank_suf 142.0
rank_change 0.0
total_points 908.0
result 1
rank_dif 48.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2808, dtype: object
date 2022-03-18 00:00:00
team Papua New Guinea
score 0.0
suf_score 1.0
rank 165.0
rank_suf 111.0
rank_change 0.0
total_points 990.55
result 1
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2809, dtype: object
date 2022-03-18 00:00:00
team New Caledonia
score 1.0
suf_score 2.0
rank 153.0
rank_suf 162.0
rank_change 0.0
total_points 1035.12
result 1
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2810, dtype: object
date 2022-03-18 00:00:00
team Iraq
score 3.0
suf_score 1.0
rank 74.0
rank_suf 88.0
rank_change -1.0
total_points 1325.44
result 0
rank_dif -14.0
points_by_rank 0.034091
team_points 3
country_classification Classe B
Name: 2811, dtype: object
date 2022-03-19 00:00:00
team Mauritius
score 0.0
suf_score 0.0
rank 176.0
rank_suf 196.0
rank_change 4.0
total_points 955.18
result 2
rank_dif -20.0
points_by_rank 0.005102
team_points 1
country_classification Classe D
Name: 2812, dtype: object
date 2022-03-21 00:00:00
team Papua New Guinea
score 1.0
suf_score 0.0
rank 165.0
rank_suf 153.0
rank_change 0.0
total_points 990.55
result 0
rank_dif 12.0
points_by_rank 0.019608
team_points 3
country_classification Classe D
Name: 2813, dtype: object
date 2022-03-21 00:00:00
team New Zealand
score 4.0
suf_score 0.0
rank 111.0
rank_suf 162.0
rank_change 1.0
total_points 1161.66
result 0
rank_dif -51.0
points_by_rank 0.018519
team_points 3
country_classification Classe C
Name: 2814, dtype: object
date 2022-03-23 00:00:00
team Bahrain
score 2.0
suf_score 1.0
rank 89.0
rank_suf 104.0
rank_change -2.0
total_points 1263.61
result 0
rank_dif -15.0
points_by_rank 0.028846
team_points 3
country_classification Classe B
Name: 2815, dtype: object
date 2022-03-23 00:00:00
team Gibraltar
score 0.0
suf_score 0.0
rank 203.0
rank_suf 169.0
rank_change 0.0
total_points 853.6
result 2
rank_dif 34.0
points_by_rank 0.005917
team_points 1
country_classification Classe D
Name: 2816, dtype: object
date 2022-03-23 00:00:00
team Guinea-Bissau
score 3.0
suf_score 0.0
rank 113.0
rank_suf 99.0
rank_change 7.0
total_points 1158.62
result 0
rank_dif 14.0
points_by_rank 0.030303
team_points 3
country_classification Classe C
Name: 2817, dtype: object
date 2022-03-23 00:00:00
team Laos
score 1.0
suf_score 0.0
rank 187.0
rank_suf 184.0
rank_change 0.0
total_points 904.6
result 0
rank_dif 3.0
points_by_rank 0.016304
team_points 3
country_classification Classe D
Name: 2818, dtype: object
date 2022-03-23 00:00:00
team Malaysia
score 2.0
suf_score 0.0
rank 154.0
rank_suf 129.0
rank_change 0.0
total_points 1034.53
result 0
rank_dif 25.0
points_by_rank 0.023256
team_points 3
country_classification Classe C
Name: 2819, dtype: object
date 2022-03-23 00:00:00
team Mozambique
score 1.0
suf_score 1.0
rank 117.0
rank_suf 114.0
rank_change -1.0
total_points 1151.0
result 2
rank_dif 3.0
points_by_rank 0.008772
team_points 1
country_classification Classe C
Name: 2820, dtype: object
date 2022-03-23 00:00:00
team Tanzania
score 3.0
suf_score 1.0
rank 132.0
rank_suf 130.0
rank_change 1.0
total_points 1118.76
result 0
rank_dif 2.0
points_by_rank 0.023077
team_points 3
country_classification Classe C
Name: 2821, dtype: object
date 2022-03-23 00:00:00
team Chad
score 0.0
suf_score 1.0
rank 180.0
rank_suf 125.0
rank_change 0.0
total_points 935.0
result 1
rank_dif 55.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2822, dtype: object
date 2022-03-23 00:00:00
team Djibouti
score 2.0
suf_score 4.0
rank 192.0
rank_suf 168.0
rank_change 0.0
total_points 896.62
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2823, dtype: object
date 2022-03-23 00:00:00
team Seychelles
score 0.0
suf_score 0.0
rank 196.0
rank_suf 146.0
rank_change -1.0
total_points 870.63
result 2
rank_dif 50.0
points_by_rank 0.006849
team_points 1
country_classification Classe D
Name: 2824, dtype: object
date 2022-03-23 00:00:00
team Somalia
score 0.0
suf_score 3.0
rank 194.0
rank_suf 147.0
rank_change 0.0
total_points 873.71
result 1
rank_dif 47.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2825, dtype: object
date 2022-03-24 00:00:00
team Jamaica
score 1.0
suf_score 1.0
rank 62.0
rank_suf 70.0
rank_change 5.0
total_points 1378.62
result 2
rank_dif -8.0
points_by_rank 0.014286
team_points 1
country_classification Classe B
Name: 2826, dtype: object
date 2022-03-24 00:00:00
team Mexico
score 0.0
suf_score 0.0
rank 12.0
rank_suf 13.0
rank_change -2.0
total_points 1647.9
result 2
rank_dif -1.0
points_by_rank 0.076923
team_points 1
country_classification Classe S-
Name: 2827, dtype: object
date 2022-03-24 00:00:00
team Panama
score 1.0
suf_score 1.0
rank 63.0
rank_suf 78.0
rank_change 0.0
total_points 1375.56
result 2
rank_dif -15.0
points_by_rank 0.012821
team_points 1
country_classification Classe B
Name: 2828, dtype: object
date 2022-03-24 00:00:00
team Costa Rica
score 1.0
suf_score 0.0
rank 42.0
rank_suf 33.0
rank_change -7.0
total_points 1464.06
result 0
rank_dif 9.0
points_by_rank 0.090909
team_points 3
country_classification Classe A
Name: 2829, dtype: object
date 2022-03-24 00:00:00
team Lebanon
score 0.0
suf_score 3.0
rank 95.0
rank_suf 91.0
rank_change 0.0
total_points 1228.97
result 1
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2830, dtype: object
date 2022-03-24 00:00:00
team Iraq
score 1.0
suf_score 0.0
rank 74.0
rank_suf 69.0
rank_change -1.0
total_points 1325.44
result 0
rank_dif 5.0
points_by_rank 0.043478
team_points 3
country_classification Classe B
Name: 2831, dtype: object
date 2022-03-24 00:00:00
team South Korea
score 2.0
suf_score 0.0
rank 29.0
rank_suf 21.0
rank_change -4.0
total_points 1522.85
result 0
rank_dif 8.0
points_by_rank 0.142857
team_points 3
country_classification Classe A
Name: 2832, dtype: object
date 2022-03-24 00:00:00
team China PR
score 1.0
suf_score 1.0
rank 75.0
rank_suf 53.0
rank_change 1.0
total_points 1313.81
result 2
rank_dif 22.0
points_by_rank 0.018868
team_points 1
country_classification Classe B
Name: 2833, dtype: object
date 2022-03-24 00:00:00
team Vietnam
score 0.0
suf_score 1.0
rank 98.0
rank_suf 79.0
rank_change 0.0
total_points 1218.55
result 1
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2834, dtype: object
date 2022-03-24 00:00:00
team Australia
score 0.0
suf_score 2.0
rank 37.0
rank_suf 23.0
rank_change 2.0
total_points 1486.86
result 1
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2835, dtype: object
date 2022-03-24 00:00:00
team Solomon Islands
score 3.0
suf_score 1.0
rank 142.0
rank_suf 159.0
rank_change 1.0
total_points 1072.78
result 0
rank_dif -17.0
points_by_rank 0.018868
team_points 3
country_classification Classe C
Name: 2836, dtype: object
date 2022-03-24 00:00:00
team Fiji
score 1.0
suf_score 2.0
rank 162.0
rank_suf 165.0
rank_change 1.0
total_points 996.27
result 1
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2837, dtype: object
date 2022-03-24 00:00:00
team New Zealand
score 7.0
suf_score 1.0
rank 111.0
rank_suf 153.0
rank_change 1.0
total_points 1161.66
result 0
rank_dif -42.0
points_by_rank 0.019608
team_points 3
country_classification Classe C
Name: 2838, dtype: object
date 2022-03-24 00:00:00
team Colombia
score 3.0
suf_score 0.0
rank 19.0
rank_suf 76.0
rank_change 3.0
total_points 1585.89
result 0
rank_dif -57.0
points_by_rank 0.039474
team_points 3
country_classification Classe A
Name: 2839, dtype: object
date 2022-03-24 00:00:00
team Brazil
score 4.0
suf_score 0.0
rank 2.0
rank_suf 26.0
rank_change 0.0
total_points 1823.42
result 0
rank_dif -24.0
points_by_rank 0.115385
team_points 3
country_classification Classe S
Name: 2840, dtype: object
date 2022-03-24 00:00:00
team Paraguay
score 3.0
suf_score 1.0
rank 50.0
rank_suf 44.0
rank_change 7.0
total_points 1440.53
result 0
rank_dif 6.0
points_by_rank 0.068182
team_points 3
country_classification Classe A
Name: 2841, dtype: object
date 2022-03-24 00:00:00
team Uruguay
score 1.0
suf_score 0.0
rank 16.0
rank_suf 22.0
rank_change -1.0
total_points 1614.05
result 0
rank_dif -6.0
points_by_rank 0.136364
team_points 3
country_classification Classe S-
Name: 2842, dtype: object
date 2022-03-24 00:00:00
team Italy
score 0.0
suf_score 1.0
rank 6.0
rank_suf 67.0
rank_change 0.0
total_points 1740.77
result 1
rank_dif -61.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 2843, dtype: object
date 2022-03-24 00:00:00
team Portugal
score 3.0
suf_score 1.0
rank 8.0
rank_suf 39.0
rank_change 0.0
total_points 1660.25
result 0
rank_dif -31.0
points_by_rank 0.076923
team_points 3
country_classification Classe S-
Name: 2844, dtype: object
date 2022-03-24 00:00:00
team Sweden
score 1.0
suf_score 0.0
rank 17.0
rank_suf 31.0
rank_change -1.0
total_points 1588.26
result 0
rank_dif -14.0
points_by_rank 0.096774
team_points 3
country_classification Classe A
Name: 2845, dtype: object
date 2022-03-24 00:00:00
team Wales
score 2.0
suf_score 1.0
rank 20.0
rank_suf 30.0
rank_change 1.0
total_points 1578.01
result 0
rank_dif -10.0
points_by_rank 0.1
team_points 3
country_classification Classe A
Name: 2846, dtype: object
date 2022-03-24 00:00:00
team Armenia
score 1.0
suf_score 0.0
rank 92.0
rank_suf 72.0
rank_change 0.0
total_points 1242.24
result 0
rank_dif 20.0
points_by_rank 0.041667
team_points 3
country_classification Classe B
Name: 2847, dtype: object
date 2022-03-24 00:00:00
team Guatemala
score 1.0
suf_score 0.0
rank 123.0
rank_suf 179.0
rank_change 1.0
total_points 1138.4
result 0
rank_dif -56.0
points_by_rank 0.01676
team_points 3
country_classification Classe C
Name: 2848, dtype: object
date 2022-03-24 00:00:00
team Hungary
score 0.0
suf_score 1.0
rank 41.0
rank_suf 25.0
rank_change 2.0
total_points 1465.62
result 1
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2849, dtype: object
date 2022-03-24 00:00:00
team Kosovo
score 5.0
suf_score 0.0
rank 109.0
rank_suf 56.0
rank_change -2.0
total_points 1163.05
result 0
rank_dif 53.0
points_by_rank 0.053571
team_points 3
country_classification Classe C
Name: 2850, dtype: object
date 2022-03-24 00:00:00
team Liberia
score 0.0
suf_score 4.0
rank 145.0
rank_suf 83.0
rank_change 1.0
total_points 1058.28
result 1
rank_dif 62.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2851, dtype: object
date 2022-03-24 00:00:00
team Maldives
score 2.0
suf_score 0.0
rank 157.0
rank_suf 186.0
rank_change 0.0
total_points 1021.58
result 0
rank_dif -29.0
points_by_rank 0.016129
team_points 3
country_classification Classe C
Name: 2852, dtype: object
date 2022-03-24 00:00:00
team Scotland
score 1.0
suf_score 1.0
rank 40.0
rank_suf 28.0
rank_change 2.0
total_points 1471.82
result 2
rank_dif 12.0
points_by_rank 0.035714
team_points 1
country_classification Classe A
Name: 2853, dtype: object
date 2022-03-24 00:00:00
team Thailand
score 2.0
suf_score 0.0
rank 112.0
rank_suf 167.0
rank_change -3.0
total_points 1160.14
result 0
rank_dif -55.0
points_by_rank 0.017964
team_points 3
country_classification Classe C
Name: 2854, dtype: object
date 2022-03-24 00:00:00
team Togo
score 3.0
suf_score 0.0
rank 126.0
rank_suf 107.0
rank_change 2.0
total_points 1133.24
result 0
rank_dif 19.0
points_by_rank 0.028037
team_points 3
country_classification Classe C
Name: 2855, dtype: object
date 2022-03-24 00:00:00
team Estonia
score 0.0
suf_score 0.0
rank 106.0
rank_suf 105.0
rank_change -1.0
total_points 1176.5
result 2
rank_dif 1.0
points_by_rank 0.009524
team_points 1
country_classification Classe C
Name: 2856, dtype: object
date 2022-03-24 00:00:00
team Moldova
score 1.0
suf_score 2.0
rank 181.0
rank_suf 120.0
rank_change 0.0
total_points 926.85
result 1
rank_dif 61.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2857, dtype: object
date 2022-03-24 00:00:00
team Mauritius
score 3.0
suf_score 0.0
rank 176.0
rank_suf 189.0
rank_change 4.0
total_points 955.18
result 0
rank_dif -13.0
points_by_rank 0.015873
team_points 3
country_classification Classe D
Name: 2858, dtype: object
date 2022-03-25 00:00:00
team Cameroon
score 0.0
suf_score 1.0
rank 38.0
rank_suf 43.0
rank_change -12.0
total_points 1480.82
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2859, dtype: object
date 2022-03-25 00:00:00
team Egypt
score 1.0
suf_score 0.0
rank 34.0
rank_suf 18.0
rank_change -11.0
total_points 1497.05
result 0
rank_dif 16.0
points_by_rank 0.166667
team_points 3
country_classification Classe A
Name: 2860, dtype: object
date 2022-03-25 00:00:00
team Ghana
score 0.0
suf_score 0.0
rank 61.0
rank_suf 32.0
rank_change 9.0
total_points 1381.45
result 2
rank_dif 29.0
points_by_rank 0.03125
team_points 1
country_classification Classe B
Name: 2861, dtype: object
date 2022-03-25 00:00:00
team Mali
score 0.0
suf_score 1.0
rank 48.0
rank_suf 36.0
rank_change -5.0
total_points 1446.49
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2862, dtype: object
date 2022-03-25 00:00:00
team Argentina
score 3.0
suf_score 0.0
rank 4.0
rank_suf 58.0
rank_change -1.0
total_points 1766.99
result 0
rank_dif -54.0
points_by_rank 0.051724
team_points 3
country_classification Classe S
Name: 2863, dtype: object
date 2022-03-25 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 1.0
rank 59.0
rank_suf 86.0
rank_change -2.0
total_points 1391.19
result 1
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2864, dtype: object
date 2022-03-25 00:00:00
team Comoros
score 2.0
suf_score 1.0
rank 131.0
rank_suf 138.0
rank_change -1.0
total_points 1126.2
result 0
rank_dif -7.0
points_by_rank 0.021739
team_points 3
country_classification Classe C
Name: 2865, dtype: object
date 2022-03-25 00:00:00
team Congo
score 1.0
suf_score 3.0
rank 97.0
rank_suf 88.0
rank_change 0.0
total_points 1221.4
result 1
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2866, dtype: object
date 2022-03-25 00:00:00
team Latvia
score 1.0
suf_score 1.0
rank 135.0
rank_suf 143.0
rank_change 1.0
total_points 1100.03
result 2
rank_dif -8.0
points_by_rank 0.006993
team_points 1
country_classification Classe C
Name: 2867, dtype: object
date 2022-03-25 00:00:00
team Luxembourg
score 1.0
suf_score 3.0
rank 93.0
rank_suf 54.0
rank_change 0.0
total_points 1236.45
result 1
rank_dif 39.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2868, dtype: object
date 2022-03-25 00:00:00
team Malta
score 1.0
suf_score 0.0
rank 174.0
rank_suf 121.0
rank_change -1.0
total_points 958.95
result 0
rank_dif 53.0
points_by_rank 0.024793
team_points 3
country_classification Classe D
Name: 2869, dtype: object
date 2022-03-25 00:00:00
team Norway
score 2.0
suf_score 0.0
rank 45.0
rank_suf 46.0
rank_change 4.0
total_points 1455.43
result 0
rank_dif -1.0
points_by_rank 0.065217
team_points 3
country_classification Classe A
Name: 2870, dtype: object
date 2022-03-25 00:00:00
team Romania
score 0.0
suf_score 1.0
rank 47.0
rank_suf 55.0
rank_change 3.0
total_points 1453.18
result 1
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2871, dtype: object
date 2022-03-25 00:00:00
team San Marino
score 1.0
suf_score 2.0
rank 210.0
rank_suf 137.0
rank_change 0.0
total_points 780.33
result 1
rank_dif 73.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2872, dtype: object
date 2022-03-25 00:00:00
team South Africa
score 0.0
suf_score 0.0
rank 68.0
rank_suf 81.0
rank_change 0.0
total_points 1358.24
result 2
rank_dif -13.0
points_by_rank 0.012346
team_points 1
country_classification Classe B
Name: 2873, dtype: object
date 2022-03-25 00:00:00
team Tajikistan
score 1.0
suf_score 1.0
rank 115.0
rank_suf 84.0
rank_change -1.0
total_points 1152.56
result 2
rank_dif 31.0
points_by_rank 0.011905
team_points 1
country_classification Classe C
Name: 2874, dtype: object
date 2022-03-25 00:00:00
team Trinidad and Tobago
score 9.0
suf_score 0.0
rank 101.0
rank_suf 163.0
rank_change 1.0
total_points 1205.99
result 0
rank_dif -62.0
points_by_rank 0.018405
team_points 3
country_classification Classe B
Name: 2875, dtype: object
date 2022-03-26 00:00:00
team Angola
score 3.0
suf_score 2.0
rank 127.0
rank_suf 113.0
rank_change 1.0
total_points 1131.72
result 0
rank_dif 14.0
points_by_rank 0.026549
team_points 3
country_classification Classe C
Name: 2876, dtype: object
date 2022-03-26 00:00:00
team Bahrain
score 1.0
suf_score 0.0
rank 89.0
rank_suf 141.0
rank_change -2.0
total_points 1263.61
result 0
rank_dif -52.0
points_by_rank 0.021277
team_points 3
country_classification Classe B
Name: 2877, dtype: object
date 2022-03-26 00:00:00
team Belarus
score 3.0
suf_score 0.0
rank 94.0
rank_suf 104.0
rank_change 0.0
total_points 1233.43
result 0
rank_dif -10.0
points_by_rank 0.028846
team_points 3
country_classification Classe B
Name: 2878, dtype: object
date 2022-03-26 00:00:00
team Central African Republic
score 0.0
suf_score 0.0
rank 130.0
rank_suf 133.0
rank_change 0.0
total_points 1127.2
result 2
rank_dif -3.0
points_by_rank 0.007519
team_points 1
country_classification Classe C
Name: 2879, dtype: object
date 2022-03-26 00:00:00
team Croatia
score 1.0
suf_score 1.0
rank 15.0
rank_suf 64.0
rank_change 0.0
total_points 1620.74
result 2
rank_dif -49.0
points_by_rank 0.015625
team_points 1
country_classification Classe S-
Name: 2880, dtype: object
date 2022-03-26 00:00:00
team England
score 2.0
suf_score 1.0
rank 5.0
rank_suf 14.0
rank_change 1.0
total_points 1755.52
result 0
rank_dif -9.0
points_by_rank 0.214286
team_points 3
country_classification Classe S
Name: 2881, dtype: object
date 2022-03-26 00:00:00
team Finland
score 1.0
suf_score 1.0
rank 57.0
rank_suf 60.0
rank_change -1.0
total_points 1411.77
result 2
rank_dif -3.0
points_by_rank 0.016667
team_points 1
country_classification Classe A
Name: 2882, dtype: object
date 2022-03-26 00:00:00
team Germany
score 2.0
suf_score 0.0
rank 11.0
rank_suf 77.0
rank_change -1.0
total_points 1648.33
result 0
rank_dif -66.0
points_by_rank 0.038961
team_points 3
country_classification Classe S-
Name: 2883, dtype: object
date 2022-03-26 00:00:00
team Gibraltar
score 0.0
suf_score 0.0
rank 203.0
rank_suf 124.0
rank_change 0.0
total_points 853.6
result 2
rank_dif 79.0
points_by_rank 0.008065
team_points 1
country_classification Classe D
Name: 2884, dtype: object
date 2022-03-26 00:00:00
team Libya
score 2.0
suf_score 1.0
rank 118.0
rank_suf 114.0
rank_change 1.0
total_points 1149.51
result 0
rank_dif 4.0
points_by_rank 0.026316
team_points 3
country_classification Classe C
Name: 2885, dtype: object
date 2022-03-26 00:00:00
team Mauritania
score 2.0
suf_score 1.0
rank 116.0
rank_suf 117.0
rank_change 13.0
total_points 1152.52
result 0
rank_dif -1.0
points_by_rank 0.025641
team_points 3
country_classification Classe C
Name: 2886, dtype: object
date 2022-03-26 00:00:00
team Netherlands
score 4.0
suf_score 2.0
rank 10.0
rank_suf 9.0
rank_change 0.0
total_points 1653.73
result 0
rank_dif 1.0
points_by_rank 0.333333
team_points 3
country_classification Classe S-
Name: 2887, dtype: object
date 2022-03-26 00:00:00
team Qatar
score 2.0
suf_score 1.0
rank 52.0
rank_suf 71.0
rank_change 4.0
total_points 1437.91
result 0
rank_dif -19.0
points_by_rank 0.042254
team_points 3
country_classification Classe A
Name: 2888, dtype: object
date 2022-03-26 00:00:00
team Republic of Ireland
score 2.0
suf_score 2.0
rank 49.0
rank_suf 1.0
rank_change 2.0
total_points 1444.29
result 2
rank_dif 48.0
points_by_rank 1.0
team_points 1
country_classification Classe A
Name: 2889, dtype: object
date 2022-03-26 00:00:00
team Singapore
score 2.0
suf_score 1.0
rank 161.0
rank_suf 154.0
rank_change 1.0
total_points 1000.78
result 0
rank_dif 7.0
points_by_rank 0.019481
team_points 3
country_classification Classe C
Name: 2890, dtype: object
date 2022-03-26 00:00:00
team Spain
score 2.0
suf_score 1.0
rank 7.0
rank_suf 65.0
rank_change 0.0
total_points 1704.75
result 0
rank_dif -58.0
points_by_rank 0.046154
team_points 3
country_classification Classe S
Name: 2891, dtype: object
date 2022-03-27 00:00:00
team El Salvador
score 1.0
suf_score 2.0
rank 70.0
rank_suf 42.0
rank_change 0.0
total_points 1346.04
result 1
rank_dif 28.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2892, dtype: object
date 2022-03-27 00:00:00
team Canada
score 4.0
suf_score 0.0
rank 33.0
rank_suf 62.0
rank_change -7.0
total_points 1497.82
result 0
rank_dif -29.0
points_by_rank 0.048387
team_points 3
country_classification Classe A
Name: 2893, dtype: object
date 2022-03-27 00:00:00
team Honduras
score 0.0
suf_score 1.0
rank 78.0
rank_suf 12.0
rank_change 2.0
total_points 1303.96
result 1
rank_dif 66.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2894, dtype: object
date 2022-03-27 00:00:00
team United States
score 5.0
suf_score 1.0
rank 13.0
rank_suf 63.0
rank_change 2.0
total_points 1643.34
result 0
rank_dif -50.0
points_by_rank 0.047619
team_points 3
country_classification Classe S-
Name: 2895, dtype: object
date 2022-03-27 00:00:00
team New Zealand
score 1.0
suf_score 0.0
rank 111.0
rank_suf 159.0
rank_change 1.0
total_points 1161.66
result 0
rank_dif -48.0
points_by_rank 0.018868
team_points 3
country_classification Classe C
Name: 2896, dtype: object
date 2022-03-27 00:00:00
team Solomon Islands
score 3.0
suf_score 2.0
rank 142.0
rank_suf 165.0
rank_change 1.0
total_points 1072.78
result 0
rank_dif -23.0
points_by_rank 0.018182
team_points 3
country_classification Classe C
Name: 2897, dtype: object
date 2022-03-27 00:00:00
team Barbados
score 0.0
suf_score 5.0
rank 163.0
rank_suf 175.0
rank_change 1.0
total_points 995.94
result 1
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2898, dtype: object
date 2022-03-27 00:00:00
team Belize
score 0.0
suf_score 3.0
rank 170.0
rank_suf 179.0
rank_change 0.0
total_points 967.42
result 1
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2899, dtype: object
date 2022-03-27 00:00:00
team Benin
score 2.0
suf_score 1.0
rank 83.0
rank_suf 88.0
rank_change 0.0
total_points 1282.53
result 0
rank_dif -5.0
points_by_rank 0.034091
team_points 3
country_classification Classe B
Name: 2900, dtype: object
date 2022-03-27 00:00:00
team Guatemala
score 2.0
suf_score 1.0
rank 123.0
rank_suf 87.0
rank_change 1.0
total_points 1138.4
result 0
rank_dif 36.0
points_by_rank 0.034483
team_points 3
country_classification Classe C
Name: 2901, dtype: object
date 2022-03-27 00:00:00
team Liberia
score 0.0
suf_score 1.0
rank 145.0
rank_suf 107.0
rank_change 1.0
total_points 1058.28
result 1
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2902, dtype: object
date 2022-03-27 00:00:00
team Thailand
score 1.0
suf_score 0.0
rank 112.0
rank_suf 140.0
rank_change -3.0
total_points 1160.14
result 0
rank_dif -28.0
points_by_rank 0.021429
team_points 3
country_classification Classe C
Name: 2903, dtype: object
date 2022-03-27 00:00:00
team South Sudan
score 1.0
suf_score 0.0
rank 168.0
rank_suf 192.0
rank_change 1.0
total_points 977.81
result 0
rank_dif -24.0
points_by_rank 0.015625
team_points 3
country_classification Classe D
Name: 2904, dtype: object
date 2022-03-27 00:00:00
team Lesotho
score 3.0
suf_score 1.0
rank 146.0
rank_suf 196.0
rank_change 1.0
total_points 1057.62
result 0
rank_dif -50.0
points_by_rank 0.015306
team_points 3
country_classification Classe C
Name: 2905, dtype: object
date 2022-03-27 00:00:00
team Eswatini
score 2.0
suf_score 1.0
rank 147.0
rank_suf 194.0
rank_change 1.0
total_points 1054.14
result 0
rank_dif -47.0
points_by_rank 0.015464
team_points 3
country_classification Classe C
Name: 2906, dtype: object
date 2022-03-27 00:00:00
team Mauritius
score 3.0
suf_score 3.0
rank 176.0
rank_suf 189.0
rank_change 4.0
total_points 955.18
result 2
rank_dif -13.0
points_by_rank 0.005291
team_points 1
country_classification Classe D
Name: 2907, dtype: object
date 2022-03-28 00:00:00
team Andorra
score 1.0
suf_score 0.0
rank 155.0
rank_suf 169.0
rank_change 0.0
total_points 1030.28
result 0
rank_dif -14.0
points_by_rank 0.017751
team_points 3
country_classification Classe C
Name: 2908, dtype: object
date 2022-03-28 00:00:00
team Montenegro
score 1.0
suf_score 0.0
rank 72.0
rank_suf 55.0
rank_change 0.0
total_points 1342.89
result 0
rank_dif 17.0
points_by_rank 0.054545
team_points 3
country_classification Classe B
Name: 2909, dtype: object
date 2022-03-28 00:00:00
team Vanuatu
score 1.0
suf_score 2.0
rank 164.0
rank_suf 162.0
rank_change 1.0
total_points 995.62
result 1
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2910, dtype: object
date 2022-03-29 00:00:00
team Algeria
score 1.0
suf_score 2.0
rank 43.0
rank_suf 38.0
rank_change 14.0
total_points 1460.93
result 1
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2911, dtype: object
date 2022-03-29 00:00:00
team Nigeria
score 1.0
suf_score 1.0
rank 32.0
rank_suf 61.0
rank_change -4.0
total_points 1509.91
result 2
rank_dif -29.0
points_by_rank 0.016393
team_points 1
country_classification Classe A
Name: 2912, dtype: object
date 2022-03-29 00:00:00
team Senegal
score 1.0
suf_score 0.0
rank 18.0
rank_suf 34.0
rank_change -2.0
total_points 1587.78
result 0
rank_dif -16.0
points_by_rank 0.088235
team_points 3
country_classification Classe A
Name: 2913, dtype: object
date 2022-03-29 00:00:00
team Tunisia
score 0.0
suf_score 0.0
rank 36.0
rank_suf 48.0
rank_change 6.0
total_points 1489.92
result 2
rank_dif -12.0
points_by_rank 0.020833
team_points 1
country_classification Classe A
Name: 2914, dtype: object
date 2022-03-29 00:00:00
team Iran
score 2.0
suf_score 0.0
rank 21.0
rank_suf 95.0
rank_change 0.0
total_points 1572.89
result 0
rank_dif -74.0
points_by_rank 0.031579
team_points 3
country_classification Classe A
Name: 2915, dtype: object
date 2022-03-29 00:00:00
team Syria
score 1.0
suf_score 1.0
rank 91.0
rank_suf 74.0
rank_change 5.0
total_points 1251.22
result 2
rank_dif 17.0
points_by_rank 0.013514
team_points 1
country_classification Classe B
Name: 2916, dtype: object
date 2022-03-29 00:00:00
team United Arab Emirates
score 1.0
suf_score 0.0
rank 69.0
rank_suf 29.0
rank_change 0.0
total_points 1353.1
result 0
rank_dif 40.0
points_by_rank 0.103448
team_points 3
country_classification Classe B
Name: 2917, dtype: object
date 2022-03-29 00:00:00
team Japan
score 1.0
suf_score 1.0
rank 23.0
rank_suf 98.0
rank_change -3.0
total_points 1549.82
result 2
rank_dif -75.0
points_by_rank 0.010204
team_points 1
country_classification Classe A
Name: 2918, dtype: object
date 2022-03-29 00:00:00
team Oman
score 2.0
suf_score 0.0
rank 79.0
rank_suf 75.0
rank_change 0.0
total_points 1301.0
result 0
rank_dif 4.0
points_by_rank 0.04
team_points 3
country_classification Classe B
Name: 2919, dtype: object
date 2022-03-29 00:00:00
team Saudi Arabia
score 1.0
suf_score 0.0
rank 53.0
rank_suf 37.0
rank_change 2.0
total_points 1433.95
result 0
rank_dif 16.0
points_by_rank 0.081081
team_points 3
country_classification Classe A
Name: 2920, dtype: object
date 2022-03-29 00:00:00
team Ecuador
score 1.0
suf_score 1.0
rank 44.0
rank_suf 4.0
rank_change -2.0
total_points 1458.63
result 2
rank_dif 40.0
points_by_rank 0.25
team_points 1
country_classification Classe A
Name: 2921, dtype: object
date 2022-03-29 00:00:00
team Peru
score 2.0
suf_score 0.0
rank 22.0
rank_suf 50.0
rank_change 0.0
total_points 1563.45
result 0
rank_dif -28.0
points_by_rank 0.06
team_points 3
country_classification Classe A
Name: 2922, dtype: object
date 2022-03-29 00:00:00
team Bolivia
score 0.0
suf_score 4.0
rank 76.0
rank_suf 2.0
rank_change -1.0
total_points 1308.12
result 1
rank_dif 74.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2923, dtype: object
date 2022-03-29 00:00:00
team Venezuela
score 0.0
suf_score 1.0
rank 58.0
rank_suf 19.0
rank_change -1.0
total_points 1411.45
result 1
rank_dif 39.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2924, dtype: object
date 2022-03-29 00:00:00
team Chile
score 0.0
suf_score 2.0
rank 26.0
rank_suf 16.0
rank_change 2.0
total_points 1543.16
result 1
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2925, dtype: object
date 2022-03-29 00:00:00
team Poland
score 2.0
suf_score 0.0
rank 28.0
rank_suf 17.0
rank_change 1.0
total_points 1530.62
result 0
rank_dif 11.0
points_by_rank 0.176471
team_points 3
country_classification Classe A
Name: 2926, dtype: object
date 2022-03-29 00:00:00
team Portugal
score 2.0
suf_score 0.0
rank 8.0
rank_suf 67.0
rank_change 0.0
total_points 1660.25
result 0
rank_dif -59.0
points_by_rank 0.044776
team_points 3
country_classification Classe S-
Name: 2927, dtype: object
date 2022-03-29 00:00:00
team Albania
score 0.0
suf_score 0.0
rank 65.0
rank_suf 86.0
rank_change -1.0
total_points 1374.98
result 2
rank_dif -21.0
points_by_rank 0.011628
team_points 1
country_classification Classe B
Name: 2928, dtype: object
date 2022-03-29 00:00:00
team Angola
score 0.0
suf_score 0.0
rank 127.0
rank_suf 99.0
rank_change 1.0
total_points 1131.72
result 2
rank_dif 28.0
points_by_rank 0.010101
team_points 1
country_classification Classe C
Name: 2929, dtype: object
date 2022-03-29 00:00:00
team Austria
score 2.0
suf_score 2.0
rank 30.0
rank_suf 40.0
rank_change -1.0
total_points 1511.56
result 2
rank_dif -10.0
points_by_rank 0.025
team_points 1
country_classification Classe A
Name: 2930, dtype: object
date 2022-03-29 00:00:00
team Azerbaijan
score 0.0
suf_score 1.0
rank 121.0
rank_suf 135.0
rank_change 1.0
total_points 1139.02
result 1
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2931, dtype: object
date 2022-03-29 00:00:00
team Bahrain
score 0.0
suf_score 1.0
rank 89.0
rank_suf 94.0
rank_change -2.0
total_points 1263.61
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2932, dtype: object
date 2022-03-29 00:00:00
team Bangladesh
score 0.0
suf_score 0.0
rank 186.0
rank_suf 184.0
rank_change 0.0
total_points 907.83
result 2
rank_dif 2.0
points_by_rank 0.005435
team_points 1
country_classification Classe D
Name: 2933, dtype: object
date 2022-03-29 00:00:00
team Belgium
score 3.0
suf_score 0.0
rank 1.0
rank_suf 56.0
rank_change 0.0
total_points 1828.45
result 0
rank_dif -55.0
points_by_rank 0.053571
team_points 3
country_classification Classe S
Name: 2934, dtype: object
date 2022-03-29 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 0.0
rank 59.0
rank_suf 93.0
rank_change -2.0
total_points 1391.19
result 0
rank_dif -34.0
points_by_rank 0.032258
team_points 3
country_classification Classe B
Name: 2935, dtype: object
date 2022-03-29 00:00:00
team Congo
score 1.0
suf_score 2.0
rank 97.0
rank_suf 107.0
rank_change 0.0
total_points 1221.4
result 1
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2936, dtype: object
date 2022-03-29 00:00:00
team Croatia
score 2.0
suf_score 1.0
rank 15.0
rank_suf 71.0
rank_change 0.0
total_points 1620.74
result 0
rank_dif -56.0
points_by_rank 0.042254
team_points 3
country_classification Classe S-
Name: 2937, dtype: object
date 2022-03-29 00:00:00
team Denmark
score 3.0
suf_score 0.0
rank 9.0
rank_suf 25.0
rank_change 0.0
total_points 1654.54
result 0
rank_dif -16.0
points_by_rank 0.12
team_points 3
country_classification Classe S-
Name: 2938, dtype: object
date 2022-03-29 00:00:00
team Faroe Islands
score 1.0
suf_score 0.0
rank 124.0
rank_suf 191.0
rank_change 1.0
total_points 1136.99
result 0
rank_dif -67.0
points_by_rank 0.015707
team_points 3
country_classification Classe C
Name: 2939, dtype: object
date 2022-03-29 00:00:00
team Finland
score 0.0
suf_score 2.0
rank 57.0
rank_suf 46.0
rank_change -1.0
total_points 1411.77
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2940, dtype: object
date 2022-03-29 00:00:00
team France
score 5.0
suf_score 0.0
rank 3.0
rank_suf 68.0
rank_change 0.0
total_points 1786.15
result 0
rank_dif -65.0
points_by_rank 0.044118
team_points 3
country_classification Classe S
Name: 2941, dtype: object
date 2022-03-29 00:00:00
team Israel
score 2.0
suf_score 2.0
rank 77.0
rank_suf 47.0
rank_change -1.0
total_points 1306.7
result 2
rank_dif 30.0
points_by_rank 0.021277
team_points 1
country_classification Classe B
Name: 2942, dtype: object
date 2022-03-29 00:00:00
team Liberia
score 1.0
suf_score 2.0
rank 145.0
rank_suf 141.0
rank_change 1.0
total_points 1058.28
result 1
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2943, dtype: object
date 2022-03-29 00:00:00
team Malta
score 2.0
suf_score 0.0
rank 174.0
rank_suf 143.0
rank_change -1.0
total_points 958.95
result 0
rank_dif 31.0
points_by_rank 0.020979
team_points 3
country_classification Classe D
Name: 2944, dtype: object
date 2022-03-29 00:00:00
team Mauritania
score 2.0
suf_score 0.0
rank 116.0
rank_suf 118.0
rank_change 13.0
total_points 1152.52
result 0
rank_dif -2.0
points_by_rank 0.025424
team_points 3
country_classification Classe C
Name: 2945, dtype: object
date 2022-03-29 00:00:00
team Netherlands
score 1.0
suf_score 1.0
rank 10.0
rank_suf 11.0
rank_change 0.0
total_points 1653.73
result 2
rank_dif -1.0
points_by_rank 0.090909
team_points 1
country_classification Classe S-
Name: 2946, dtype: object
date 2022-03-29 00:00:00
team Northern Ireland
score 0.0
suf_score 1.0
rank 54.0
rank_suf 41.0
rank_change 0.0
total_points 1424.97
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2947, dtype: object
date 2022-03-29 00:00:00
team Norway
score 9.0
suf_score 0.0
rank 45.0
rank_suf 92.0
rank_change 4.0
total_points 1455.43
result 0
rank_dif -47.0
points_by_rank 0.032609
team_points 3
country_classification Classe A
Name: 2948, dtype: object
date 2022-03-29 00:00:00
team Qatar
score 0.0
suf_score 0.0
rank 52.0
rank_suf 64.0
rank_change 4.0
total_points 1437.91
result 2
rank_dif -12.0
points_by_rank 0.015625
team_points 1
country_classification Classe A
Name: 2949, dtype: object
date 2022-03-29 00:00:00
team Republic of Ireland
score 1.0
suf_score 0.0
rank 49.0
rank_suf 137.0
rank_change 2.0
total_points 1444.29
result 0
rank_dif -88.0
points_by_rank 0.021898
team_points 3
country_classification Classe A
Name: 2950, dtype: object
date 2022-03-29 00:00:00
team Singapore
score 2.0
suf_score 0.0
rank 161.0
rank_suf 129.0
rank_change 1.0
total_points 1000.78
result 0
rank_dif 32.0
points_by_rank 0.023256
team_points 3
country_classification Classe C
Name: 2951, dtype: object
date 2022-03-29 00:00:00
team Spain
score 5.0
suf_score 0.0
rank 7.0
rank_suf 60.0
rank_change 0.0
total_points 1704.75
result 0
rank_dif -53.0
points_by_rank 0.05
team_points 3
country_classification Classe S
Name: 2952, dtype: object
date 2022-03-29 00:00:00
team Switzerland
score 1.0
suf_score 1.0
rank 14.0
rank_suf 109.0
rank_change 1.0
total_points 1642.83
result 2
rank_dif -95.0
points_by_rank 0.009174
team_points 1
country_classification Classe S-
Name: 2953, dtype: object
date 2022-03-29 00:00:00
team Tanzania
score 1.0
suf_score 1.0
rank 132.0
rank_suf 133.0
rank_change 1.0
total_points 1118.76
result 2
rank_dif -1.0
points_by_rank 0.007519
team_points 1
country_classification Classe C
Name: 2954, dtype: object
date 2022-03-29 00:00:00
team Togo
score 1.0
suf_score 1.0
rank 126.0
rank_suf 83.0
rank_change 2.0
total_points 1133.24
result 2
rank_dif 43.0
points_by_rank 0.012048
team_points 1
country_classification Classe C
Name: 2955, dtype: object
date 2022-03-29 00:00:00
team Trinidad and Tobago
score 1.0
suf_score 1.0
rank 101.0
rank_suf 175.0
rank_change 1.0
total_points 1205.99
result 2
rank_dif -74.0
points_by_rank 0.005714
team_points 1
country_classification Classe B
Name: 2956, dtype: object
date 2022-03-29 00:00:00
team Turkey
score 2.0
suf_score 3.0
rank 39.0
rank_suf 6.0
rank_change 2.0
total_points 1472.72
result 1
rank_dif 33.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2957, dtype: object
date 2022-03-29 00:00:00
team Wales
score 1.0
suf_score 1.0
rank 20.0
rank_suf 31.0
rank_change 1.0
total_points 1578.01
result 2
rank_dif -11.0
points_by_rank 0.032258
team_points 1
country_classification Classe A
Name: 2958, dtype: object
date 2022-03-29 00:00:00
team Uzbekistan
score 4.0
suf_score 2.0
rank 85.0
rank_suf 84.0
rank_change 1.0
total_points 1277.02
result 0
rank_dif 1.0
points_by_rank 0.035714
team_points 3
country_classification Classe B
Name: 2959, dtype: object
date 2022-03-29 00:00:00
team Cyprus
score 2.0
suf_score 0.0
rank 105.0
rank_suf 106.0
rank_change 0.0
total_points 1178.65
result 0
rank_dif -1.0
points_by_rank 0.028302
team_points 3
country_classification Classe C
Name: 2960, dtype: object
date 2022-03-29 00:00:00
team Kazakhstan
score 0.0
suf_score 1.0
rank 120.0
rank_suf 181.0
rank_change 1.0
total_points 1140.71
result 1
rank_dif -61.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2961, dtype: object
date 2022-03-29 00:00:00
team Gambia
score 2.0
suf_score 2.0
rank 125.0
rank_suf 180.0
rank_change -25.0
total_points 1135.18
result 2
rank_dif -55.0
points_by_rank 0.005556
team_points 1
country_classification Classe C
Name: 2962, dtype: object
date 2022-03-30 00:00:00
team Mexico
score 2.0
suf_score 0.0
rank 12.0
rank_suf 70.0
rank_change -2.0
total_points 1647.9
result 0
rank_dif -58.0
points_by_rank 0.042857
team_points 3
country_classification Classe S-
Name: 2963, dtype: object
date 2022-03-30 00:00:00
team Costa Rica
score 2.0
suf_score 0.0
rank 42.0
rank_suf 13.0
rank_change -7.0
total_points 1464.06
result 0
rank_dif 29.0
points_by_rank 0.230769
team_points 3
country_classification Classe A
Name: 2964, dtype: object
date 2022-03-30 00:00:00
team Panama
score 1.0
suf_score 0.0
rank 63.0
rank_suf 33.0
rank_change 0.0
total_points 1375.56
result 0
rank_dif 30.0
points_by_rank 0.090909
team_points 3
country_classification Classe B
Name: 2965, dtype: object
date 2022-03-30 00:00:00
team Jamaica
score 2.0
suf_score 1.0
rank 62.0
rank_suf 78.0
rank_change 5.0
total_points 1378.62
result 0
rank_dif -16.0
points_by_rank 0.038462
team_points 3
country_classification Classe B
Name: 2966, dtype: object
date 2022-03-30 00:00:00
team Solomon Islands
score 0.0
suf_score 5.0
rank 142.0
rank_suf 111.0
rank_change 1.0
total_points 1072.78
result 1
rank_dif 31.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2967, dtype: object
date 2022-04-24 00:00:00
team El Salvador
score 0.0
suf_score 4.0
rank 74.0
rank_suf 118.0
rank_change 4.0
total_points 1331.65
result 1
rank_dif -44.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2968, dtype: object
date 2022-04-27 00:00:00
team Mexico
score 0.0
suf_score 0.0
rank 9.0
rank_suf 118.0
rank_change -3.0
total_points 1658.82
result 2
rank_dif -109.0
points_by_rank 0.008475
team_points 1
country_classification Classe S-
Name: 2969, dtype: object
date 2022-05-12 00:00:00
team Bahamas
score 4.0
suf_score 2.0
rank 201.0
rank_suf 206.0
rank_change 0.0
total_points 858.5
result 0
rank_dif -5.0
points_by_rank 0.014563
team_points 3
country_classification Classe D
Name: 2970, dtype: object
date 2022-05-14 00:00:00
team Bahamas
score 1.0
suf_score 2.0
rank 201.0
rank_suf 206.0
rank_change 0.0
total_points 858.5
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2971, dtype: object
date 2022-05-24 00:00:00
team Mozambique
score 0.0
suf_score 1.0
rank 119.0
rank_suf 143.0
rank_change 2.0
total_points 1146.09
result 1
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2972, dtype: object
date 2022-05-24 00:00:00
team Thailand
score 3.0
suf_score 1.0
rank 111.0
rank_suf 89.0
rank_change -1.0
total_points 1167.68
result 0
rank_dif 22.0
points_by_rank 0.033708
team_points 3
country_classification Classe C
Name: 2973, dtype: object
date 2022-05-27 00:00:00
team Bahrain
score 2.0
suf_score 0.0
rank 89.0
rank_suf 152.0
rank_change 0.0
total_points 1262.55
result 0
rank_dif -63.0
points_by_rank 0.019737
team_points 3
country_classification Classe B
Name: 2974, dtype: object
date 2022-05-27 00:00:00
team Thailand
score 1.0
suf_score 0.0
rank 111.0
rank_suf 134.0
rank_change -1.0
total_points 1167.68
result 0
rank_dif -23.0
points_by_rank 0.022388
team_points 3
country_classification Classe C
Name: 2975, dtype: object
date 2022-05-28 00:00:00
team Ethiopia
score 1.0
suf_score 1.0
rank 140.0
rank_suf 145.0
rank_change 2.0
total_points 1076.67
result 2
rank_dif -5.0
points_by_rank 0.006897
team_points 1
country_classification Classe C
Name: 2976, dtype: object
date 2022-05-28 00:00:00
team India
score 0.0
suf_score 2.0
rank 106.0
rank_suf 91.0
rank_change 2.0
total_points 1174.04
result 1
rank_dif 15.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2977, dtype: object
date 2022-05-28 00:00:00
team Mexico
score 2.0
suf_score 1.0
rank 9.0
rank_suf 30.0
rank_change -3.0
total_points 1658.82
result 0
rank_dif -21.0
points_by_rank 0.1
team_points 3
country_classification Classe S-
Name: 2978, dtype: object
date 2022-05-29 00:00:00
team United Arab Emirates
score 1.0
suf_score 1.0
rank 68.0
rank_suf 123.0
rank_change -1.0
total_points 1356.99
result 2
rank_dif -55.0
points_by_rank 0.00813
team_points 1
country_classification Classe B
Name: 2979, dtype: object
date 2022-05-30 00:00:00
team Ethiopia
score 1.0
suf_score 1.0
rank 140.0
rank_suf 145.0
rank_change 2.0
total_points 1076.67
result 2
rank_dif -5.0
points_by_rank 0.006897
team_points 1
country_classification Classe C
Name: 2980, dtype: object
date 2022-05-31 00:00:00
team Thailand
score 1.0
suf_score 2.0
rank 111.0
rank_suf 89.0
rank_change -1.0
total_points 1167.68
result 1
rank_dif 22.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2981, dtype: object
date 2022-06-01 00:00:00
team Italy
score 0.0
suf_score 3.0
rank 6.0
rank_suf 4.0
rank_change 0.0
total_points 1723.31
result 1
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 2982, dtype: object
date 2022-06-01 00:00:00
team Scotland
score 1.0
suf_score 3.0
rank 39.0
rank_suf 27.0
rank_change -1.0
total_points 1472.66
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2983, dtype: object
date 2022-06-01 00:00:00
team Angola
score 2.0
suf_score 1.0
rank 126.0
rank_suf 131.0
rank_change -1.0
total_points 1131.72
result 0
rank_dif -5.0
points_by_rank 0.022901
team_points 3
country_classification Classe C
Name: 2984, dtype: object
date 2022-06-01 00:00:00
team Ghana
score 3.0
suf_score 0.0
rank 60.0
rank_suf 102.0
rank_change -1.0
total_points 1387.36
result 0
rank_dif -42.0
points_by_rank 0.029412
team_points 3
country_classification Classe B
Name: 2985, dtype: object
date 2022-06-01 00:00:00
team Libya
score 1.0
suf_score 0.0
rank 117.0
rank_suf 148.0
rank_change -1.0
total_points 1149.63
result 0
rank_dif -31.0
points_by_rank 0.02027
team_points 3
country_classification Classe C
Name: 2986, dtype: object
date 2022-06-01 00:00:00
team Poland
score 2.0
suf_score 1.0
rank 26.0
rank_suf 18.0
rank_change -2.0
total_points 1544.2
result 0
rank_dif 8.0
points_by_rank 0.166667
team_points 3
country_classification Classe A
Name: 2987, dtype: object
date 2022-06-01 00:00:00
team Australia
score 2.0
suf_score 1.0
rank 42.0
rank_suf 91.0
rank_change 5.0
total_points 1462.29
result 0
rank_dif -49.0
points_by_rank 0.032967
team_points 3
country_classification Classe A
Name: 2988, dtype: object
date 2022-06-01 00:00:00
team Indonesia
score 0.0
suf_score 0.0
rank 159.0
rank_suf 188.0
rank_change -1.0
total_points 1001.61
result 2
rank_dif -29.0
points_by_rank 0.005319
team_points 1
country_classification Classe C
Name: 2989, dtype: object
date 2022-06-01 00:00:00
team Malta
score 0.0
suf_score 1.0
rank 169.0
rank_suf 58.0
rank_change -5.0
total_points 971.56
result 1
rank_dif 111.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2990, dtype: object
date 2022-06-01 00:00:00
team Kuwait
score 0.0
suf_score 0.0
rank 146.0
rank_suf 158.0
rank_change 3.0
total_points 1059.94
result 2
rank_dif -12.0
points_by_rank 0.006329
team_points 1
country_classification Classe C
Name: 2991, dtype: object
date 2022-06-01 00:00:00
team Malaysia
score 2.0
suf_score 0.0
rank 154.0
rank_suf 147.0
rank_change 0.0
total_points 1035.06
result 0
rank_dif 7.0
points_by_rank 0.020408
team_points 3
country_classification Classe C
Name: 2992, dtype: object
date 2022-06-01 00:00:00
team Syria
score 1.0
suf_score 0.0
rank 88.0
rank_suf 114.0
rank_change -3.0
total_points 1265.03
result 0
rank_dif -26.0
points_by_rank 0.026316
team_points 3
country_classification Classe B
Name: 2993, dtype: object
date 2022-06-01 00:00:00
team United States
score 3.0
suf_score 0.0
rank 15.0
rank_suf 24.0
rank_change 2.0
total_points 1633.72
result 0
rank_dif -9.0
points_by_rank 0.125
team_points 3
country_classification Classe S-
Name: 2994, dtype: object
date 2022-06-01 00:00:00
team Vietnam
score 2.0
suf_score 0.0
rank 96.0
rank_suf 150.0
rank_change -2.0
total_points 1215.38
result 0
rank_dif -54.0
points_by_rank 0.02
team_points 3
country_classification Classe B
Name: 2995, dtype: object
date 2022-06-02 00:00:00
team Tunisia
score 4.0
suf_score 0.0
rank 35.0
rank_suf 99.0
rank_change -1.0
total_points 1499.8
result 0
rank_dif -64.0
points_by_rank 0.030303
team_points 3
country_classification Classe A
Name: 2996, dtype: object
date 2022-06-02 00:00:00
team Mozambique
score 1.0
suf_score 1.0
rank 119.0
rank_suf 136.0
rank_change 2.0
total_points 1146.09
result 2
rank_dif -17.0
points_by_rank 0.007353
team_points 1
country_classification Classe C
Name: 2997, dtype: object
date 2022-06-02 00:00:00
team Panama
score 2.0
suf_score 0.0
rank 61.0
rank_suf 31.0
rank_change -2.0
total_points 1382.79
result 0
rank_dif 30.0
points_by_rank 0.096774
team_points 3
country_classification Classe B
Name: 2998, dtype: object
date 2022-06-02 00:00:00
team Barbados
score 0.0
suf_score 1.0
rank 163.0
rank_suf 127.0
rank_change 0.0
total_points 995.94
result 1
rank_dif 36.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2999, dtype: object
date 2022-06-02 00:00:00
team Belize
score 0.0
suf_score 2.0
rank 173.0
rank_suf 155.0
rank_change 3.0
total_points 962.21
result 1
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3000, dtype: object
date 2022-06-02 00:00:00
team Anguilla
score 0.0
suf_score 0.0
rank 210.0
rank_suf 184.0
rank_change 1.0
total_points 792.34
result 2
rank_dif 26.0
points_by_rank 0.005435
team_points 1
country_classification Classe D
Name: 3001, dtype: object
date 2022-06-02 00:00:00
team Czech Republic
score 2.0
suf_score 1.0
rank 33.0
rank_suf 14.0
rank_change 2.0
total_points 1500.62
result 0
rank_dif 19.0
points_by_rank 0.214286
team_points 3
country_classification Classe A
Name: 3002, dtype: object
date 2022-06-02 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 7.0
rank_suf 8.0
rank_change 0.0
total_points 1709.19
result 2
rank_dif -1.0
points_by_rank 0.125
team_points 1
country_classification Classe S
Name: 3003, dtype: object
date 2022-06-02 00:00:00
team Israel
score 2.0
suf_score 2.0
rank 76.0
rank_suf 63.0
rank_change -1.0
total_points 1305.92
result 2
rank_dif 13.0
points_by_rank 0.015873
team_points 1
country_classification Classe B
Name: 3004, dtype: object
date 2022-06-02 00:00:00
team Serbia
score 0.0
suf_score 1.0
rank 25.0
rank_suf 41.0
rank_change 0.0
total_points 1547.53
result 1
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3005, dtype: object
date 2022-06-02 00:00:00
team Slovenia
score 0.0
suf_score 2.0
rank 65.0
rank_suf 19.0
rank_change 1.0
total_points 1378.23
result 1
rank_dif 46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3006, dtype: object
date 2022-06-02 00:00:00
team Northern Ireland
score 0.0
suf_score 1.0
rank 54.0
rank_suf 55.0
rank_change 0.0
total_points 1423.55
result 1
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3007, dtype: object
date 2022-06-02 00:00:00
team Cyprus
score 0.0
suf_score 2.0
rank 105.0
rank_suf 107.0
rank_change 0.0
total_points 1186.09
result 1
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3008, dtype: object
date 2022-06-02 00:00:00
team Georgia
score 4.0
suf_score 0.0
rank 85.0
rank_suf 203.0
rank_change -1.0
total_points 1276.31
result 0
rank_dif -118.0
points_by_rank 0.014778
team_points 3
country_classification Classe B
Name: 3009, dtype: object
date 2022-06-02 00:00:00
team Bulgaria
score 1.0
suf_score 1.0
rank 73.0
rank_suf 62.0
rank_change 2.0
total_points 1338.78
result 2
rank_dif 11.0
points_by_rank 0.016129
team_points 1
country_classification Classe B
Name: 3010, dtype: object
date 2022-06-02 00:00:00
team Estonia
score 2.0
suf_score 0.0
rank 110.0
rank_suf 211.0
rank_change 4.0
total_points 1169.06
result 0
rank_dif -101.0
points_by_rank 0.014218
team_points 3
country_classification Classe C
Name: 3011, dtype: object
date 2022-06-02 00:00:00
team Cambodia
score 2.0
suf_score 1.0
rank 171.0
rank_suf 198.0
rank_change 0.0
total_points 966.61
result 0
rank_dif -27.0
points_by_rank 0.015152
team_points 3
country_classification Classe D
Name: 3012, dtype: object
date 2022-06-02 00:00:00
team Ecuador
score 1.0
suf_score 0.0
rank 46.0
rank_suf 30.0
rank_change 2.0
total_points 1452.63
result 0
rank_dif 16.0
points_by_rank 0.1
team_points 3
country_classification Classe A
Name: 3013, dtype: object
date 2022-06-02 00:00:00
team Japan
score 4.0
suf_score 1.0
rank 23.0
rank_suf 50.0
rank_change 0.0
total_points 1553.44
result 0
rank_dif -27.0
points_by_rank 0.06
team_points 3
country_classification Classe A
Name: 3014, dtype: object
date 2022-06-02 00:00:00
team South Korea
score 1.0
suf_score 5.0
rank 29.0
rank_suf 1.0
rank_change 0.0
total_points 1519.54
result 1
rank_dif 28.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3015, dtype: object
date 2022-06-02 00:00:00
team Mexico
score 0.0
suf_score 3.0
rank 9.0
rank_suf 13.0
rank_change -3.0
total_points 1658.82
result 1
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3016, dtype: object
date 2022-06-03 00:00:00
team Togo
score 2.0
suf_score 2.0
rank 121.0
rank_suf 143.0
rank_change -5.0
total_points 1140.0
result 2
rank_dif -22.0
points_by_rank 0.006993
team_points 1
country_classification Classe C
Name: 3017, dtype: object
date 2022-06-03 00:00:00
team Comoros
score 2.0
suf_score 0.0
rank 128.0
rank_suf 145.0
rank_change -3.0
total_points 1130.77
result 0
rank_dif -17.0
points_by_rank 0.02069
team_points 3
country_classification Classe C
Name: 3018, dtype: object
date 2022-06-03 00:00:00
team Curaçao
score 0.0
suf_score 1.0
rank 79.0
rank_suf 82.0
rank_change -1.0
total_points 1298.39
result 1
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3019, dtype: object
date 2022-06-03 00:00:00
team Nicaragua
score 2.0
suf_score 1.0
rank 144.0
rank_suf 103.0
rank_change 0.0
total_points 1062.21
result 0
rank_dif 41.0
points_by_rank 0.029126
team_points 3
country_classification Classe C
Name: 3020, dtype: object
date 2022-06-03 00:00:00
team British Virgin Islands
score 1.0
suf_score 1.0
rank 209.0
rank_suf 195.0
rank_change 1.0
total_points 812.94
result 2
rank_dif 14.0
points_by_rank 0.005128
team_points 1
country_classification Classe D
Name: 3021, dtype: object
date 2022-06-03 00:00:00
team Croatia
score 0.0
suf_score 3.0
rank 16.0
rank_suf 34.0
rank_change 1.0
total_points 1621.11
result 1
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3022, dtype: object
date 2022-06-03 00:00:00
team France
score 1.0
suf_score 2.0
rank 3.0
rank_suf 11.0
rank_change 0.0
total_points 1789.85
result 1
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 3023, dtype: object
date 2022-06-03 00:00:00
team Belgium
score 1.0
suf_score 4.0
rank 2.0
rank_suf 10.0
rank_change 1.0
total_points 1827.0
result 1
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 3024, dtype: object
date 2022-06-03 00:00:00
team Kazakhstan
score 2.0
suf_score 0.0
rank 125.0
rank_suf 129.0
rank_change 5.0
total_points 1134.77
result 0
rank_dif -4.0
points_by_rank 0.023256
team_points 3
country_classification Classe C
Name: 3025, dtype: object
date 2022-06-03 00:00:00
team Belarus
score 0.0
suf_score 1.0
rank 93.0
rank_suf 45.0
rank_change -1.0
total_points 1243.2
result 1
rank_dif 48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3026, dtype: object
date 2022-06-03 00:00:00
team Liechtenstein
score 0.0
suf_score 2.0
rank 192.0
rank_suf 180.0
rank_change 1.0
total_points 895.08
result 1
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3027, dtype: object
date 2022-06-03 00:00:00
team Latvia
score 3.0
suf_score 0.0
rank 135.0
rank_suf 153.0
rank_change 0.0
total_points 1105.02
result 0
rank_dif -18.0
points_by_rank 0.019608
team_points 3
country_classification Classe C
Name: 3028, dtype: object
date 2022-06-03 00:00:00
team Nepal
score 0.0
suf_score 2.0
rank 168.0
rank_suf 75.0
rank_change 1.0
total_points 978.86
result 1
rank_dif 93.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3029, dtype: object
date 2022-06-04 00:00:00
team Namibia
score 1.0
suf_score 1.0
rank 112.0
rank_suf 139.0
rank_change 2.0
total_points 1162.93
result 2
rank_dif -27.0
points_by_rank 0.007194
team_points 1
country_classification Classe C
Name: 3030, dtype: object
date 2022-06-04 00:00:00
team Niger
score 1.0
suf_score 1.0
rank 116.0
rank_suf 130.0
rank_change 2.0
total_points 1153.23
result 2
rank_dif -14.0
points_by_rank 0.007692
team_points 1
country_classification Classe C
Name: 3031, dtype: object
date 2022-06-04 00:00:00
team Algeria
score 2.0
suf_score 0.0
rank 44.0
rank_suf 86.0
rank_change 1.0
total_points 1461.26
result 0
rank_dif -42.0
points_by_rank 0.034884
team_points 3
country_classification Classe A
Name: 3032, dtype: object
date 2022-06-04 00:00:00
team Gambia
score 1.0
suf_score 0.0
rank 123.0
rank_suf 161.0
rank_change -2.0
total_points 1138.19
result 0
rank_dif -38.0
points_by_rank 0.018634
team_points 3
country_classification Classe C
Name: 3033, dtype: object
date 2022-06-04 00:00:00
team Mali
score 4.0
suf_score 0.0
rank 52.0
rank_suf 98.0
rank_change 4.0
total_points 1436.62
result 0
rank_dif -46.0
points_by_rank 0.030612
team_points 3
country_classification Classe A
Name: 3034, dtype: object
date 2022-06-04 00:00:00
team Mauritania
score 3.0
suf_score 0.0
rank 113.0
rank_suf 132.0
rank_change -3.0
total_points 1162.48
result 0
rank_dif -19.0
points_by_rank 0.022727
team_points 3
country_classification Classe C
Name: 3035, dtype: object
date 2022-06-04 00:00:00
team Senegal
score 3.0
suf_score 1.0
rank 20.0
rank_suf 84.0
rank_change 2.0
total_points 1584.16
result 0
rank_dif -64.0
points_by_rank 0.035714
team_points 3
country_classification Classe A
Name: 3036, dtype: object
date 2022-06-04 00:00:00
team Suriname
score 1.0
suf_score 1.0
rank 141.0
rank_suf 64.0
rank_change 1.0
total_points 1073.39
result 2
rank_dif 77.0
points_by_rank 0.015625
team_points 1
country_classification Classe C
Name: 3037, dtype: object
date 2022-06-04 00:00:00
team El Salvador
score 3.0
suf_score 1.0
rank 74.0
rank_suf 170.0
rank_change 4.0
total_points 1331.65
result 0
rank_dif -96.0
points_by_rank 0.017647
team_points 3
country_classification Classe B
Name: 3038, dtype: object
date 2022-06-04 00:00:00
team Bermuda
score 0.0
suf_score 0.0
rank 167.0
rank_suf 90.0
rank_change 1.0
total_points 982.43
result 2
rank_dif 77.0
points_by_rank 0.011111
team_points 1
country_classification Classe D
Name: 3039, dtype: object
date 2022-06-04 00:00:00
team Montserrat
score 1.0
suf_score 2.0
rank 178.0
rank_suf 174.0
rank_change 0.0
total_points 950.71
result 1
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3040, dtype: object
date 2022-06-04 00:00:00
team Hungary
score 1.0
suf_score 0.0
rank 40.0
rank_suf 5.0
rank_change -1.0
total_points 1466.08
result 0
rank_dif 35.0
points_by_rank 0.6
team_points 3
country_classification Classe A
Name: 3041, dtype: object
date 2022-06-04 00:00:00
team Italy
score 1.0
suf_score 1.0
rank 6.0
rank_suf 12.0
rank_change 0.0
total_points 1723.31
result 2
rank_dif -6.0
points_by_rank 0.083333
team_points 1
country_classification Classe S
Name: 3042, dtype: object
date 2022-06-04 00:00:00
team Armenia
score 1.0
suf_score 0.0
rank 92.0
rank_suf 47.0
rank_change 0.0
total_points 1245.13
result 0
rank_dif 45.0
points_by_rank 0.06383
team_points 3
country_classification Classe B
Name: 3043, dtype: object
date 2022-06-04 00:00:00
team Finland
score 1.0
suf_score 1.0
rank 57.0
rank_suf 59.0
rank_change 0.0
total_points 1406.87
result 2
rank_dif -2.0
points_by_rank 0.016949
team_points 1
country_classification Classe A
Name: 3044, dtype: object
date 2022-06-04 00:00:00
team Montenegro
score 2.0
suf_score 0.0
rank 70.0
rank_suf 48.0
rank_change -2.0
total_points 1342.79
result 0
rank_dif 22.0
points_by_rank 0.0625
team_points 3
country_classification Classe B
Name: 3045, dtype: object
date 2022-06-04 00:00:00
team Lithuania
score 0.0
suf_score 2.0
rank 138.0
rank_suf 94.0
rank_change 1.0
total_points 1092.04
result 1
rank_dif 44.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3046, dtype: object
date 2022-06-04 00:00:00
team Turkey
score 4.0
suf_score 0.0
rank 43.0
rank_suf 124.0
rank_change 4.0
total_points 1461.81
result 0
rank_dif -81.0
points_by_rank 0.024194
team_points 3
country_classification Classe A
Name: 3047, dtype: object
date 2022-06-05 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 18.0
rank_suf 27.0
rank_change -2.0
total_points 1588.08
result 0
rank_dif -9.0
points_by_rank 0.111111
team_points 3
country_classification Classe A
Name: 3048, dtype: object
date 2022-06-05 00:00:00
team Malawi
score 2.0
suf_score 1.0
rank 120.0
rank_suf 140.0
rank_change 1.0
total_points 1145.08
result 0
rank_dif -20.0
points_by_rank 0.021429
team_points 3
country_classification Classe C
Name: 3049, dtype: object
date 2022-06-05 00:00:00
team Egypt
score 1.0
suf_score 0.0
rank 32.0
rank_suf 80.0
rank_change -2.0
total_points 1500.67
result 0
rank_dif -48.0
points_by_rank 0.0375
team_points 3
country_classification Classe A
Name: 3050, dtype: object
date 2022-06-05 00:00:00
team Central African Republic
score 1.0
suf_score 1.0
rank 131.0
rank_suf 60.0
rank_change 1.0
total_points 1122.08
result 2
rank_dif 71.0
points_by_rank 0.016667
team_points 1
country_classification Classe C
Name: 3051, dtype: object
date 2022-06-05 00:00:00
team Madagascar
score 1.0
suf_score 1.0
rank 102.0
rank_suf 126.0
rank_change 0.0
total_points 1205.61
result 2
rank_dif -24.0
points_by_rank 0.007937
team_points 1
country_classification Classe B
Name: 3052, dtype: object
date 2022-06-05 00:00:00
team Botswana
score 0.0
suf_score 0.0
rank 148.0
rank_suf 35.0
rank_change -1.0
total_points 1051.59
result 2
rank_dif 113.0
points_by_rank 0.028571
team_points 1
country_classification Classe C
Name: 3053, dtype: object
date 2022-06-05 00:00:00
team Cuba
score 3.0
suf_score 0.0
rank 177.0
rank_suf 163.0
rank_change -2.0
total_points 950.91
result 0
rank_dif 14.0
points_by_rank 0.018405
team_points 3
country_classification Classe D
Name: 3054, dtype: object
date 2022-06-05 00:00:00
team Guatemala
score 2.0
suf_score 0.0
rank 118.0
rank_suf 173.0
rank_change -5.0
total_points 1147.85
result 0
rank_dif -55.0
points_by_rank 0.017341
team_points 3
country_classification Classe C
Name: 3055, dtype: object
date 2022-06-05 00:00:00
team Dominica
score 1.0
suf_score 1.0
rank 184.0
rank_suf 210.0
rank_change 1.0
total_points 916.72
result 2
rank_dif -26.0
points_by_rank 0.004762
team_points 1
country_classification Classe D
Name: 3056, dtype: object
date 2022-06-05 00:00:00
team Portugal
score 4.0
suf_score 0.0
rank 8.0
rank_suf 14.0
rank_change 0.0
total_points 1674.78
result 0
rank_dif -6.0
points_by_rank 0.214286
team_points 3
country_classification Classe S-
Name: 3057, dtype: object
date 2022-06-05 00:00:00
team Czech Republic
score 2.0
suf_score 2.0
rank 33.0
rank_suf 7.0
rank_change 2.0
total_points 1500.62
result 2
rank_dif 26.0
points_by_rank 0.142857
team_points 1
country_classification Classe A
Name: 3058, dtype: object
date 2022-06-05 00:00:00
team Serbia
score 4.0
suf_score 1.0
rank 25.0
rank_suf 65.0
rank_change 0.0
total_points 1547.53
result 0
rank_dif -40.0
points_by_rank 0.046154
team_points 3
country_classification Classe A
Name: 3059, dtype: object
date 2022-06-05 00:00:00
team Sweden
score 1.0
suf_score 2.0
rank 19.0
rank_suf 41.0
rank_change 2.0
total_points 1584.77
result 1
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3060, dtype: object
date 2022-06-05 00:00:00
team Cyprus
score 0.0
suf_score 0.0
rank 105.0
rank_suf 54.0
rank_change 0.0
total_points 1186.09
result 2
rank_dif 51.0
points_by_rank 0.018519
team_points 1
country_classification Classe C
Name: 3061, dtype: object
date 2022-06-05 00:00:00
team Kosovo
score 0.0
suf_score 1.0
rank 107.0
rank_suf 55.0
rank_change -2.0
total_points 1173.9
result 1
rank_dif 52.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3062, dtype: object
date 2022-06-05 00:00:00
team Gibraltar
score 0.0
suf_score 2.0
rank 203.0
rank_suf 62.0
rank_change 0.0
total_points 857.2
result 1
rank_dif 141.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3063, dtype: object
date 2022-06-05 00:00:00
team Bulgaria
score 2.0
suf_score 5.0
rank 73.0
rank_suf 85.0
rank_change 2.0
total_points 1338.78
result 1
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3064, dtype: object
date 2022-06-05 00:00:00
team San Marino
score 0.0
suf_score 2.0
rank 211.0
rank_suf 169.0
rank_change 1.0
total_points 776.97
result 1
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3065, dtype: object
date 2022-06-05 00:00:00
team Argentina
score 5.0
suf_score 0.0
rank 4.0
rank_suf 110.0
rank_change 0.0
total_points 1765.13
result 0
rank_dif -106.0
points_by_rank 0.027273
team_points 3
country_classification Classe S
Name: 3066, dtype: object
date 2022-06-05 00:00:00
team Mexico
score 0.0
suf_score 0.0
rank 9.0
rank_suf 46.0
rank_change -3.0
total_points 1658.82
result 2
rank_dif -37.0
points_by_rank 0.021739
team_points 1
country_classification Classe S-
Name: 3067, dtype: object
date 2022-06-05 00:00:00
team Peru
score 1.0
suf_score 0.0
rank 22.0
rank_suf 101.0
rank_change 0.0
total_points 1562.32
result 0
rank_dif -79.0
points_by_rank 0.029703
team_points 3
country_classification Classe A
Name: 3068, dtype: object
date 2022-06-05 00:00:00
team Saudi Arabia
score 0.0
suf_score 1.0
rank 49.0
rank_suf 17.0
rank_change -4.0
total_points 1444.69
result 1
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3069, dtype: object
date 2022-06-05 00:00:00
team United States
score 0.0
suf_score 0.0
rank 15.0
rank_suf 13.0
rank_change 2.0
total_points 1633.72
result 2
rank_dif 2.0
points_by_rank 0.076923
team_points 1
country_classification Classe S-
Name: 3070, dtype: object
date 2022-06-06 00:00:00
team Equatorial Guinea
score 2.0
suf_score 0.0
rank 99.0
rank_suf 117.0
rank_change 0.0
total_points 1210.07
result 0
rank_dif -18.0
points_by_rank 0.025641
team_points 3
country_classification Classe B
Name: 3071, dtype: object
date 2022-06-06 00:00:00
team Honduras
score 1.0
suf_score 2.0
rank 82.0
rank_suf 79.0
rank_change 4.0
total_points 1289.47
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3072, dtype: object
date 2022-06-06 00:00:00
team Trinidad and Tobago
score 1.0
suf_score 0.0
rank 103.0
rank_suf 201.0
rank_change 2.0
total_points 1203.78
result 0
rank_dif -98.0
points_by_rank 0.014925
team_points 3
country_classification Classe B
Name: 3073, dtype: object
date 2022-06-06 00:00:00
team Cayman Islands
score 1.0
suf_score 1.0
rank 195.0
rank_suf 209.0
rank_change 0.0
total_points 873.64
result 2
rank_dif -14.0
points_by_rank 0.004785
team_points 1
country_classification Classe D
Name: 3074, dtype: object
date 2022-06-06 00:00:00
team Austria
score 1.0
suf_score 2.0
rank 34.0
rank_suf 11.0
rank_change 4.0
total_points 1500.37
result 1
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3075, dtype: object
date 2022-06-06 00:00:00
team Croatia
score 1.0
suf_score 1.0
rank 16.0
rank_suf 3.0
rank_change 1.0
total_points 1621.11
result 2
rank_dif 13.0
points_by_rank 0.333333
team_points 1
country_classification Classe S-
Name: 3076, dtype: object
date 2022-06-06 00:00:00
team Iceland
score 1.0
suf_score 1.0
rank 63.0
rank_suf 66.0
rank_change 3.0
total_points 1380.85
result 2
rank_dif -3.0
points_by_rank 0.015152
team_points 1
country_classification Classe B
Name: 3077, dtype: object
date 2022-06-06 00:00:00
team Belarus
score 0.0
suf_score 0.0
rank 93.0
rank_suf 129.0
rank_change -1.0
total_points 1243.2
result 2
rank_dif -36.0
points_by_rank 0.007752
team_points 1
country_classification Classe B
Name: 3078, dtype: object
date 2022-06-06 00:00:00
team Slovakia
score 0.0
suf_score 1.0
rank 45.0
rank_suf 125.0
rank_change -1.0
total_points 1454.98
result 1
rank_dif -80.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3079, dtype: object
date 2022-06-06 00:00:00
team Latvia
score 1.0
suf_score 0.0
rank 135.0
rank_suf 192.0
rank_change 0.0
total_points 1105.02
result 0
rank_dif -57.0
points_by_rank 0.015625
team_points 3
country_classification Classe C
Name: 3080, dtype: object
date 2022-06-06 00:00:00
team Andorra
score 0.0
suf_score 0.0
rank 153.0
rank_suf 180.0
rank_change -2.0
total_points 1040.13
result 2
rank_dif -27.0
points_by_rank 0.005556
team_points 1
country_classification Classe C
Name: 3081, dtype: object
date 2022-06-06 00:00:00
team South Korea
score 2.0
suf_score 0.0
rank 29.0
rank_suf 28.0
rank_change 0.0
total_points 1519.54
result 0
rank_dif 1.0
points_by_rank 0.107143
team_points 3
country_classification Classe A
Name: 3082, dtype: object
date 2022-06-06 00:00:00
team Japan
score 0.0
suf_score 1.0
rank 23.0
rank_suf 1.0
rank_change 0.0
total_points 1553.44
result 1
rank_dif 22.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3083, dtype: object
date 2022-06-07 00:00:00
team Eswatini
score 1.0
suf_score 3.0
rank 143.0
rank_suf 56.0
rank_change -4.0
total_points 1070.46
result 1
rank_dif 87.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3084, dtype: object
date 2022-06-07 00:00:00
team Zambia
score 2.0
suf_score 1.0
rank 87.0
rank_suf 128.0
rank_change -1.0
total_points 1267.04
result 0
rank_dif -41.0
points_by_rank 0.023438
team_points 3
country_classification Classe B
Name: 3085, dtype: object
date 2022-06-07 00:00:00
team Senegal
score 1.0
suf_score 0.0
rank 20.0
rank_suf 136.0
rank_change 2.0
total_points 1584.16
result 0
rank_dif -116.0
points_by_rank 0.022059
team_points 3
country_classification Classe A
Name: 3086, dtype: object
date 2022-06-07 00:00:00
team Jamaica
score 3.0
suf_score 1.0
rank 64.0
rank_suf 141.0
rank_change 2.0
total_points 1378.75
result 0
rank_dif -77.0
points_by_rank 0.021277
team_points 3
country_classification Classe B
Name: 3087, dtype: object
date 2022-06-07 00:00:00
team Grenada
score 2.0
suf_score 2.0
rank 170.0
rank_suf 74.0
rank_change 1.0
total_points 968.49
result 2
rank_dif 96.0
points_by_rank 0.013514
team_points 1
country_classification Classe D
Name: 3088, dtype: object
date 2022-06-07 00:00:00
team Guyana
score 2.0
suf_score 1.0
rank 174.0
rank_suf 167.0
rank_change -1.0
total_points 961.07
result 0
rank_dif 7.0
points_by_rank 0.017964
team_points 3
country_classification Classe D
Name: 3089, dtype: object
date 2022-06-07 00:00:00
team Haiti
score 3.0
suf_score 2.0
rank 90.0
rank_suf 178.0
rank_change 3.0
total_points 1261.86
result 0
rank_dif -88.0
points_by_rank 0.016854
team_points 3
country_classification Classe B
Name: 3090, dtype: object
date 2022-06-07 00:00:00
team Germany
score 1.0
suf_score 1.0
rank 12.0
rank_suf 5.0
rank_change 1.0
total_points 1650.53
result 2
rank_dif 7.0
points_by_rank 0.2
team_points 1
country_classification Classe S-
Name: 3091, dtype: object
date 2022-06-07 00:00:00
team Italy
score 2.0
suf_score 1.0
rank 6.0
rank_suf 40.0
rank_change 0.0
total_points 1723.31
result 0
rank_dif -34.0
points_by_rank 0.075
team_points 3
country_classification Classe S
Name: 3092, dtype: object
date 2022-06-07 00:00:00
team Finland
score 2.0
suf_score 0.0
rank 57.0
rank_suf 70.0
rank_change 0.0
total_points 1406.87
result 0
rank_dif -13.0
points_by_rank 0.042857
team_points 3
country_classification Classe A
Name: 3093, dtype: object
date 2022-06-07 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 0.0
rank 59.0
rank_suf 48.0
rank_change 0.0
total_points 1388.63
result 0
rank_dif 11.0
points_by_rank 0.0625
team_points 3
country_classification Classe B
Name: 3094, dtype: object
date 2022-06-07 00:00:00
team Faroe Islands
score 0.0
suf_score 1.0
rank 124.0
rank_suf 94.0
rank_change 0.0
total_points 1137.4
result 1
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3095, dtype: object
date 2022-06-07 00:00:00
team Lithuania
score 0.0
suf_score 6.0
rank 138.0
rank_suf 43.0
rank_change 1.0
total_points 1092.04
result 1
rank_dif 95.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3096, dtype: object
date 2022-06-08 00:00:00
team Kuwait
score 1.0
suf_score 2.0
rank 146.0
rank_suf 159.0
rank_change 3.0
total_points 1059.94
result 1
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3097, dtype: object
date 2022-06-08 00:00:00
team Jordan
score 2.0
suf_score 0.0
rank 91.0
rank_suf 168.0
rank_change 1.0
total_points 1259.84
result 0
rank_dif -77.0
points_by_rank 0.017857
team_points 3
country_classification Classe B
Name: 3098, dtype: object
date 2022-06-08 00:00:00
team Philippines
score 0.0
suf_score 0.0
rank 133.0
rank_suf 151.0
rank_change 4.0
total_points 1117.89
result 2
rank_dif -18.0
points_by_rank 0.006623
team_points 1
country_classification Classe C
Name: 3099, dtype: object
date 2022-06-08 00:00:00
team Mongolia
score 0.0
suf_score 1.0
rank 186.0
rank_suf 100.0
rank_change 2.0
total_points 911.49
result 1
rank_dif 86.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3100, dtype: object
date 2022-06-08 00:00:00
team Thailand
score 3.0
suf_score 0.0
rank 111.0
rank_suf 156.0
rank_change -1.0
total_points 1167.68
result 0
rank_dif -45.0
points_by_rank 0.019231
team_points 3
country_classification Classe C
Name: 3101, dtype: object
date 2022-06-08 00:00:00
team Uzbekistan
score 3.0
suf_score 0.0
rank 83.0
rank_suf 205.0
rank_change -2.0
total_points 1286.55
result 0
rank_dif -122.0
points_by_rank 0.014634
team_points 3
country_classification Classe B
Name: 3102, dtype: object
date 2022-06-08 00:00:00
team Hong Kong
score 2.0
suf_score 1.0
rank 147.0
rank_suf 150.0
rank_change -1.0
total_points 1053.39
result 0
rank_dif -3.0
points_by_rank 0.02
team_points 3
country_classification Classe C
Name: 3103, dtype: object
date 2022-06-08 00:00:00
team India
score 2.0
suf_score 0.0
rank 106.0
rank_suf 171.0
rank_change 2.0
total_points 1174.04
result 0
rank_dif -65.0
points_by_rank 0.017544
team_points 3
country_classification Classe C
Name: 3104, dtype: object
date 2022-06-08 00:00:00
team Bahrain
score 2.0
suf_score 0.0
rank 89.0
rank_suf 188.0
rank_change 0.0
total_points 1262.55
result 0
rank_dif -99.0
points_by_rank 0.015957
team_points 3
country_classification Classe B
Name: 3105, dtype: object
date 2022-06-08 00:00:00
team Malaysia
score 3.0
suf_score 1.0
rank 154.0
rank_suf 134.0
rank_change 0.0
total_points 1035.06
result 0
rank_dif 20.0
points_by_rank 0.022388
team_points 3
country_classification Classe C
Name: 3106, dtype: object
date 2022-06-08 00:00:00
team Tajikistan
score 4.0
suf_score 0.0
rank 114.0
rank_suf 152.0
rank_change -1.0
total_points 1159.42
result 0
rank_dif -38.0
points_by_rank 0.019737
team_points 3
country_classification Classe C
Name: 3107, dtype: object
date 2022-06-08 00:00:00
team Uganda
score 1.0
suf_score 1.0
rank 86.0
rank_suf 116.0
rank_change 2.0
total_points 1275.5
result 2
rank_dif -30.0
points_by_rank 0.008621
team_points 1
country_classification Classe B
Name: 3108, dtype: object
date 2022-06-08 00:00:00
team Tanzania
score 0.0
suf_score 2.0
rank 130.0
rank_suf 44.0
rank_change -2.0
total_points 1123.79
result 1
rank_dif 86.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3109, dtype: object
date 2022-06-08 00:00:00
team Congo
score 1.0
suf_score 0.0
rank 98.0
rank_suf 123.0
rank_change 1.0
total_points 1211.33
result 0
rank_dif -25.0
points_by_rank 0.02439
team_points 3
country_classification Classe B
Name: 3110, dtype: object
date 2022-06-08 00:00:00
team Gabon
score 0.0
suf_score 0.0
rank 81.0
rank_suf 113.0
rank_change -1.0
total_points 1290.65
result 2
rank_dif -32.0
points_by_rank 0.00885
team_points 1
country_classification Classe B
Name: 3111, dtype: object
date 2022-06-08 00:00:00
team Benin
score 0.0
suf_score 1.0
rank 84.0
rank_suf 119.0
rank_change 1.0
total_points 1284.13
result 1
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3112, dtype: object
date 2022-06-08 00:00:00
team Wales
score 1.0
suf_score 2.0
rank 18.0
rank_suf 10.0
rank_change -2.0
total_points 1588.08
result 1
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3113, dtype: object
date 2022-06-08 00:00:00
team Belgium
score 6.0
suf_score 1.0
rank 2.0
rank_suf 26.0
rank_change 1.0
total_points 1827.0
result 0
rank_dif -24.0
points_by_rank 0.115385
team_points 3
country_classification Classe S
Name: 3114, dtype: object
date 2022-06-08 00:00:00
team Republic of Ireland
score 0.0
suf_score 1.0
rank 47.0
rank_suf 27.0
rank_change -2.0
total_points 1449.48
result 1
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3115, dtype: object
date 2022-06-08 00:00:00
team Scotland
score 2.0
suf_score 0.0
rank 39.0
rank_suf 92.0
rank_change -1.0
total_points 1472.66
result 0
rank_dif -53.0
points_by_rank 0.032609
team_points 3
country_classification Classe A
Name: 3116, dtype: object
date 2022-06-09 00:00:00
team Guinea-Bissau
score 5.0
suf_score 1.0
rank 115.0
rank_suf 183.0
rank_change 2.0
total_points 1158.62
result 0
rank_dif -68.0
points_by_rank 0.016393
team_points 3
country_classification Classe C
Name: 3117, dtype: object
date 2022-06-09 00:00:00
team Nigeria
score 2.0
suf_score 1.0
rank 30.0
rank_suf 108.0
rank_change -2.0
total_points 1504.01
result 0
rank_dif -78.0
points_by_rank 0.027778
team_points 3
country_classification Classe A
Name: 3118, dtype: object
date 2022-06-09 00:00:00
team Burundi
score 0.0
suf_score 1.0
rank 139.0
rank_suf 37.0
rank_change -2.0
total_points 1080.62
result 1
rank_dif 102.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3119, dtype: object
date 2022-06-09 00:00:00
team Ethiopia
score 2.0
suf_score 0.0
rank 140.0
rank_suf 32.0
rank_change 2.0
total_points 1076.67
result 0
rank_dif 108.0
points_by_rank 0.09375
team_points 3
country_classification Classe C
Name: 3120, dtype: object
date 2022-06-09 00:00:00
team Guinea
score 1.0
suf_score 0.0
rank 80.0
rank_suf 120.0
rank_change -1.0
total_points 1293.21
result 0
rank_dif -40.0
points_by_rank 0.025
team_points 3
country_classification Classe B
Name: 3121, dtype: object
date 2022-06-09 00:00:00
team South Sudan
score 1.0
suf_score 3.0
rank 161.0
rank_suf 52.0
rank_change -7.0
total_points 998.45
result 1
rank_dif 109.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3122, dtype: object
date 2022-06-09 00:00:00
team Morocco
score 2.0
suf_score 1.0
rank 24.0
rank_suf 69.0
rank_change 0.0
total_points 1551.88
result 0
rank_dif -45.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 3123, dtype: object
date 2022-06-09 00:00:00
team Canada
score 4.0
suf_score 0.0
rank 38.0
rank_suf 79.0
rank_change 5.0
total_points 1479.0
result 0
rank_dif -41.0
points_by_rank 0.037975
team_points 3
country_classification Classe A
Name: 3124, dtype: object
date 2022-06-09 00:00:00
team Antigua and Barbuda
score 0.0
suf_score 2.0
rank 127.0
rank_suf 177.0
rank_change -1.0
total_points 1131.07
result 1
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3125, dtype: object
date 2022-06-09 00:00:00
team Cayman Islands
score 0.0
suf_score 3.0
rank 195.0
rank_suf 172.0
rank_change 0.0
total_points 873.64
result 1
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3126, dtype: object
date 2022-06-09 00:00:00
team Portugal
score 2.0
suf_score 0.0
rank 8.0
rank_suf 33.0
rank_change 0.0
total_points 1674.78
result 0
rank_dif -25.0
points_by_rank 0.090909
team_points 3
country_classification Classe S-
Name: 3127, dtype: object
date 2022-06-09 00:00:00
team Switzerland
score 0.0
suf_score 1.0
rank 14.0
rank_suf 7.0
rank_change 0.0
total_points 1635.32
result 1
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3128, dtype: object
date 2022-06-09 00:00:00
team Norway
score 0.0
suf_score 0.0
rank 41.0
rank_suf 65.0
rank_change -4.0
total_points 1463.5
result 2
rank_dif -24.0
points_by_rank 0.015385
team_points 1
country_classification Classe A
Name: 3129, dtype: object
date 2022-06-09 00:00:00
team Sweden
score 0.0
suf_score 1.0
rank 19.0
rank_suf 25.0
rank_change 2.0
total_points 1584.77
result 1
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3130, dtype: object
date 2022-06-09 00:00:00
team Kosovo
score 3.0
suf_score 2.0
rank 107.0
rank_suf 54.0
rank_change -2.0
total_points 1173.9
result 0
rank_dif 53.0
points_by_rank 0.055556
team_points 3
country_classification Classe C
Name: 3131, dtype: object
date 2022-06-09 00:00:00
team Greece
score 3.0
suf_score 0.0
rank 55.0
rank_suf 105.0
rank_change 0.0
total_points 1421.43
result 0
rank_dif -50.0
points_by_rank 0.028571
team_points 3
country_classification Classe A
Name: 3132, dtype: object
date 2022-06-09 00:00:00
team Gibraltar
score 1.0
suf_score 1.0
rank 203.0
rank_suf 73.0
rank_change 0.0
total_points 857.2
result 2
rank_dif 130.0
points_by_rank 0.013699
team_points 1
country_classification Classe D
Name: 3133, dtype: object
date 2022-06-09 00:00:00
team North Macedonia
score 0.0
suf_score 3.0
rank 62.0
rank_suf 85.0
rank_change -5.0
total_points 1381.07
result 1
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3134, dtype: object
date 2022-06-09 00:00:00
team Malta
score 1.0
suf_score 2.0
rank 169.0
rank_suf 110.0
rank_change -5.0
total_points 971.56
result 1
rank_dif 59.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3135, dtype: object
date 2022-06-09 00:00:00
team New Zealand
score 0.0
suf_score 0.0
rank 101.0
rank_suf 75.0
rank_change -10.0
total_points 1206.07
result 2
rank_dif 26.0
points_by_rank 0.013333
team_points 1
country_classification Classe B
Name: 3136, dtype: object
date 2022-06-09 00:00:00
team San Marino
score 0.0
suf_score 1.0
rank 211.0
rank_suf 63.0
rank_change 1.0
total_points 776.97
result 1
rank_dif 148.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3137, dtype: object
date 2022-06-09 00:00:00
team Saudi Arabia
score 0.0
suf_score 1.0
rank 49.0
rank_suf 58.0
rank_change -4.0
total_points 1444.69
result 1
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3138, dtype: object
date 2022-06-10 00:00:00
team United States
score 5.0
suf_score 0.0
rank 15.0
rank_suf 170.0
rank_change 2.0
total_points 1633.72
result 0
rank_dif -155.0
points_by_rank 0.017647
team_points 3
country_classification Classe S-
Name: 3139, dtype: object
date 2022-06-10 00:00:00
team Bahamas
score 0.0
suf_score 2.0
rank 201.0
rank_suf 144.0
rank_change 0.0
total_points 858.5
result 1
rank_dif 57.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3140, dtype: object
date 2022-06-10 00:00:00
team Dominican Republic
score 1.0
suf_score 1.0
rank 155.0
rank_suf 118.0
rank_change -1.0
total_points 1029.42
result 2
rank_dif 37.0
points_by_rank 0.008475
team_points 1
country_classification Classe C
Name: 3141, dtype: object
date 2022-06-10 00:00:00
team Austria
score 1.0
suf_score 1.0
rank 34.0
rank_suf 3.0
rank_change 4.0
total_points 1500.37
result 2
rank_dif 31.0
points_by_rank 0.333333
team_points 1
country_classification Classe A
Name: 3142, dtype: object
date 2022-06-10 00:00:00
team Denmark
score 0.0
suf_score 1.0
rank 11.0
rank_suf 16.0
rank_change 2.0
total_points 1653.6
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3143, dtype: object
date 2022-06-10 00:00:00
team Albania
score 1.0
suf_score 2.0
rank 66.0
rank_suf 76.0
rank_change 1.0
total_points 1371.86
result 1
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3144, dtype: object
date 2022-06-10 00:00:00
team Azerbaijan
score 0.0
suf_score 1.0
rank 129.0
rank_suf 45.0
rank_change 8.0
total_points 1127.05
result 1
rank_dif 84.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3145, dtype: object
date 2022-06-10 00:00:00
team Belarus
score 1.0
suf_score 1.0
rank 93.0
rank_suf 125.0
rank_change -1.0
total_points 1243.2
result 2
rank_dif -32.0
points_by_rank 0.008
team_points 1
country_classification Classe B
Name: 3146, dtype: object
date 2022-06-10 00:00:00
team Moldova
score 2.0
suf_score 4.0
rank 180.0
rank_suf 135.0
rank_change -1.0
total_points 932.79
result 1
rank_dif 45.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3147, dtype: object
date 2022-06-10 00:00:00
team Andorra
score 2.0
suf_score 1.0
rank 153.0
rank_suf 192.0
rank_change -2.0
total_points 1040.13
result 0
rank_dif -39.0
points_by_rank 0.015625
team_points 3
country_classification Classe C
Name: 3148, dtype: object
date 2022-06-10 00:00:00
team South Korea
score 2.0
suf_score 2.0
rank 29.0
rank_suf 50.0
rank_change 0.0
total_points 1519.54
result 2
rank_dif -21.0
points_by_rank 0.02
team_points 1
country_classification Classe A
Name: 3149, dtype: object
date 2022-06-10 00:00:00
team Chile
score 0.0
suf_score 2.0
rank 28.0
rank_suf 35.0
rank_change 2.0
total_points 1526.4
result 1
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3150, dtype: object
date 2022-06-10 00:00:00
team Japan
score 4.0
suf_score 1.0
rank 23.0
rank_suf 60.0
rank_change 0.0
total_points 1553.44
result 0
rank_dif -37.0
points_by_rank 0.05
team_points 3
country_classification Classe A
Name: 3151, dtype: object
date 2022-06-11 00:00:00
team Kuwait
score 4.0
suf_score 1.0
rank 146.0
rank_suf 168.0
rank_change 3.0
total_points 1059.94
result 0
rank_dif -22.0
points_by_rank 0.017857
team_points 3
country_classification Classe C
Name: 3152, dtype: object
date 2022-06-11 00:00:00
team Indonesia
score 0.0
suf_score 1.0
rank 159.0
rank_suf 91.0
rank_change -1.0
total_points 1001.61
result 1
rank_dif 68.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3153, dtype: object
date 2022-06-11 00:00:00
team Mongolia
score 0.0
suf_score 1.0
rank 186.0
rank_suf 133.0
rank_change 2.0
total_points 911.49
result 1
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3154, dtype: object
date 2022-06-11 00:00:00
team Yemen
score 0.0
suf_score 5.0
rank 151.0
rank_suf 100.0
rank_change 0.0
total_points 1046.26
result 1
rank_dif 51.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3155, dtype: object
date 2022-06-11 00:00:00
team Sri Lanka
score 0.0
suf_score 2.0
rank 205.0
rank_suf 111.0
rank_change 1.0
total_points 842.93
result 1
rank_dif 94.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3156, dtype: object
date 2022-06-11 00:00:00
team Uzbekistan
score 4.0
suf_score 0.0
rank 83.0
rank_suf 156.0
rank_change -2.0
total_points 1286.55
result 0
rank_dif -73.0
points_by_rank 0.019231
team_points 3
country_classification Classe B
Name: 3157, dtype: object
date 2022-06-11 00:00:00
team Cambodia
score 0.0
suf_score 3.0
rank 171.0
rank_suf 147.0
rank_change 0.0
total_points 966.61
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3158, dtype: object
date 2022-06-11 00:00:00
team India
score 2.0
suf_score 1.0
rank 106.0
rank_suf 150.0
rank_change 2.0
total_points 1174.04
result 0
rank_dif -44.0
points_by_rank 0.02
team_points 3
country_classification Classe C
Name: 3159, dtype: object
date 2022-06-11 00:00:00
team Bangladesh
score 1.0
suf_score 2.0
rank 188.0
rank_suf 134.0
rank_change 2.0
total_points 903.98
result 1
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3160, dtype: object
date 2022-06-11 00:00:00
team Malaysia
score 1.0
suf_score 2.0
rank 154.0
rank_suf 89.0
rank_change 0.0
total_points 1035.06
result 1
rank_dif 65.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3161, dtype: object
date 2022-06-11 00:00:00
team Singapore
score 0.0
suf_score 1.0
rank 158.0
rank_suf 114.0
rank_change -3.0
total_points 1012.27
result 1
rank_dif 44.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3162, dtype: object
date 2022-06-11 00:00:00
team Mexico
score 3.0
suf_score 0.0
rank 9.0
rank_suf 141.0
rank_change -3.0
total_points 1658.82
result 0
rank_dif -132.0
points_by_rank 0.021277
team_points 3
country_classification Classe S-
Name: 3163, dtype: object
date 2022-06-11 00:00:00
team Guyana
score 2.0
suf_score 6.0
rank 174.0
rank_suf 90.0
rank_change -1.0
total_points 961.07
result 1
rank_dif 84.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3164, dtype: object
date 2022-06-11 00:00:00
team Montserrat
score 3.0
suf_score 2.0
rank 178.0
rank_suf 167.0
rank_change 0.0
total_points 950.71
result 0
rank_dif 11.0
points_by_rank 0.017964
team_points 3
country_classification Classe D
Name: 3165, dtype: object
date 2022-06-11 00:00:00
team England
score 0.0
suf_score 0.0
rank 5.0
rank_suf 6.0
rank_change 0.0
total_points 1761.71
result 2
rank_dif -1.0
points_by_rank 0.166667
team_points 1
country_classification Classe S
Name: 3166, dtype: object
date 2022-06-11 00:00:00
team Hungary
score 1.0
suf_score 1.0
rank 40.0
rank_suf 12.0
rank_change -1.0
total_points 1466.08
result 2
rank_dif 28.0
points_by_rank 0.083333
team_points 1
country_classification Classe A
Name: 3167, dtype: object
date 2022-06-11 00:00:00
team Wales
score 1.0
suf_score 1.0
rank 18.0
rank_suf 2.0
rank_change -2.0
total_points 1588.08
result 2
rank_dif 16.0
points_by_rank 0.5
team_points 1
country_classification Classe A
Name: 3168, dtype: object
date 2022-06-11 00:00:00
team Netherlands
score 2.0
suf_score 2.0
rank 10.0
rank_suf 26.0
rank_change 0.0
total_points 1658.66
result 2
rank_dif -16.0
points_by_rank 0.038462
team_points 1
country_classification Classe S-
Name: 3169, dtype: object
date 2022-06-11 00:00:00
team Ukraine
score 3.0
suf_score 0.0
rank 27.0
rank_suf 92.0
rank_change 0.0
total_points 1535.08
result 0
rank_dif -65.0
points_by_rank 0.032609
team_points 3
country_classification Classe A
Name: 3170, dtype: object
date 2022-06-11 00:00:00
team Republic of Ireland
score 3.0
suf_score 0.0
rank 47.0
rank_suf 39.0
rank_change -2.0
total_points 1449.48
result 0
rank_dif 8.0
points_by_rank 0.076923
team_points 3
country_classification Classe A
Name: 3171, dtype: object
date 2022-06-11 00:00:00
team Montenegro
score 1.0
suf_score 1.0
rank 70.0
rank_suf 59.0
rank_change -2.0
total_points 1342.79
result 2
rank_dif 11.0
points_by_rank 0.016949
team_points 1
country_classification Classe B
Name: 3172, dtype: object
date 2022-06-11 00:00:00
team Romania
score 1.0
suf_score 0.0
rank 48.0
rank_suf 57.0
rank_change 1.0
total_points 1446.54
result 0
rank_dif -9.0
points_by_rank 0.052632
team_points 3
country_classification Classe A
Name: 3173, dtype: object
date 2022-06-11 00:00:00
team Faroe Islands
score 2.0
suf_score 1.0
rank 124.0
rank_suf 138.0
rank_change 0.0
total_points 1137.4
result 0
rank_dif -14.0
points_by_rank 0.021739
team_points 3
country_classification Classe C
Name: 3174, dtype: object
date 2022-06-11 00:00:00
team Luxembourg
score 0.0
suf_score 2.0
rank 94.0
rank_suf 43.0
rank_change 1.0
total_points 1229.6
result 1
rank_dif 51.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3175, dtype: object
date 2022-06-11 00:00:00
team Uruguay
score 5.0
suf_score 0.0
rank 13.0
rank_suf 61.0
rank_change -3.0
total_points 1635.73
result 0
rank_dif -48.0
points_by_rank 0.04918
team_points 3
country_classification Classe S-
Name: 3176, dtype: object
date 2022-06-12 00:00:00
team Cuba
score 3.0
suf_score 1.0
rank 177.0
rank_suf 127.0
rank_change -2.0
total_points 950.91
result 0
rank_dif 50.0
points_by_rank 0.023622
team_points 3
country_classification Classe D
Name: 3177, dtype: object
date 2022-06-12 00:00:00
team Puerto Rico
score 6.0
suf_score 0.0
rank 172.0
rank_suf 209.0
rank_change 0.0
total_points 962.77
result 0
rank_dif -37.0
points_by_rank 0.014354
team_points 3
country_classification Classe D
Name: 3178, dtype: object
date 2022-06-12 00:00:00
team Spain
score 2.0
suf_score 0.0
rank 7.0
rank_suf 33.0
rank_change 0.0
total_points 1709.19
result 0
rank_dif -26.0
points_by_rank 0.090909
team_points 3
country_classification Classe S
Name: 3179, dtype: object
date 2022-06-12 00:00:00
team Switzerland
score 1.0
suf_score 0.0
rank 14.0
rank_suf 8.0
rank_change 0.0
total_points 1635.32
result 0
rank_dif 6.0
points_by_rank 0.375
team_points 3
country_classification Classe S-
Name: 3180, dtype: object
date 2022-06-12 00:00:00
team Norway
score 3.0
suf_score 2.0
rank 41.0
rank_suf 19.0
rank_change -4.0
total_points 1463.5
result 0
rank_dif 22.0
points_by_rank 0.157895
team_points 3
country_classification Classe A
Name: 3181, dtype: object
date 2022-06-12 00:00:00
team Slovenia
score 2.0
suf_score 2.0
rank 65.0
rank_suf 25.0
rank_change 1.0
total_points 1378.23
result 2
rank_dif 40.0
points_by_rank 0.04
team_points 1
country_classification Classe B
Name: 3182, dtype: object
date 2022-06-12 00:00:00
team Northern Ireland
score 2.0
suf_score 2.0
rank 54.0
rank_suf 105.0
rank_change 0.0
total_points 1423.55
result 2
rank_dif -51.0
points_by_rank 0.009524
team_points 1
country_classification Classe A
Name: 3183, dtype: object
date 2022-06-12 00:00:00
team Greece
score 2.0
suf_score 0.0
rank 55.0
rank_suf 107.0
rank_change 0.0
total_points 1421.43
result 0
rank_dif -52.0
points_by_rank 0.028037
team_points 3
country_classification Classe A
Name: 3184, dtype: object
date 2022-06-12 00:00:00
team North Macedonia
score 4.0
suf_score 0.0
rank 62.0
rank_suf 203.0
rank_change -5.0
total_points 1381.07
result 0
rank_dif -141.0
points_by_rank 0.014778
team_points 3
country_classification Classe B
Name: 3185, dtype: object
date 2022-06-12 00:00:00
team Georgia
score 0.0
suf_score 0.0
rank 85.0
rank_suf 73.0
rank_change -1.0
total_points 1276.31
result 2
rank_dif 12.0
points_by_rank 0.013699
team_points 1
country_classification Classe B
Name: 3186, dtype: object
date 2022-06-12 00:00:00
team Malta
score 1.0
suf_score 0.0
rank 169.0
rank_suf 211.0
rank_change -5.0
total_points 971.56
result 0
rank_dif -42.0
points_by_rank 0.014218
team_points 3
country_classification Classe D
Name: 3187, dtype: object
date 2022-06-12 00:00:00
team Iran
score 1.0
suf_score 2.0
rank 21.0
rank_suf 44.0
rank_change 0.0
total_points 1564.49
result 1
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3188, dtype: object
date 2022-06-13 00:00:00
team Australia
score 0.0
suf_score 0.0
rank 42.0
rank_suf 22.0
rank_change 5.0
total_points 1462.29
result 2
rank_dif 20.0
points_by_rank 0.045455
team_points 1
country_classification Classe A
Name: 3189, dtype: object
date 2022-06-13 00:00:00
team São Tomé and Príncipe
score 0.0
suf_score 10.0
rank 183.0
rank_suf 30.0
rank_change -6.0
total_points 917.62
result 1
rank_dif 153.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3190, dtype: object
date 2022-06-13 00:00:00
team Sierra Leone
score 2.0
suf_score 2.0
rank 108.0
rank_suf 115.0
rank_change 1.0
total_points 1173.89
result 2
rank_dif -7.0
points_by_rank 0.008696
team_points 1
country_classification Classe C
Name: 3191, dtype: object
date 2022-06-13 00:00:00
team Morocco
score 2.0
suf_score 0.0
rank 24.0
rank_suf 149.0
rank_change 0.0
total_points 1551.88
result 0
rank_dif -125.0
points_by_rank 0.020134
team_points 3
country_classification Classe A
Name: 3192, dtype: object
date 2022-06-13 00:00:00
team Honduras
score 2.0
suf_score 1.0
rank 82.0
rank_suf 38.0
rank_change 4.0
total_points 1289.47
result 0
rank_dif 44.0
points_by_rank 0.078947
team_points 3
country_classification Classe B
Name: 3193, dtype: object
date 2022-06-13 00:00:00
team Nicaragua
score 4.0
suf_score 0.0
rank 144.0
rank_suf 201.0
rank_change 0.0
total_points 1062.21
result 0
rank_dif -57.0
points_by_rank 0.014925
team_points 3
country_classification Classe C
Name: 3194, dtype: object
date 2022-06-13 00:00:00
team Guatemala
score 2.0
suf_score 0.0
rank 118.0
rank_suf 155.0
rank_change -5.0
total_points 1147.85
result 0
rank_dif -37.0
points_by_rank 0.019355
team_points 3
country_classification Classe C
Name: 3195, dtype: object
date 2022-06-13 00:00:00
team Denmark
score 2.0
suf_score 0.0
rank 11.0
rank_suf 34.0
rank_change 2.0
total_points 1653.6
result 0
rank_dif -23.0
points_by_rank 0.088235
team_points 3
country_classification Classe S-
Name: 3196, dtype: object
date 2022-06-13 00:00:00
team France
score 0.0
suf_score 1.0
rank 3.0
rank_suf 16.0
rank_change 0.0
total_points 1789.85
result 1
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 3197, dtype: object
date 2022-06-13 00:00:00
team Iceland
score 2.0
suf_score 2.0
rank 63.0
rank_suf 76.0
rank_change 3.0
total_points 1380.85
result 2
rank_dif -13.0
points_by_rank 0.013158
team_points 1
country_classification Classe B
Name: 3198, dtype: object
date 2022-06-13 00:00:00
team Azerbaijan
score 2.0
suf_score 0.0
rank 129.0
rank_suf 93.0
rank_change 8.0
total_points 1127.05
result 0
rank_dif 36.0
points_by_rank 0.032258
team_points 3
country_classification Classe C
Name: 3199, dtype: object
date 2022-06-13 00:00:00
team Kazakhstan
score 2.0
suf_score 1.0
rank 125.0
rank_suf 45.0
rank_change 5.0
total_points 1134.77
result 0
rank_dif 80.0
points_by_rank 0.066667
team_points 3
country_classification Classe C
Name: 3200, dtype: object
date 2022-06-13 00:00:00
team Albania
score 0.0
suf_score 0.0
rank 66.0
rank_suf 110.0
rank_change 1.0
total_points 1371.86
result 2
rank_dif -44.0
points_by_rank 0.009091
team_points 1
country_classification Classe B
Name: 3201, dtype: object
date 2022-06-14 00:00:00
team Costa Rica
score 1.0
suf_score 0.0
rank 31.0
rank_suf 101.0
rank_change -11.0
total_points 1503.09
result 0
rank_dif -70.0
points_by_rank 0.029703
team_points 3
country_classification Classe A
Name: 3202, dtype: object
date 2022-06-14 00:00:00
team Kuwait
score 0.0
suf_score 3.0
rank 146.0
rank_suf 91.0
rank_change 3.0
total_points 1059.94
result 1
rank_dif 55.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3203, dtype: object
date 2022-06-14 00:00:00
team Indonesia
score 7.0
suf_score 0.0
rank 159.0
rank_suf 168.0
rank_change -1.0
total_points 1001.61
result 0
rank_dif -9.0
points_by_rank 0.017857
team_points 3
country_classification Classe C
Name: 3204, dtype: object
date 2022-06-14 00:00:00
team Palestine
score 4.0
suf_score 0.0
rank 100.0
rank_suf 133.0
rank_change 0.0
total_points 1208.9
result 0
rank_dif -33.0
points_by_rank 0.022556
team_points 3
country_classification Classe B
Name: 3205, dtype: object
date 2022-06-14 00:00:00
team Mongolia
score 2.0
suf_score 0.0
rank 186.0
rank_suf 151.0
rank_change 2.0
total_points 911.49
result 0
rank_dif 35.0
points_by_rank 0.019868
team_points 3
country_classification Classe D
Name: 3206, dtype: object
date 2022-06-14 00:00:00
team Maldives
score 1.0
suf_score 0.0
rank 156.0
rank_suf 205.0
rank_change -1.0
total_points 1025.5
result 0
rank_dif -49.0
points_by_rank 0.014634
team_points 3
country_classification Classe C
Name: 3207, dtype: object
date 2022-06-14 00:00:00
team Uzbekistan
score 2.0
suf_score 0.0
rank 83.0
rank_suf 111.0
rank_change -2.0
total_points 1286.55
result 0
rank_dif -28.0
points_by_rank 0.027027
team_points 3
country_classification Classe B
Name: 3208, dtype: object
date 2022-06-14 00:00:00
team Afghanistan
score 2.0
suf_score 2.0
rank 150.0
rank_suf 171.0
rank_change 0.0
total_points 1049.77
result 2
rank_dif -21.0
points_by_rank 0.005848
team_points 1
country_classification Classe C
Name: 3209, dtype: object
date 2022-06-14 00:00:00
team India
score 4.0
suf_score 0.0
rank 106.0
rank_suf 147.0
rank_change 2.0
total_points 1174.04
result 0
rank_dif -41.0
points_by_rank 0.020408
team_points 3
country_classification Classe C
Name: 3210, dtype: object
date 2022-06-14 00:00:00
team Bahrain
score 1.0
suf_score 0.0
rank 89.0
rank_suf 134.0
rank_change 0.0
total_points 1262.55
result 0
rank_dif -45.0
points_by_rank 0.022388
team_points 3
country_classification Classe B
Name: 3211, dtype: object
date 2022-06-14 00:00:00
team Malaysia
score 4.0
suf_score 1.0
rank 154.0
rank_suf 188.0
rank_change 0.0
total_points 1035.06
result 0
rank_dif -34.0
points_by_rank 0.015957
team_points 3
country_classification Classe C
Name: 3212, dtype: object
date 2022-06-14 00:00:00
team Myanmar
score 2.0
suf_score 6.0
rank 152.0
rank_suf 158.0
rank_change 0.0
total_points 1044.56
result 1
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3213, dtype: object
date 2022-06-14 00:00:00
team Jamaica
score 1.0
suf_score 1.0
rank 64.0
rank_suf 9.0
rank_change 2.0
total_points 1378.75
result 2
rank_dif 55.0
points_by_rank 0.111111
team_points 1
country_classification Classe B
Name: 3214, dtype: object
date 2022-06-14 00:00:00
team El Salvador
score 1.0
suf_score 1.0
rank 74.0
rank_suf 15.0
rank_change 4.0
total_points 1331.65
result 2
rank_dif 59.0
points_by_rank 0.066667
team_points 1
country_classification Classe B
Name: 3215, dtype: object
date 2022-06-14 00:00:00
team Haiti
score 6.0
suf_score 0.0
rank 90.0
rank_suf 174.0
rank_change 3.0
total_points 1261.86
result 0
rank_dif -84.0
points_by_rank 0.017241
team_points 3
country_classification Classe B
Name: 3216, dtype: object
date 2022-06-14 00:00:00
team England
score 0.0
suf_score 4.0
rank 5.0
rank_suf 40.0
rank_change 0.0
total_points 1761.71
result 1
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 3217, dtype: object
date 2022-06-14 00:00:00
team Germany
score 5.0
suf_score 2.0
rank 12.0
rank_suf 6.0
rank_change 1.0
total_points 1650.53
result 0
rank_dif 6.0
points_by_rank 0.5
team_points 3
country_classification Classe S-
Name: 3218, dtype: object
date 2022-06-14 00:00:00
team Netherlands
score 3.0
suf_score 2.0
rank 10.0
rank_suf 18.0
rank_change 0.0
total_points 1658.66
result 0
rank_dif -8.0
points_by_rank 0.166667
team_points 3
country_classification Classe S-
Name: 3219, dtype: object
date 2022-06-14 00:00:00
team Poland
score 0.0
suf_score 1.0
rank 26.0
rank_suf 2.0
rank_change -2.0
total_points 1544.2
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3220, dtype: object
date 2022-06-14 00:00:00
team Armenia
score 1.0
suf_score 4.0
rank 92.0
rank_suf 39.0
rank_change 0.0
total_points 1245.13
result 1
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3221, dtype: object
date 2022-06-14 00:00:00
team Ukraine
score 1.0
suf_score 1.0
rank 27.0
rank_suf 47.0
rank_change 0.0
total_points 1535.08
result 2
rank_dif -20.0
points_by_rank 0.021277
team_points 1
country_classification Classe A
Name: 3222, dtype: object
date 2022-06-14 00:00:00
team Bosnia and Herzegovina
score 3.0
suf_score 2.0
rank 59.0
rank_suf 57.0
rank_change 0.0
total_points 1388.63
result 0
rank_dif 2.0
points_by_rank 0.052632
team_points 3
country_classification Classe B
Name: 3223, dtype: object
date 2022-06-14 00:00:00
team Romania
score 0.0
suf_score 3.0
rank 48.0
rank_suf 70.0
rank_change 1.0
total_points 1446.54
result 1
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3224, dtype: object
date 2022-06-14 00:00:00
team Luxembourg
score 2.0
suf_score 2.0
rank 94.0
rank_suf 124.0
rank_change 1.0
total_points 1229.6
result 2
rank_dif -30.0
points_by_rank 0.008065
team_points 1
country_classification Classe B
Name: 3225, dtype: object
date 2022-06-14 00:00:00
team Turkey
score 2.0
suf_score 0.0
rank 43.0
rank_suf 138.0
rank_change 4.0
total_points 1461.81
result 0
rank_dif -95.0
points_by_rank 0.021739
team_points 3
country_classification Classe A
Name: 3226, dtype: object
date 2022-06-14 00:00:00
team Moldova
score 2.0
suf_score 1.0
rank 180.0
rank_suf 153.0
rank_change -1.0
total_points 932.79
result 0
rank_dif 27.0
points_by_rank 0.019608
team_points 3
country_classification Classe D
Name: 3227, dtype: object
date 2022-06-14 00:00:00
team Liechtenstein
score 0.0
suf_score 2.0
rank 192.0
rank_suf 135.0
rank_change 1.0
total_points 895.08
result 1
rank_dif 57.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3228, dtype: object
date 2022-06-14 00:00:00
team Chile
score 0.0
suf_score 0.0
rank 28.0
rank_suf 60.0
rank_change 2.0
total_points 1526.4
result 2
rank_dif -32.0
points_by_rank 0.016667
team_points 1
country_classification Classe A
Name: 3229, dtype: object
date 2022-06-14 00:00:00
team Japan
score 0.0
suf_score 3.0
rank 23.0
rank_suf 35.0
rank_change 0.0
total_points 1553.44
result 1
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3230, dtype: object
date 2022-06-14 00:00:00
team South Korea
score 4.0
suf_score 1.0
rank 29.0
rank_suf 32.0
rank_change 0.0
total_points 1519.54
result 0
rank_dif -3.0
points_by_rank 0.09375
team_points 3
country_classification Classe A
Name: 3231, dtype: object
date 2022-08-31 00:00:00
team Mexico
score 0.0
suf_score 1.0
rank 12.0
rank_suf 50.0
rank_change 0.0
total_points 1649.57
result 1
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3232, dtype: object
date 2022-09-17 00:00:00
team Fiji
score 1.0
suf_score 0.0
rank 163.0
rank_suf 160.0
rank_change 0.0
total_points 993.37
result 0
rank_dif 3.0
points_by_rank 0.01875
team_points 3
country_classification Classe D
Name: 3233, dtype: object
date 2022-09-17 00:00:00
team Solomon Islands
score 1.0
suf_score 0.0
rank 137.0
rank_suf 160.0
rank_change 0.0
total_points 1092.56
result 0
rank_dif -23.0
points_by_rank 0.01875
team_points 3
country_classification Classe C
Name: 3234, dtype: object
date 2022-09-21 00:00:00
team Brunei Darussalam
score 0.0
suf_score 3.0
rank 190.0
rank_suf 156.0
rank_change 0.0
total_points 897.1
result 1
rank_dif 34.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3235, dtype: object
date 2022-09-21 00:00:00
team Hong Kong
score 2.0
suf_score 0.0
rank 147.0
rank_suf 158.0
rank_change 2.0
total_points 1058.37
result 0
rank_dif -11.0
points_by_rank 0.018987
team_points 3
country_classification Classe C
Name: 3236, dtype: object
date 2022-09-21 00:00:00
team Libya
score 0.0
suf_score 0.0
rank 121.0
rank_suf 90.0
rank_change 1.0
total_points 1148.36
result 2
rank_dif 31.0
points_by_rank 0.011111
team_points 1
country_classification Classe C
Name: 3237, dtype: object
date 2022-09-21 00:00:00
team San Marino
score 0.0
suf_score 0.0
rank 211.0
rank_suf 198.0
rank_change 0.0
total_points 763.82
result 2
rank_dif 13.0
points_by_rank 0.005051
team_points 1
country_classification Classe D
Name: 3238, dtype: object
date 2022-09-21 00:00:00
team Vietnam
score 4.0
suf_score 0.0
rank 97.0
rank_suf 159.0
rank_change 0.0
total_points 1218.84
result 0
rank_dif -62.0
points_by_rank 0.018868
team_points 3
country_classification Classe B
Name: 3239, dtype: object
date 2022-09-21 00:00:00
team Scotland
score 3.0
suf_score 0.0
rank 45.0
rank_suf 27.0
rank_change 0.0
total_points 1462.96
result 0
rank_dif 18.0
points_by_rank 0.111111
team_points 3
country_classification Classe A
Name: 3240, dtype: object
date 2022-09-22 00:00:00
team Australia
score 1.0
suf_score 0.0
rank 39.0
rank_suf 103.0
rank_change 0.0
total_points 1483.73
result 0
rank_dif -64.0
points_by_rank 0.029126
team_points 3
country_classification Classe A
Name: 3241, dtype: object
date 2022-09-22 00:00:00
team Cambodia
score 0.0
suf_score 1.0
rank 174.0
rank_suf 192.0
rank_change 0.0
total_points 954.3
result 1
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3242, dtype: object
date 2022-09-22 00:00:00
team Comoros
score 0.0
suf_score 1.0
rank 127.0
rank_suf 30.0
rank_change 1.0
total_points 1127.44
result 1
rank_dif 97.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3243, dtype: object
date 2022-09-22 00:00:00
team Iceland
score 1.0
suf_score 0.0
rank 63.0
rank_suf 56.0
rank_change 0.0
total_points 1379.61
result 0
rank_dif 7.0
points_by_rank 0.053571
team_points 3
country_classification Classe B
Name: 3244, dtype: object
date 2022-09-22 00:00:00
team Suriname
score 2.0
suf_score 1.0
rank 143.0
rank_suf 139.0
rank_change 0.0
total_points 1072.24
result 0
rank_dif 4.0
points_by_rank 0.021583
team_points 3
country_classification Classe C
Name: 3245, dtype: object
date 2022-09-22 00:00:00
team Thailand
score 1.0
suf_score 1.0
rank 111.0
rank_suf 148.0
rank_change 0.0
total_points 1170.69
result 2
rank_dif -37.0
points_by_rank 0.006757
team_points 1
country_classification Classe C
Name: 3246, dtype: object
date 2022-09-22 00:00:00
team Trinidad and Tobago
score 1.0
suf_score 2.0
rank 101.0
rank_suf 109.0
rank_change 0.0
total_points 1205.85
result 1
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3247, dtype: object
date 2022-09-22 00:00:00
team Croatia
score 2.0
suf_score 1.0
rank 15.0
rank_suf 10.0
rank_change 0.0
total_points 1632.15
result 0
rank_dif 5.0
points_by_rank 0.3
team_points 3
country_classification Classe S-
Name: 3248, dtype: object
date 2022-09-22 00:00:00
team France
score 2.0
suf_score 0.0
rank 4.0
rank_suf 33.0
rank_change 0.0
total_points 1764.85
result 0
rank_dif -29.0
points_by_rank 0.090909
team_points 3
country_classification Classe S
Name: 3249, dtype: object
date 2022-09-22 00:00:00
team Belgium
score 2.0
suf_score 1.0
rank 2.0
rank_suf 19.0
rank_change 0.0
total_points 1821.92
result 0
rank_dif -17.0
points_by_rank 0.157895
team_points 3
country_classification Classe S
Name: 3250, dtype: object
date 2022-09-22 00:00:00
team Poland
score 0.0
suf_score 2.0
rank 26.0
rank_suf 8.0
rank_change 0.0
total_points 1546.18
result 1
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3251, dtype: object
date 2022-09-22 00:00:00
team Lithuania
score 1.0
suf_score 1.0
rank 142.0
rank_suf 125.0
rank_change 0.0
total_points 1074.08
result 2
rank_dif 17.0
points_by_rank 0.008
team_points 1
country_classification Classe C
Name: 3252, dtype: object
date 2022-09-22 00:00:00
team Kazakhstan
score 2.0
suf_score 1.0
rank 114.0
rank_suf 96.0
rank_change 0.0
total_points 1166.28
result 0
rank_dif 18.0
points_by_rank 0.03125
team_points 3
country_classification Classe C
Name: 3253, dtype: object
date 2022-09-22 00:00:00
team Slovakia
score 1.0
suf_score 2.0
rank 51.0
rank_suf 128.0
rank_change 0.0
total_points 1439.99
result 1
rank_dif -77.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3254, dtype: object
date 2022-09-22 00:00:00
team Latvia
score 1.0
suf_score 2.0
rank 129.0
rank_suf 177.0
rank_change 0.0
total_points 1125.36
result 1
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3255, dtype: object
date 2022-09-22 00:00:00
team Liechtenstein
score 0.0
suf_score 2.0
rank 194.0
rank_suf 152.0
rank_change 0.0
total_points 873.99
result 1
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3256, dtype: object
date 2022-09-23 00:00:00
team Japan
score 2.0
suf_score 0.0
rank 24.0
rank_suf 14.0
rank_change 0.0
total_points 1554.69
result 0
rank_dif 10.0
points_by_rank 0.214286
team_points 3
country_classification Classe A
Name: 3257, dtype: object
date 2022-09-23 00:00:00
team Algeria
score 1.0
suf_score 0.0
rank 41.0
rank_suf 83.0
rank_change 0.0
total_points 1480.59
result 0
rank_dif -42.0
points_by_rank 0.036145
team_points 3
country_classification Classe A
Name: 3258, dtype: object
date 2022-09-23 00:00:00
team Argentina
score 3.0
suf_score 0.0
rank 3.0
rank_suf 80.0
rank_change 0.0
total_points 1770.65
result 0
rank_dif -77.0
points_by_rank 0.0375
team_points 3
country_classification Classe S
Name: 3259, dtype: object
date 2022-09-23 00:00:00
team Brazil
score 3.0
suf_score 0.0
rank 1.0
rank_suf 60.0
rank_change 0.0
total_points 1837.56
result 0
rank_dif -59.0
points_by_rank 0.05
team_points 3
country_classification Classe S
Name: 3260, dtype: object
date 2022-09-23 00:00:00
team Cameroon
score 0.0
suf_score 2.0
rank 38.0
rank_suf 77.0
rank_change 0.0
total_points 1484.95
result 1
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3261, dtype: object
date 2022-09-23 00:00:00
team Canada
score 2.0
suf_score 0.0
rank 43.0
rank_suf 48.0
rank_change 0.0
total_points 1473.82
result 0
rank_dif -5.0
points_by_rank 0.0625
team_points 3
country_classification Classe A
Name: 3262, dtype: object
date 2022-09-23 00:00:00
team Egypt
score 3.0
suf_score 0.0
rank 40.0
rank_suf 119.0
rank_change 0.0
total_points 1482.63
result 0
rank_dif -79.0
points_by_rank 0.02521
team_points 3
country_classification Classe A
Name: 3263, dtype: object
date 2022-09-23 00:00:00
team Iran
score 1.0
suf_score 0.0
rank 22.0
rank_suf 13.0
rank_change -1.0
total_points 1558.64
result 0
rank_dif 9.0
points_by_rank 0.230769
team_points 3
country_classification Classe A
Name: 3264, dtype: object
date 2022-09-23 00:00:00
team Iraq
score 1.0
suf_score 1.0
rank 70.0
rank_suf 75.0
rank_change 0.0
total_points 1338.91
result 2
rank_dif -5.0
points_by_rank 0.013333
team_points 1
country_classification Classe B
Name: 3265, dtype: object
date 2022-09-23 00:00:00
team Jordan
score 2.0
suf_score 0.0
rank 86.0
rank_suf 89.0
rank_change 0.0
total_points 1279.74
result 0
rank_dif -3.0
points_by_rank 0.033708
team_points 3
country_classification Classe B
Name: 3266, dtype: object
date 2022-09-23 00:00:00
team South Korea
score 2.0
suf_score 2.0
rank 28.0
rank_suf 34.0
rank_change 0.0
total_points 1526.02
result 2
rank_dif -6.0
points_by_rank 0.029412
team_points 1
country_classification Classe A
Name: 3267, dtype: object
date 2022-09-23 00:00:00
team Mali
score 1.0
suf_score 0.0
rank 46.0
rank_suf 87.0
rank_change 0.0
total_points 1442.88
result 0
rank_dif -41.0
points_by_rank 0.034483
team_points 3
country_classification Classe A
Name: 3268, dtype: object
date 2022-09-23 00:00:00
team Morocco
score 2.0
suf_score 0.0
rank 23.0
rank_suf 29.0
rank_change 1.0
total_points 1558.35
result 0
rank_dif -6.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 3269, dtype: object
date 2022-09-23 00:00:00
team Paraguay
score 1.0
suf_score 0.0
rank 50.0
rank_suf 69.0
rank_change 0.0
total_points 1440.13
result 0
rank_dif -19.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 3270, dtype: object
date 2022-09-23 00:00:00
team Rwanda
score 0.0
suf_score 0.0
rank 136.0
rank_suf 98.0
rank_change 0.0
total_points 1095.04
result 2
rank_dif 38.0
points_by_rank 0.010204
team_points 1
country_classification Classe C
Name: 3271, dtype: object
date 2022-09-23 00:00:00
team Saudi Arabia
score 0.0
suf_score 0.0
rank 53.0
rank_suf 44.0
rank_change 0.0
total_points 1435.74
result 2
rank_dif 9.0
points_by_rank 0.022727
team_points 1
country_classification Classe A
Name: 3272, dtype: object
date 2022-09-23 00:00:00
team Germany
score 0.0
suf_score 1.0
rank 11.0
rank_suf 37.0
rank_change 0.0
total_points 1658.96
result 1
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3273, dtype: object
date 2022-09-23 00:00:00
team Italy
score 1.0
suf_score 0.0
rank 7.0
rank_suf 5.0
rank_change 0.0
total_points 1713.86
result 0
rank_dif 2.0
points_by_rank 0.6
team_points 3
country_classification Classe S
Name: 3274, dtype: object
date 2022-09-23 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 0.0
rank 57.0
rank_suf 67.0
rank_change 0.0
total_points 1403.98
result 0
rank_dif -10.0
points_by_rank 0.044776
team_points 3
country_classification Classe A
Name: 3275, dtype: object
date 2022-09-23 00:00:00
team Finland
score 1.0
suf_score 1.0
rank 59.0
rank_suf 54.0
rank_change 0.0
total_points 1398.41
result 2
rank_dif 5.0
points_by_rank 0.018519
team_points 1
country_classification Classe B
Name: 3276, dtype: object
date 2022-09-23 00:00:00
team Georgia
score 2.0
suf_score 0.0
rank 82.0
rank_suf 64.0
rank_change 0.0
total_points 1296.46
result 0
rank_dif 18.0
points_by_rank 0.046875
team_points 3
country_classification Classe B
Name: 3277, dtype: object
date 2022-09-23 00:00:00
team Bulgaria
score 5.0
suf_score 1.0
rank 74.0
rank_suf 200.0
rank_change 0.0
total_points 1325.16
result 0
rank_dif -126.0
points_by_rank 0.015
team_points 3
country_classification Classe B
Name: 3278, dtype: object
date 2022-09-23 00:00:00
team Estonia
score 2.0
suf_score 1.0
rank 110.0
rank_suf 169.0
rank_change 1.0
total_points 1177.4
result 0
rank_dif -59.0
points_by_rank 0.017751
team_points 3
country_classification Classe C
Name: 3279, dtype: object
date 2022-09-24 00:00:00
team Bolivia
score 0.0
suf_score 2.0
rank 81.0
rank_suf 18.0
rank_change 0.0
total_points 1298.81
result 1
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3280, dtype: object
date 2022-09-24 00:00:00
team Colombia
score 4.0
suf_score 1.0
rank 17.0
rank_suf 118.0
rank_change 0.0
total_points 1604.07
result 0
rank_dif -101.0
points_by_rank 0.025424
team_points 3
country_classification Classe S-
Name: 3281, dtype: object
date 2022-09-24 00:00:00
team Fiji
score 2.0
suf_score 2.0
rank 163.0
rank_suf 137.0
rank_change 0.0
total_points 993.37
result 2
rank_dif 26.0
points_by_rank 0.007299
team_points 1
country_classification Classe D
Name: 3282, dtype: object
date 2022-09-24 00:00:00
team Hong Kong
score 0.0
suf_score 0.0
rank 147.0
rank_suf 158.0
rank_change 2.0
total_points 1058.37
result 2
rank_dif -11.0
points_by_rank 0.006329
team_points 1
country_classification Classe C
Name: 3283, dtype: object
date 2022-09-24 00:00:00
team India
score 1.0
suf_score 1.0
rank 104.0
rank_suf 159.0
rank_change 0.0
total_points 1198.65
result 2
rank_dif -55.0
points_by_rank 0.006289
team_points 1
country_classification Classe C
Name: 3284, dtype: object
date 2022-09-24 00:00:00
team Indonesia
score 3.0
suf_score 2.0
rank 155.0
rank_suf 84.0
rank_change 0.0
total_points 1019.19
result 0
rank_dif 71.0
points_by_rank 0.035714
team_points 3
country_classification Classe C
Name: 3285, dtype: object
date 2022-09-24 00:00:00
team Laos
score 1.0
suf_score 3.0
rank 183.0
rank_suf 156.0
rank_change 0.0
total_points 914.66
result 1
rank_dif 27.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3286, dtype: object
date 2022-09-24 00:00:00
team Madagascar
score 3.0
suf_score 3.0
rank 105.0
rank_suf 99.0
rank_change 0.0
total_points 1193.78
result 2
rank_dif 6.0
points_by_rank 0.010101
team_points 1
country_classification Classe C
Name: 3287, dtype: object
date 2022-09-24 00:00:00
team Mauritania
score 1.0
suf_score 0.0
rank 107.0
rank_suf 91.0
rank_change -3.0
total_points 1181.86
result 0
rank_dif 16.0
points_by_rank 0.032967
team_points 3
country_classification Classe C
Name: 3288, dtype: object
date 2022-09-24 00:00:00
team Mexico
score 1.0
suf_score 0.0
rank 12.0
rank_suf 21.0
rank_change 0.0
total_points 1649.57
result 0
rank_dif -9.0
points_by_rank 0.142857
team_points 3
country_classification Classe S-
Name: 3289, dtype: object
date 2022-09-24 00:00:00
team South Africa
score 4.0
suf_score 0.0
rank 68.0
rank_suf 113.0
rank_change 0.0
total_points 1350.55
result 0
rank_dif -45.0
points_by_rank 0.026549
team_points 3
country_classification Classe B
Name: 3290, dtype: object
date 2022-09-24 00:00:00
team Tanzania
score 1.0
suf_score 0.0
rank 131.0
rank_suf 90.0
rank_change 0.0
total_points 1121.91
result 0
rank_dif 41.0
points_by_rank 0.033333
team_points 3
country_classification Classe C
Name: 3291, dtype: object
date 2022-09-24 00:00:00
team Vanuatu
score 0.0
suf_score 1.0
rank 164.0
rank_suf 161.0
rank_change 0.0
total_points 990.55
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3292, dtype: object
date 2022-09-24 00:00:00
team Czech Republic
score 0.0
suf_score 4.0
rank 32.0
rank_suf 9.0
rank_change 0.0
total_points 1502.9
result 1
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3293, dtype: object
date 2022-09-24 00:00:00
team Spain
score 1.0
suf_score 2.0
rank 6.0
rank_suf 16.0
rank_change 0.0
total_points 1716.93
result 1
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 3294, dtype: object
date 2022-09-24 00:00:00
team Armenia
score 0.0
suf_score 5.0
rank 92.0
rank_suf 27.0
rank_change 0.0
total_points 1242.42
result 1
rank_dif 65.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3295, dtype: object
date 2022-09-24 00:00:00
team Scotland
score 2.0
suf_score 1.0
rank 45.0
rank_suf 47.0
rank_change 0.0
total_points 1462.96
result 0
rank_dif -2.0
points_by_rank 0.06383
team_points 3
country_classification Classe A
Name: 3296, dtype: object
date 2022-09-24 00:00:00
team Israel
score 2.0
suf_score 1.0
rank 76.0
rank_suf 66.0
rank_change 0.0
total_points 1316.35
result 0
rank_dif 10.0
points_by_rank 0.045455
team_points 3
country_classification Classe B
Name: 3297, dtype: object
date 2022-09-24 00:00:00
team Slovenia
score 2.0
suf_score 1.0
rank 65.0
rank_suf 36.0
rank_change 0.0
total_points 1372.48
result 0
rank_dif 29.0
points_by_rank 0.083333
team_points 3
country_classification Classe B
Name: 3298, dtype: object
date 2022-09-24 00:00:00
team Serbia
score 4.0
suf_score 1.0
rank 25.0
rank_suf 20.0
rank_change 0.0
total_points 1549.53
result 0
rank_dif 5.0
points_by_rank 0.15
team_points 3
country_classification Classe A
Name: 3299, dtype: object
date 2022-09-24 00:00:00
team Northern Ireland
score 2.0
suf_score 1.0
rank 58.0
rank_suf 106.0
rank_change 0.0
total_points 1399.1
result 0
rank_dif -48.0
points_by_rank 0.028302
team_points 3
country_classification Classe B
Name: 3300, dtype: object
date 2022-09-24 00:00:00
team Cyprus
score 1.0
suf_score 0.0
rank 108.0
rank_suf 49.0
rank_change 1.0
total_points 1180.52
result 0
rank_dif 59.0
points_by_rank 0.061224
team_points 3
country_classification Classe C
Name: 3301, dtype: object
date 2022-09-25 00:00:00
team Thailand
score 2.0
suf_score 1.0
rank 111.0
rank_suf 101.0
rank_change 0.0
total_points 1170.69
result 0
rank_dif 10.0
points_by_rank 0.029703
team_points 3
country_classification Classe C
Name: 3302, dtype: object
date 2022-09-25 00:00:00
team Malaysia
score 0.0
suf_score 0.0
rank 148.0
rank_suf 109.0
rank_change 1.0
total_points 1057.59
result 2
rank_dif 39.0
points_by_rank 0.009174
team_points 1
country_classification Classe C
Name: 3303, dtype: object
date 2022-09-25 00:00:00
team New Zealand
score 0.0
suf_score 2.0
rank 103.0
rank_suf 39.0
rank_change 0.0
total_points 1198.96
result 1
rank_dif 64.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3304, dtype: object
date 2022-09-25 00:00:00
team Niger
score 0.0
suf_score 0.0
rank 119.0
rank_suf 150.0
rank_change 0.0
total_points 1155.23
result 2
rank_dif -31.0
points_by_rank 0.006667
team_points 1
country_classification Classe C
Name: 3305, dtype: object
date 2022-09-25 00:00:00
team Austria
score 1.0
suf_score 3.0
rank 33.0
rank_suf 15.0
rank_change 0.0
total_points 1502.47
result 1
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3306, dtype: object
date 2022-09-25 00:00:00
team Denmark
score 2.0
suf_score 0.0
rank 10.0
rank_suf 4.0
rank_change 0.0
total_points 1665.47
result 0
rank_dif 6.0
points_by_rank 0.75
team_points 3
country_classification Classe S-
Name: 3307, dtype: object
date 2022-09-25 00:00:00
team Wales
score 0.0
suf_score 1.0
rank 19.0
rank_suf 26.0
rank_change 0.0
total_points 1582.13
result 1
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3308, dtype: object
date 2022-09-25 00:00:00
team Netherlands
score 1.0
suf_score 0.0
rank 8.0
rank_suf 2.0
rank_change 0.0
total_points 1679.41
result 0
rank_dif 6.0
points_by_rank 1.5
team_points 3
country_classification Classe S-
Name: 3309, dtype: object
date 2022-09-25 00:00:00
team Luxembourg
score 1.0
suf_score 0.0
rank 93.0
rank_suf 142.0
rank_change 0.0
total_points 1235.36
result 0
rank_dif -49.0
points_by_rank 0.021127
team_points 3
country_classification Classe B
Name: 3310, dtype: object
date 2022-09-25 00:00:00
team Slovakia
score 1.0
suf_score 1.0
rank 51.0
rank_suf 96.0
rank_change 0.0
total_points 1439.99
result 2
rank_dif -45.0
points_by_rank 0.010417
team_points 1
country_classification Classe A
Name: 3311, dtype: object
date 2022-09-25 00:00:00
team Azerbaijan
score 3.0
suf_score 0.0
rank 128.0
rank_suf 114.0
rank_change 0.0
total_points 1127.17
result 0
rank_dif 14.0
points_by_rank 0.026316
team_points 3
country_classification Classe C
Name: 3312, dtype: object
date 2022-09-25 00:00:00
team Andorra
score 1.0
suf_score 1.0
rank 152.0
rank_suf 129.0
rank_change 0.0
total_points 1028.7
result 2
rank_dif 23.0
points_by_rank 0.007752
team_points 1
country_classification Classe C
Name: 3313, dtype: object
date 2022-09-25 00:00:00
team Moldova
score 2.0
suf_score 0.0
rank 177.0
rank_suf 194.0
rank_change -1.0
total_points 944.96
result 0
rank_dif -17.0
points_by_rank 0.015464
team_points 3
country_classification Classe D
Name: 3314, dtype: object
date 2022-09-26 00:00:00
team Ethiopia
score 2.0
suf_score 2.0
rank 138.0
rank_suf 130.0
rank_change 0.0
total_points 1088.27
result 2
rank_dif 8.0
points_by_rank 0.007692
team_points 1
country_classification Classe C
Name: 3315, dtype: object
date 2022-09-26 00:00:00
team Iraq
score 1.0
suf_score 0.0
rank 70.0
rank_suf 89.0
rank_change 0.0
total_points 1338.91
result 0
rank_dif -19.0
points_by_rank 0.033708
team_points 3
country_classification Classe B
Name: 3316, dtype: object
date 2022-09-26 00:00:00
team Jordan
score 1.0
suf_score 0.0
rank 86.0
rank_suf 75.0
rank_change 0.0
total_points 1279.74
result 0
rank_dif 11.0
points_by_rank 0.04
team_points 3
country_classification Classe B
Name: 3317, dtype: object
date 2022-09-26 00:00:00
team England
score 3.0
suf_score 3.0
rank 5.0
rank_suf 11.0
rank_change 0.0
total_points 1737.46
result 2
rank_dif -6.0
points_by_rank 0.090909
team_points 1
country_classification Classe S
Name: 3318, dtype: object
date 2022-09-26 00:00:00
team Hungary
score 0.0
suf_score 2.0
rank 37.0
rank_suf 7.0
rank_change 0.0
total_points 1486.76
result 1
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3319, dtype: object
date 2022-09-26 00:00:00
team Montenegro
score 0.0
suf_score 2.0
rank 67.0
rank_suf 59.0
rank_change 0.0
total_points 1354.59
result 1
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3320, dtype: object
date 2022-09-26 00:00:00
team Romania
score 4.0
suf_score 1.0
rank 54.0
rank_suf 57.0
rank_change 0.0
total_points 1427.84
result 0
rank_dif -3.0
points_by_rank 0.052632
team_points 3
country_classification Classe A
Name: 3321, dtype: object
date 2022-09-26 00:00:00
team Gibraltar
score 1.0
suf_score 2.0
rank 200.0
rank_suf 82.0
rank_change -1.0
total_points 856.55
result 1
rank_dif 118.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3322, dtype: object
date 2022-09-26 00:00:00
team North Macedonia
score 0.0
suf_score 1.0
rank 64.0
rank_suf 74.0
rank_change 0.0
total_points 1375.2
result 1
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3323, dtype: object
date 2022-09-26 00:00:00
team San Marino
score 0.0
suf_score 4.0
rank 211.0
rank_suf 110.0
rank_change 0.0
total_points 763.82
result 1
rank_dif 101.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3324, dtype: object
date 2022-09-27 00:00:00
team Fiji
score 0.0
suf_score 1.0
rank 163.0
rank_suf 161.0
rank_change 0.0
total_points 993.37
result 1
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3325, dtype: object
date 2022-09-27 00:00:00
team Algeria
score 2.0
suf_score 1.0
rank 41.0
rank_suf 31.0
rank_change 0.0
total_points 1480.59
result 0
rank_dif 10.0
points_by_rank 0.096774
team_points 3
country_classification Classe A
Name: 3326, dtype: object
date 2022-09-27 00:00:00
team Argentina
score 3.0
suf_score 0.0
rank 3.0
rank_suf 62.0
rank_change 0.0
total_points 1770.65
result 0
rank_dif -59.0
points_by_rank 0.048387
team_points 3
country_classification Classe S
Name: 3327, dtype: object
date 2022-09-27 00:00:00
team Bahrain
score 0.0
suf_score 2.0
rank 85.0
rank_suf 61.0
rank_change 0.0
total_points 1289.25
result 1
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3328, dtype: object
date 2022-09-27 00:00:00
team Brazil
score 5.0
suf_score 1.0
rank 1.0
rank_suf 30.0
rank_change 0.0
total_points 1837.56
result 0
rank_dif -29.0
points_by_rank 0.1
team_points 3
country_classification Classe S
Name: 3329, dtype: object
date 2022-09-27 00:00:00
team Brunei Darussalam
score 1.0
suf_score 0.0
rank 190.0
rank_suf 183.0
rank_change 0.0
total_points 897.1
result 0
rank_dif 7.0
points_by_rank 0.016393
team_points 3
country_classification Classe D
Name: 3330, dtype: object
date 2022-09-27 00:00:00
team Burkina Faso
score 2.0
suf_score 1.0
rank 55.0
rank_suf 127.0
rank_change 0.0
total_points 1425.64
result 0
rank_dif -72.0
points_by_rank 0.023622
team_points 3
country_classification Classe A
Name: 3331, dtype: object
date 2022-09-27 00:00:00
team Canada
score 0.0
suf_score 2.0
rank 43.0
rank_suf 13.0
rank_change 0.0
total_points 1473.82
result 1
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3332, dtype: object
date 2022-09-27 00:00:00
team Costa Rica
score 2.0
suf_score 1.0
rank 34.0
rank_suf 77.0
rank_change 0.0
total_points 1500.06
result 0
rank_dif -43.0
points_by_rank 0.038961
team_points 3
country_classification Classe A
Name: 3333, dtype: object
date 2022-09-27 00:00:00
team Ecuador
score 0.0
suf_score 0.0
rank 44.0
rank_suf 24.0
rank_change 0.0
total_points 1463.74
result 2
rank_dif 20.0
points_by_rank 0.041667
team_points 1
country_classification Classe A
Name: 3334, dtype: object
date 2022-09-27 00:00:00
team Egypt
score 3.0
suf_score 0.0
rank 40.0
rank_suf 150.0
rank_change 0.0
total_points 1482.63
result 0
rank_dif -110.0
points_by_rank 0.02
team_points 3
country_classification Classe A
Name: 3335, dtype: object
date 2022-09-27 00:00:00
team Equatorial Guinea
score 2.0
suf_score 2.0
rank 98.0
rank_suf 126.0
rank_change 0.0
total_points 1215.33
result 2
rank_dif -28.0
points_by_rank 0.007937
team_points 1
country_classification Classe B
Name: 3336, dtype: object
date 2022-09-27 00:00:00
team Ghana
score 1.0
suf_score 0.0
rank 60.0
rank_suf 139.0
rank_change 0.0
total_points 1393.47
result 0
rank_dif -79.0
points_by_rank 0.021583
team_points 3
country_classification Classe B
Name: 3337, dtype: object
date 2022-09-27 00:00:00
team Honduras
score 2.0
suf_score 1.0
rank 80.0
rank_suf 118.0
rank_change 0.0
total_points 1299.69
result 0
rank_dif -38.0
points_by_rank 0.025424
team_points 3
country_classification Classe B
Name: 3338, dtype: object
date 2022-09-27 00:00:00
team Indonesia
score 2.0
suf_score 1.0
rank 155.0
rank_suf 84.0
rank_change 0.0
total_points 1019.19
result 0
rank_dif 71.0
points_by_rank 0.035714
team_points 3
country_classification Classe C
Name: 3339, dtype: object
date 2022-09-27 00:00:00
team Iran
score 1.0
suf_score 1.0
rank 22.0
rank_suf 18.0
rank_change -1.0
total_points 1558.64
result 2
rank_dif 4.0
points_by_rank 0.055556
team_points 1
country_classification Classe A
Name: 3340, dtype: object
date 2022-09-27 00:00:00
team South Korea
score 1.0
suf_score 0.0
rank 28.0
rank_suf 38.0
rank_change 0.0
total_points 1526.02
result 0
rank_dif -10.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 3341, dtype: object
date 2022-09-27 00:00:00
team Libya
score 2.0
suf_score 1.0
rank 121.0
rank_suf 131.0
rank_change 1.0
total_points 1148.36
result 0
rank_dif -10.0
points_by_rank 0.022901
team_points 3
country_classification Classe C
Name: 3342, dtype: object
date 2022-09-27 00:00:00
team Madagascar
score 3.0
suf_score 1.0
rank 105.0
rank_suf 91.0
rank_change 0.0
total_points 1193.78
result 0
rank_dif 14.0
points_by_rank 0.032967
team_points 3
country_classification Classe C
Name: 3343, dtype: object
date 2022-09-27 00:00:00
team Malta
score 2.0
suf_score 1.0
rank 169.0
rank_suf 76.0
rank_change 1.0
total_points 974.68
result 0
rank_dif 93.0
points_by_rank 0.039474
team_points 3
country_classification Classe D
Name: 3344, dtype: object
date 2022-09-27 00:00:00
team Mauritania
score 2.0
suf_score 0.0
rank 107.0
rank_suf 99.0
rank_change -3.0
total_points 1181.86
result 0
rank_dif 8.0
points_by_rank 0.030303
team_points 3
country_classification Classe C
Name: 3345, dtype: object
date 2022-09-27 00:00:00
team Mexico
score 2.0
suf_score 3.0
rank 12.0
rank_suf 17.0
rank_change 0.0
total_points 1649.57
result 1
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3346, dtype: object
date 2022-09-27 00:00:00
team Nepal
score 3.0
suf_score 1.0
rank 176.0
rank_suf 192.0
rank_change 0.0
total_points 950.45
result 0
rank_dif -16.0
points_by_rank 0.015625
team_points 3
country_classification Classe D
Name: 3347, dtype: object
date 2022-09-27 00:00:00
team Paraguay
score 0.0
suf_score 0.0
rank 50.0
rank_suf 23.0
rank_change 0.0
total_points 1440.13
result 2
rank_dif 27.0
points_by_rank 0.043478
team_points 1
country_classification Classe A
Name: 3348, dtype: object
date 2022-09-27 00:00:00
team Peru
score 4.0
suf_score 1.0
rank 21.0
rank_suf 71.0
rank_change 0.0
total_points 1562.24
result 0
rank_dif -50.0
points_by_rank 0.042254
team_points 3
country_classification Classe A
Name: 3349, dtype: object
date 2022-09-27 00:00:00
team Qatar
score 2.0
suf_score 2.0
rank 48.0
rank_suf 29.0
rank_change -1.0
total_points 1441.97
result 2
rank_dif 19.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 3350, dtype: object
date 2022-09-27 00:00:00
team Saudi Arabia
score 0.0
suf_score 0.0
rank 53.0
rank_suf 14.0
rank_change 0.0
total_points 1435.74
result 2
rank_dif 39.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 3351, dtype: object
date 2022-09-27 00:00:00
team South Africa
score 1.0
suf_score 0.0
rank 68.0
rank_suf 146.0
rank_change 0.0
total_points 1350.55
result 0
rank_dif -78.0
points_by_rank 0.020548
team_points 3
country_classification Classe B
Name: 3352, dtype: object
date 2022-09-27 00:00:00
team United Arab Emirates
score 0.0
suf_score 4.0
rank 69.0
rank_suf 56.0
rank_change 0.0
total_points 1346.09
result 1
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3353, dtype: object
date 2022-09-27 00:00:00
team Vietnam
score 3.0
suf_score 0.0
rank 97.0
rank_suf 104.0
rank_change 0.0
total_points 1218.84
result 0
rank_dif -7.0
points_by_rank 0.028846
team_points 3
country_classification Classe B
Name: 3354, dtype: object
date 2022-09-27 00:00:00
team Portugal
score 0.0
suf_score 1.0
rank 9.0
rank_suf 6.0
rank_change 0.0
total_points 1678.65
result 1
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3355, dtype: object
date 2022-09-27 00:00:00
team Switzerland
score 2.0
suf_score 1.0
rank 16.0
rank_suf 32.0
rank_change 0.0
total_points 1621.43
result 0
rank_dif -16.0
points_by_rank 0.09375
team_points 3
country_classification Classe S-
Name: 3356, dtype: object
date 2022-09-27 00:00:00
team Republic of Ireland
score 3.0
suf_score 2.0
rank 47.0
rank_suf 92.0
rank_change 0.0
total_points 1442.48
result 0
rank_dif -45.0
points_by_rank 0.032609
team_points 3
country_classification Classe A
Name: 3357, dtype: object
date 2022-09-27 00:00:00
team Ukraine
score 0.0
suf_score 0.0
rank 27.0
rank_suf 45.0
rank_change 0.0
total_points 1542.79
result 2
rank_dif -18.0
points_by_rank 0.022222
team_points 1
country_classification Classe A
Name: 3358, dtype: object
date 2022-09-27 00:00:00
team Albania
score 1.0
suf_score 1.0
rank 66.0
rank_suf 63.0
rank_change 0.0
total_points 1361.81
result 2
rank_dif 3.0
points_by_rank 0.015873
team_points 1
country_classification Classe B
Name: 3359, dtype: object
date 2022-09-27 00:00:00
team Norway
score 0.0
suf_score 2.0
rank 36.0
rank_suf 25.0
rank_change 0.0
total_points 1488.57
result 1
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3360, dtype: object
date 2022-09-27 00:00:00
team Sweden
score 1.0
suf_score 1.0
rank 20.0
rank_suf 65.0
rank_change 0.0
total_points 1563.44
result 2
rank_dif -45.0
points_by_rank 0.015385
team_points 1
country_classification Classe A
Name: 3361, dtype: object
date 2022-09-27 00:00:00
team Kosovo
score 5.0
suf_score 1.0
rank 106.0
rank_suf 108.0
rank_change 0.0
total_points 1183.9
result 0
rank_dif -2.0
points_by_rank 0.027778
team_points 3
country_classification Classe C
Name: 3362, dtype: object
date 2022-09-27 00:00:00
team Greece
score 3.0
suf_score 1.0
rank 49.0
rank_suf 58.0
rank_change 1.0
total_points 1441.45
result 0
rank_dif -9.0
points_by_rank 0.051724
team_points 3
country_classification Classe A
Name: 3363, dtype: object
date 2018-07-01 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 6.0
rank_suf 49.0
rank_change -2.0
total_points 2104.0
result 2
rank_dif 43.0
points_by_rank 0.020408
team_points 1
country_classification Classe S
Name: 0, dtype: object
date 2018-07-01 00:00:00
team Denmark
score 1.0
suf_score 1.0
rank 15.0
rank_suf 12.0
rank_change -1.0
total_points 2014.0
result 2
rank_dif -3.0
points_by_rank 0.083333
team_points 1
country_classification Classe S
Name: 1, dtype: object
date 2018-07-02 00:00:00
team Mexico
score 0.0
suf_score 2.0
rank 10.0
rank_suf 4.0
rank_change -5.0
total_points 2041.0
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 2, dtype: object
date 2018-07-02 00:00:00
team Japan
score 2.0
suf_score 3.0
rank 41.0
rank_suf 5.0
rank_change -7.0
total_points 1816.0
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 3, dtype: object
date 2018-07-03 00:00:00
team Switzerland
score 0.0
suf_score 1.0
rank 8.0
rank_suf 21.0
rank_change -2.0
total_points 2087.0
result 0
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 4, dtype: object
date 2018-07-03 00:00:00
team England
score 1.0
suf_score 1.0
rank 7.0
rank_suf 17.0
rank_change -2.0
total_points 2099.0
result 2
rank_dif 10.0
points_by_rank 0.058824
team_points 1
country_classification Classe S
Name: 5, dtype: object
date 2018-07-05 00:00:00
team Fiji
score 0.0
suf_score 1.0
rank 167.0
rank_suf 171.0
rank_change 0.0
total_points 1025.0
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 6, dtype: object
date 2018-07-06 00:00:00
team France
score 2.0
suf_score 0.0
rank 2.0
rank_suf 14.0
rank_change -2.0
total_points 2164.0
result 1
rank_dif 12.0
points_by_rank 0.214286
team_points 3
country_classification Classe S
Name: 7, dtype: object
date 2018-07-06 00:00:00
team Belgium
score 2.0
suf_score 1.0
rank 5.0
rank_suf 4.0
rank_change -1.0
total_points 2124.0
result 1
rank_dif -1.0
points_by_rank 0.75
team_points 3
country_classification Classe S
Name: 8, dtype: object
date 2018-07-07 00:00:00
team England
score 2.0
suf_score 0.0
rank 7.0
rank_suf 21.0
rank_change -2.0
total_points 2099.0
result 1
rank_dif 14.0
points_by_rank 0.142857
team_points 3
country_classification Classe S
Name: 9, dtype: object
date 2018-07-07 00:00:00
team Croatia
score 2.0
suf_score 2.0
rank 12.0
rank_suf 49.0
rank_change -6.0
total_points 2036.0
result 2
rank_dif 37.0
points_by_rank 0.020408
team_points 1
country_classification Classe S
Name: 10, dtype: object
date 2018-07-10 00:00:00
team Belgium
score 0.0
suf_score 1.0
rank 5.0
rank_suf 2.0
rank_change -1.0
total_points 2124.0
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 11, dtype: object
date 2018-07-11 00:00:00
team England
score 1.0
suf_score 2.0
rank 7.0
rank_suf 12.0
rank_change -2.0
total_points 2099.0
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 12, dtype: object
date 2018-07-14 00:00:00
team England
score 0.0
suf_score 2.0
rank 7.0
rank_suf 5.0
rank_change -2.0
total_points 2099.0
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 13, dtype: object
date 2018-07-15 00:00:00
team Croatia
score 2.0
suf_score 4.0
rank 12.0
rank_suf 2.0
rank_change -6.0
total_points 2036.0
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 14, dtype: object
date 2018-07-22 00:00:00
team Sierra Leone
score 0.0
suf_score 0.0
rank 113.0
rank_suf 151.0
rank_change 0.0
total_points 1373.0
result 2
rank_dif 38.0
points_by_rank 0.006623
team_points 1
country_classification Classe B
Name: 15, dtype: object
date 2018-08-04 00:00:00
team Barbados
score 0.0
suf_score 1.0
rank 162.0
rank_suf 163.0
rank_change 0.0
total_points 1059.0
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 16, dtype: object
date 2018-08-04 00:00:00
team Iraq
score 3.0
suf_score 0.0
rank 84.0
rank_suf 101.0
rank_change 0.0
total_points 1534.0
result 1
rank_dif 17.0
points_by_rank 0.029703
team_points 3
country_classification Classe A
Name: 17, dtype: object
date 2018-08-15 00:00:00
team Cuba
score 0.0
suf_score 3.0
rank 168.0
rank_suf 133.0
rank_change 0.0
total_points 1018.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 18, dtype: object
date 2018-08-18 00:00:00
team United Arab Emirates
score 0.0
suf_score 0.0
rank 77.0
rank_suf 130.0
rank_change 0.0
total_points 1312.0
result 2
rank_dif 53.0
points_by_rank 0.007692
team_points 1
country_classification Classe B
Name: 19, dtype: object
date 2018-08-18 00:00:00
team Jamaica
score 5.0
suf_score 1.0
rank 54.0
rank_suf 168.0
rank_change 0.0
total_points 1400.0
result 1
rank_dif 114.0
points_by_rank 0.017857
team_points 3
country_classification Classe B
Name: 20, dtype: object
date 2018-08-18 00:00:00
team Cuba
score 0.0
suf_score 1.0
rank 181.0
rank_suf 146.0
rank_change 0.0
total_points 940.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 21, dtype: object
date 2018-08-20 00:00:00
team Jamaica
score 2.0
suf_score 2.0
rank 54.0
rank_suf 160.0
rank_change 0.0
total_points 1400.0
result 2
rank_dif 106.0
points_by_rank 0.00625
team_points 1
country_classification Classe B
Name: 22, dtype: object
date 2018-08-26 00:00:00
team Cuba
score 0.0
suf_score 0.0
rank 181.0
rank_suf 160.0
rank_change 0.0
total_points 940.0
result 2
rank_dif -21.0
points_by_rank 0.00625
team_points 1
country_classification Classe D
Name: 23, dtype: object
date 2018-08-29 00:00:00
team Sri Lanka
score 1.0
suf_score 0.0
rank 200.0
rank_suf 194.0
rank_change 0.0
total_points 888.0
result 1
rank_dif -6.0
points_by_rank 0.015464
team_points 3
country_classification Classe D
Name: 24, dtype: object
date 2018-08-29 00:00:00
team Cuba
score 2.0
suf_score 0.0
rank 181.0
rank_suf 160.0
rank_change 0.0
total_points 940.0
result 1
rank_dif -21.0
points_by_rank 0.01875
team_points 3
country_classification Classe D
Name: 25, dtype: object
date 2018-08-29 00:00:00
team Solomon Islands
score 4.0
suf_score 1.0
rank 143.0
rank_suf 185.0
rank_change 0.0
total_points 1072.0
result 1
rank_dif 42.0
points_by_rank 0.016216
team_points 3
country_classification Classe C
Name: 26, dtype: object
date 2018-09-02 00:00:00
team Burundi
score 1.0
suf_score 1.0
rank 148.0
rank_suf 151.0
rank_change 0.0
total_points 1056.0
result 2
rank_dif 3.0
points_by_rank 0.006623
team_points 1
country_classification Classe C
Name: 27, dtype: object
date 2018-09-02 00:00:00
team Macau
score 1.0
suf_score 4.0
rank 185.0
rank_suf 186.0
rank_change 0.0
total_points 924.0
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 28, dtype: object
date 2018-09-04 00:00:00
team Guam
score 0.0
suf_score 2.0
rank 190.0
rank_suf 185.0
rank_change 0.0
total_points 912.0
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 29, dtype: object
date 2018-09-04 00:00:00
team Pakistan
score 2.0
suf_score 1.0
rank 201.0
rank_suf 161.0
rank_change 0.0
total_points 884.0
result 1
rank_dif -40.0
points_by_rank 0.018634
team_points 3
country_classification Classe D
Name: 30, dtype: object
date 2018-09-04 00:00:00
team Bhutan
score 0.0
suf_score 2.0
rank 183.0
rank_suf 194.0
rank_change 0.0
total_points 932.0
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 31, dtype: object
date 2018-09-05 00:00:00
team Solomon Islands
score 1.0
suf_score 1.0
rank 143.0
rank_suf 165.0
rank_change 0.0
total_points 1072.0
result 2
rank_dif 22.0
points_by_rank 0.006061
team_points 1
country_classification Classe C
Name: 32, dtype: object
date 2018-09-05 00:00:00
team Denmark
score 0.0
suf_score 3.0
rank 9.0
rank_suf 26.0
rank_change -3.0
total_points 1580.0
result 0
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 33, dtype: object
date 2018-09-05 00:00:00
team Sri Lanka
score 0.0
suf_score 2.0
rank 200.0
rank_suf 96.0
rank_change 0.0
total_points 888.0
result 0
rank_dif -104.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 34, dtype: object
date 2018-09-06 00:00:00
team France
score 0.0
suf_score 0.0
rank 1.0
rank_suf 15.0
rank_change -6.0
total_points 1726.0
result 2
rank_dif 14.0
points_by_rank 0.066667
team_points 1
country_classification Classe S
Name: 35, dtype: object
date 2018-09-06 00:00:00
team Ukraine
score 2.0
suf_score 1.0
rank 35.0
rank_suf 44.0
rank_change 0.0
total_points 1468.0
result 1
rank_dif 9.0
points_by_rank 0.068182
team_points 3
country_classification Classe A
Name: 36, dtype: object
date 2018-09-06 00:00:00
team Republic of Ireland
score 1.0
suf_score 4.0
rank 29.0
rank_suf 19.0
rank_change -2.0
total_points 1484.0
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 37, dtype: object
date 2018-09-06 00:00:00
team Cyprus
score 0.0
suf_score 2.0
rank 87.0
rank_suf 53.0
rank_change 0.0
total_points 1280.0
result 0
rank_dif -34.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 38, dtype: object
date 2018-09-06 00:00:00
team Bulgaria
score 2.0
suf_score 1.0
rank 47.0
rank_suf 55.0
rank_change -2.0
total_points 1416.0
result 1
rank_dif 8.0
points_by_rank 0.054545
team_points 3
country_classification Classe A
Name: 39, dtype: object
date 2018-09-06 00:00:00
team Georgia
score 2.0
suf_score 0.0
rank 96.0
rank_suf 116.0
rank_change 0.0
total_points 1242.0
result 1
rank_dif 20.0
points_by_rank 0.025862
team_points 3
country_classification Classe B
Name: 40, dtype: object
date 2018-09-06 00:00:00
team Andorra
score 0.0
suf_score 0.0
rank 130.0
rank_suf 129.0
rank_change 0.0
total_points 1120.0
result 2
rank_dif -1.0
points_by_rank 0.007752
team_points 1
country_classification Classe C
Name: 41, dtype: object
date 2018-09-06 00:00:00
team Liechtenstein
score 1.0
suf_score 2.0
rank 180.0
rank_suf 100.0
rank_change 0.0
total_points 944.0
result 0
rank_dif -80.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 42, dtype: object
date 2018-09-06 00:00:00
team Sweden
score 0.0
suf_score 2.0
rank 13.0
rank_suf 23.0
rank_change -11.0
total_points 1565.0
result 0
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 43, dtype: object
date 2018-09-06 00:00:00
team Philippines
score 1.0
suf_score 1.0
rank 115.0
rank_suf 113.0
rank_change 0.0
total_points 1172.0
result 2
rank_dif -2.0
points_by_rank 0.00885
team_points 1
country_classification Classe C
Name: 44, dtype: object
date 2018-09-06 00:00:00
team Lebanon
score 1.0
suf_score 0.0
rank 79.0
rank_suf 110.0
rank_change 0.0
total_points 1304.0
result 1
rank_dif 31.0
points_by_rank 0.027273
team_points 3
country_classification Classe B
Name: 45, dtype: object
date 2018-09-06 00:00:00
team Peru
score 1.0
suf_score 2.0
rank 20.0
rank_suf 17.0
rank_change 9.0
total_points 1535.0
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 46, dtype: object
date 2018-09-06 00:00:00
team Croatia
score 1.0
suf_score 1.0
rank 4.0
rank_suf 7.0
rank_change -16.0
total_points 1643.0
result 2
rank_dif 3.0
points_by_rank 0.142857
team_points 1
country_classification Classe S-
Name: 47, dtype: object
date 2018-09-06 00:00:00
team United Arab Emirates
score 0.0
suf_score 2.0
rank 77.0
rank_suf 91.0
rank_change 0.0
total_points 1312.0
result 0
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 48, dtype: object
date 2018-09-06 00:00:00
team Syria
score 1.0
suf_score 1.0
rank 73.0
rank_suf 95.0
rank_change 0.0
total_points 1328.0
result 2
rank_dif 22.0
points_by_rank 0.010526
team_points 1
country_classification Classe B
Name: 49, dtype: object
date 2018-09-06 00:00:00
team Guam
score 1.0
suf_score 1.0
rank 190.0
rank_suf 186.0
rank_change 0.0
total_points 912.0
result 2
rank_dif -4.0
points_by_rank 0.005376
team_points 1
country_classification Classe D
Name: 50, dtype: object
date 2018-09-06 00:00:00
team Bhutan
score 0.0
suf_score 4.0
rank 183.0
rank_suf 161.0
rank_change 0.0
total_points 932.0
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 51, dtype: object
date 2018-09-06 00:00:00
team Pakistan
score 0.0
suf_score 1.0
rank 201.0
rank_suf 194.0
rank_change 0.0
total_points 884.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 52, dtype: object
date 2018-09-06 00:00:00
team Suriname
score 0.0
suf_score 0.0
rank 153.0
rank_suf 177.0
rank_change 0.0
total_points 1036.0
result 2
rank_dif 24.0
points_by_rank 0.00565
team_points 1
country_classification Classe C
Name: 53, dtype: object
date 2018-09-06 00:00:00
team Barbados
score 0.0
suf_score 3.0
rank 160.0
rank_suf 182.0
rank_change 0.0
total_points 1005.0
result 0
rank_dif 22.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 54, dtype: object
date 2018-09-07 00:00:00
team Poland
score 1.0
suf_score 1.0
rank 18.0
rank_suf 21.0
rank_change 10.0
total_points 1538.0
result 2
rank_dif 3.0
points_by_rank 0.047619
team_points 1
country_classification Classe A
Name: 55, dtype: object
date 2018-09-07 00:00:00
team Russia
score 2.0
suf_score 1.0
rank 49.0
rank_suf 38.0
rank_change -21.0
total_points 1410.0
result 1
rank_dif -11.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 56, dtype: object
date 2018-09-07 00:00:00
team Israel
score 0.0
suf_score 1.0
rank 93.0
rank_suf 58.0
rank_change 0.0
total_points 1256.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 57, dtype: object
date 2018-09-07 00:00:00
team Serbia
score 1.0
suf_score 0.0
rank 36.0
rank_suf 127.0
rank_change 2.0
total_points 1459.0
result 1
rank_dif 91.0
points_by_rank 0.023622
team_points 3
country_classification Classe A
Name: 58, dtype: object
date 2018-09-07 00:00:00
team Montenegro
score 0.0
suf_score 0.0
rank 41.0
rank_suf 28.0
rank_change -2.0
total_points 1440.0
result 2
rank_dif -13.0
points_by_rank 0.035714
team_points 1
country_classification Classe A
Name: 59, dtype: object
date 2018-09-07 00:00:00
team Malta
score 1.0
suf_score 3.0
rank 184.0
rank_suf 90.0
rank_change 0.0
total_points 928.0
result 0
rank_dif -94.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 60, dtype: object
date 2018-09-07 00:00:00
team Kosovo
score 0.0
suf_score 0.0
rank 141.0
rank_suf 105.0
rank_change 0.0
total_points 1080.0
result 2
rank_dif -36.0
points_by_rank 0.009524
team_points 1
country_classification Classe C
Name: 61, dtype: object
date 2018-09-07 00:00:00
team Guatemala
score 0.0
suf_score 3.0
rank 146.0
rank_suf 11.0
rank_change 0.0
total_points 1064.0
result 0
rank_dif -135.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 62, dtype: object
date 2018-09-07 00:00:00
team Jamaica
score 0.0
suf_score 2.0
rank 54.0
rank_suf 60.0
rank_change 0.0
total_points 1400.0
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 63, dtype: object
date 2018-09-07 00:00:00
team Costa Rica
score 0.0
suf_score 2.0
rank 32.0
rank_suf 57.0
rank_change 9.0
total_points 1471.0
result 0
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 64, dtype: object
date 2018-09-07 00:00:00
team Uruguay
score 4.0
suf_score 1.0
rank 5.0
rank_suf 16.0
rank_change -9.0
total_points 1627.0
result 1
rank_dif 11.0
points_by_rank 0.1875
team_points 3
country_classification Classe S-
Name: 65, dtype: object
date 2018-09-07 00:00:00
team China PR
score 0.0
suf_score 1.0
rank 75.0
rank_suf 98.0
rank_change 0.0
total_points 1320.0
result 0
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 66, dtype: object
date 2018-09-07 00:00:00
team Belgium
score 4.0
suf_score 0.0
rank 2.0
rank_suf 40.0
rank_change -1.0
total_points 1723.0
result 1
rank_dif 38.0
points_by_rank 0.075
team_points 3
country_classification Classe S
Name: 67, dtype: object
date 2018-09-07 00:00:00
team Mauritius
score 1.0
suf_score 1.0
rank 155.0
rank_suf 169.0
rank_change 0.0
total_points 1028.0
result 2
rank_dif 14.0
points_by_rank 0.005917
team_points 1
country_classification Classe C
Name: 68, dtype: object
date 2018-09-07 00:00:00
team Brazil
score 2.0
suf_score 0.0
rank 3.0
rank_suf 22.0
rank_change 1.0
total_points 1657.0
result 1
rank_dif 19.0
points_by_rank 0.136364
team_points 3
country_classification Classe S-
Name: 69, dtype: object
date 2018-09-07 00:00:00
team Colombia
score 2.0
suf_score 1.0
rank 14.0
rank_suf 31.0
rank_change -2.0
total_points 1563.0
result 1
rank_dif 17.0
points_by_rank 0.096774
team_points 3
country_classification Classe A
Name: 70, dtype: object
date 2018-09-07 00:00:00
team Sri Lanka
score 0.0
suf_score 0.0
rank 200.0
rank_suf 150.0
rank_change 0.0
total_points 888.0
result 2
rank_dif -50.0
points_by_rank 0.006667
team_points 1
country_classification Classe D
Name: 71, dtype: object
date 2018-09-07 00:00:00
team Bahamas
score 0.0
suf_score 4.0
rank 206.0
rank_suf 163.0
rank_change 0.0
total_points 868.0
result 0
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 72, dtype: object
date 2018-09-08 00:00:00
team Iceland
score 0.0
suf_score 6.0
rank 32.0
rank_suf 8.0
rank_change 10.0
total_points 1471.0
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 73, dtype: object
date 2018-09-08 00:00:00
team Spain
score 2.0
suf_score 1.0
rank 9.0
rank_suf 6.0
rank_change -1.0
total_points 1580.0
result 1
rank_dif -3.0
points_by_rank 0.5
team_points 3
country_classification Classe A
Name: 74, dtype: object
date 2018-09-08 00:00:00
team Bosnia and Herzegovina
score 2.0
suf_score 1.0
rank 39.0
rank_suf 27.0
rank_change -1.0
total_points 1452.0
result 1
rank_dif -12.0
points_by_rank 0.111111
team_points 3
country_classification Classe A
Name: 75, dtype: object
date 2018-09-08 00:00:00
team Hungary
score 0.0
suf_score 1.0
rank 51.0
rank_suf 62.0
rank_change 0.0
total_points 1409.0
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 76, dtype: object
date 2018-09-08 00:00:00
team Greece
score 1.0
suf_score 0.0
rank 42.0
rank_suf 94.0
rank_change -2.0
total_points 1436.0
result 1
rank_dif 52.0
points_by_rank 0.031915
team_points 3
country_classification Classe A
Name: 77, dtype: object
date 2018-09-08 00:00:00
team San Marino
score 0.0
suf_score 5.0
rank 203.0
rank_suf 78.0
rank_change 0.0
total_points 876.0
result 0
rank_dif -125.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 78, dtype: object
date 2018-09-08 00:00:00
team Moldova
score 0.0
suf_score 4.0
rank 175.0
rank_suf 85.0
rank_change 0.0
total_points 957.0
result 0
rank_dif -90.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 79, dtype: object
date 2018-09-08 00:00:00
team Sudan
score 0.0
suf_score 1.0
rank 128.0
rank_suf 143.0
rank_change 0.0
total_points 1128.0
result 0
rank_dif 15.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 80, dtype: object
date 2018-09-08 00:00:00
team Cameroon
score 1.0
suf_score 1.0
rank 47.0
rank_suf 149.0
rank_change -2.0
total_points 1416.0
result 2
rank_dif 102.0
points_by_rank 0.006711
team_points 1
country_classification Classe A
Name: 81, dtype: object
date 2018-09-08 00:00:00
team Burundi
score 1.0
suf_score 1.0
rank 148.0
rank_suf 86.0
rank_change 0.0
total_points 1056.0
result 2
rank_dif -62.0
points_by_rank 0.011628
team_points 1
country_classification Classe C
Name: 82, dtype: object
date 2018-09-08 00:00:00
team Algeria
score 1.0
suf_score 1.0
rank 66.0
rank_suf 172.0
rank_change 0.0
total_points 1351.0
result 2
rank_dif 106.0
points_by_rank 0.005814
team_points 1
country_classification Classe B
Name: 83, dtype: object
date 2018-09-08 00:00:00
team Libya
score 0.0
suf_score 0.0
rank 101.0
rank_suf 74.0
rank_change 0.0
total_points 1224.0
result 2
rank_dif -27.0
points_by_rank 0.013514
team_points 1
country_classification Classe B
Name: 84, dtype: object
date 2018-09-08 00:00:00
team Burkina Faso
score 0.0
suf_score 2.0
rank 52.0
rank_suf 106.0
rank_change 0.0
total_points 1408.0
result 0
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 85, dtype: object
date 2018-09-08 00:00:00
team Niger
score 0.0
suf_score 6.0
rank 103.0
rank_suf 65.0
rank_change 0.0
total_points 1216.0
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 86, dtype: object
date 2018-09-08 00:00:00
team Zambia
score 1.0
suf_score 1.0
rank 76.0
rank_suf 117.0
rank_change 0.0
total_points 1315.0
result 2
rank_dif 41.0
points_by_rank 0.008547
team_points 1
country_classification Classe B
Name: 87, dtype: object
date 2018-09-08 00:00:00
team Tanzania
score 0.0
suf_score 0.0
rank 140.0
rank_suf 82.0
rank_change 0.0
total_points 1084.0
result 2
rank_dif -58.0
points_by_rank 0.012195
team_points 1
country_classification Classe C
Name: 88, dtype: object
date 2018-09-08 00:00:00
team Bhutan
score 0.0
suf_score 3.0
rank 183.0
rank_suf 201.0
rank_change 0.0
total_points 932.0
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 89, dtype: object
date 2018-09-08 00:00:00
team Nepal
score 2.0
suf_score 0.0
rank 161.0
rank_suf 194.0
rank_change 0.0
total_points 1004.0
result 1
rank_dif 33.0
points_by_rank 0.015464
team_points 3
country_classification Classe C
Name: 90, dtype: object
date 2018-09-08 00:00:00
team Turks and Caicos Islands
score 0.0
suf_score 11.0
rank 206.0
rank_suf 181.0
rank_change 0.0
total_points 868.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 91, dtype: object
date 2018-09-08 00:00:00
team El Salvador
score 2.0
suf_score 1.0
rank 72.0
rank_suf 204.0
rank_change 0.0
total_points 1332.0
result 1
rank_dif 132.0
points_by_rank 0.014706
team_points 3
country_classification Classe B
Name: 92, dtype: object
date 2018-09-09 00:00:00
team Netherlands
score 1.0
suf_score 2.0
rank 17.0
rank_suf 1.0
rank_change 0.0
total_points 1540.0
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 93, dtype: object
date 2018-09-09 00:00:00
team Slovakia
score 0.0
suf_score 1.0
rank 26.0
rank_suf 35.0
rank_change -2.0
total_points 1493.0
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 94, dtype: object
date 2018-09-09 00:00:00
team Wales
score 0.0
suf_score 2.0
rank 19.0
rank_suf 9.0
rank_change 1.0
total_points 1536.0
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 95, dtype: object
date 2018-09-09 00:00:00
team Norway
score 0.0
suf_score 1.0
rank 53.0
rank_suf 47.0
rank_change 0.0
total_points 1406.0
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 96, dtype: object
date 2018-09-09 00:00:00
team Slovenia
score 1.0
suf_score 2.0
rank 55.0
rank_suf 87.0
rank_change -1.0
total_points 1392.0
result 0
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 97, dtype: object
date 2018-09-09 00:00:00
team Latvia
score 0.0
suf_score 1.0
rank 129.0
rank_suf 96.0
rank_change 0.0
total_points 1122.0
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 98, dtype: object
date 2018-09-09 00:00:00
team Gibraltar
score 0.0
suf_score 2.0
rank 195.0
rank_suf 180.0
rank_change 0.0
total_points 900.0
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 99, dtype: object
date 2018-09-09 00:00:00
team Peru
score 1.0
suf_score 2.0
rank 20.0
rank_suf 15.0
rank_change 9.0
total_points 1535.0
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 100, dtype: object
date 2018-09-09 00:00:00
team Oman
score 0.0
suf_score 0.0
rank 84.0
rank_suf 79.0
rank_change 0.0
total_points 1288.0
result 2
rank_dif -5.0
points_by_rank 0.012658
team_points 1
country_classification Classe B
Name: 101, dtype: object
date 2018-09-09 00:00:00
team Zimbabwe
score 1.0
suf_score 1.0
rank 118.0
rank_suf 83.0
rank_change 0.0
total_points 1164.0
result 2
rank_dif -35.0
points_by_rank 0.012048
team_points 1
country_classification Classe C
Name: 102, dtype: object
date 2018-09-09 00:00:00
team Maldives
score 0.0
suf_score 2.0
rank 150.0
rank_suf 96.0
rank_change 0.0
total_points 1048.0
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 103, dtype: object
date 2018-09-09 00:00:00
team Bermuda
score 1.0
suf_score 3.0
rank 178.0
rank_suf 188.0
rank_change 0.0
total_points 948.0
result 0
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 104, dtype: object
date 2018-09-09 00:00:00
team Cayman Islands
score 0.0
suf_score 4.0
rank 202.0
rank_suf 54.0
rank_change 0.0
total_points 880.0
result 0
rank_dif -148.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 105, dtype: object
date 2018-09-10 00:00:00
team Italy
score 0.0
suf_score 1.0
rank 21.0
rank_suf 7.0
rank_change 2.0
total_points 1532.0
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 106, dtype: object
date 2018-09-10 00:00:00
team Turkey
score 3.0
suf_score 2.0
rank 38.0
rank_suf 13.0
rank_change 0.0
total_points 1455.0
result 1
rank_dif -25.0
points_by_rank 0.230769
team_points 3
country_classification Classe A
Name: 107, dtype: object
date 2018-09-10 00:00:00
team Albania
score 0.0
suf_score 2.0
rank 58.0
rank_suf 40.0
rank_change 0.0
total_points 1384.0
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 108, dtype: object
date 2018-09-10 00:00:00
team Lithuania
score 0.0
suf_score 2.0
rank 127.0
rank_suf 41.0
rank_change 1.0
total_points 1130.0
result 0
rank_dif -86.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 109, dtype: object
date 2018-09-10 00:00:00
team Romania
score 2.0
suf_score 2.0
rank 28.0
rank_suf 36.0
rank_change -2.0
total_points 1490.0
result 2
rank_dif 8.0
points_by_rank 0.027778
team_points 1
country_classification Classe A
Name: 110, dtype: object
date 2018-09-10 00:00:00
team Kazakhstan
score 1.0
suf_score 1.0
rank 116.0
rank_suf 130.0
rank_change -1.0
total_points 1167.0
result 2
rank_dif 14.0
points_by_rank 0.007692
team_points 1
country_classification Classe C
Name: 111, dtype: object
date 2018-09-10 00:00:00
team Faroe Islands
score 0.0
suf_score 2.0
rank 90.0
rank_suf 141.0
rank_change 0.0
total_points 1268.0
result 0
rank_dif 51.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 112, dtype: object
date 2018-09-10 00:00:00
team Azerbaijan
score 1.0
suf_score 1.0
rank 105.0
rank_suf 184.0
rank_change 0.0
total_points 1207.0
result 2
rank_dif 79.0
points_by_rank 0.005435
team_points 1
country_classification Classe B
Name: 113, dtype: object
date 2018-09-10 00:00:00
team China PR
score 0.0
suf_score 0.0
rank 75.0
rank_suf 113.0
rank_change 0.0
total_points 1320.0
result 2
rank_dif 38.0
points_by_rank 0.00885
team_points 1
country_classification Classe B
Name: 114, dtype: object
date 2018-09-10 00:00:00
team Malaysia
score 3.0
suf_score 1.0
rank 171.0
rank_suf 166.0
rank_change 0.0
total_points 971.0
result 1
rank_dif -5.0
points_by_rank 0.018072
team_points 3
country_classification Classe D
Name: 115, dtype: object
date 2018-09-10 00:00:00
team Iraq
score 2.0
suf_score 2.0
rank 89.0
rank_suf 159.0
rank_change 0.0
total_points 1274.0
result 2
rank_dif 70.0
points_by_rank 0.006289
team_points 1
country_classification Classe B
Name: 116, dtype: object
date 2018-09-10 00:00:00
team Czech Republic
score 1.0
suf_score 5.0
rank 44.0
rank_suf 49.0
rank_change -2.0
total_points 1430.0
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 117, dtype: object
date 2018-09-10 00:00:00
team Bolivia
score 2.0
suf_score 2.0
rank 59.0
rank_suf 70.0
rank_change 0.0
total_points 1378.0
result 2
rank_dif 11.0
points_by_rank 0.014286
team_points 1
country_classification Classe B
Name: 118, dtype: object
date 2018-09-10 00:00:00
team Grenada
score 0.0
suf_score 10.0
rank 168.0
rank_suf 100.0
rank_change 0.0
total_points 980.0
result 0
rank_dif -68.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 119, dtype: object
date 2018-09-11 00:00:00
team Belgium
score 3.0
suf_score 0.0
rank 2.0
rank_suf 32.0
rank_change -1.0
total_points 1723.0
result 1
rank_dif 30.0
points_by_rank 0.09375
team_points 3
country_classification Classe S
Name: 120, dtype: object
date 2018-09-11 00:00:00
team Croatia
score 0.0
suf_score 6.0
rank 4.0
rank_suf 9.0
rank_change -16.0
total_points 1643.0
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 121, dtype: object
date 2018-09-11 00:00:00
team Austria
score 0.0
suf_score 1.0
rank 23.0
rank_suf 39.0
rank_change -3.0
total_points 1502.0
result 0
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 122, dtype: object
date 2018-09-11 00:00:00
team Greece
score 1.0
suf_score 2.0
rank 42.0
rank_suf 51.0
rank_change -2.0
total_points 1436.0
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 123, dtype: object
date 2018-09-11 00:00:00
team Estonia
score 0.0
suf_score 1.0
rank 94.0
rank_suf 62.0
rank_change 0.0
total_points 1250.0
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 124, dtype: object
date 2018-09-11 00:00:00
team Luxembourg
score 3.0
suf_score 0.0
rank 85.0
rank_suf 203.0
rank_change 0.0
total_points 1286.0
result 1
rank_dif 118.0
points_by_rank 0.014778
team_points 3
country_classification Classe B
Name: 125, dtype: object
date 2018-09-11 00:00:00
team Belarus
score 0.0
suf_score 0.0
rank 78.0
rank_suf 175.0
rank_change 0.0
total_points 1306.0
result 2
rank_dif 97.0
points_by_rank 0.005714
team_points 1
country_classification Classe B
Name: 126, dtype: object
date 2018-09-11 00:00:00
team Argentina
score 0.0
suf_score 0.0
rank 11.0
rank_suf 14.0
rank_change 6.0
total_points 1574.0
result 2
rank_dif 3.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 127, dtype: object
date 2018-09-11 00:00:00
team Guatemala
score 0.0
suf_score 2.0
rank 146.0
rank_suf 60.0
rank_change 0.0
total_points 1064.0
result 0
rank_dif -86.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 128, dtype: object
date 2018-09-11 00:00:00
team Switzerland
score 0.0
suf_score 1.0
rank 8.0
rank_suf 6.0
rank_change 2.0
total_points 1597.0
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 129, dtype: object
date 2018-09-11 00:00:00
team Zambia
score 1.0
suf_score 0.0
rank 76.0
rank_suf 86.0
rank_change 0.0
total_points 1315.0
result 1
rank_dif 10.0
points_by_rank 0.034884
team_points 3
country_classification Classe B
Name: 130, dtype: object
date 2018-09-11 00:00:00
team Mauritius
score 0.0
suf_score 1.0
rank 155.0
rank_suf 164.0
rank_change 0.0
total_points 1028.0
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 131, dtype: object
date 2018-09-11 00:00:00
team Costa Rica
score 0.0
suf_score 3.0
rank 32.0
rank_suf 55.0
rank_change 9.0
total_points 1471.0
result 0
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 132, dtype: object
date 2018-09-11 00:00:00
team Oman
score 0.0
suf_score 0.0
rank 84.0
rank_suf 110.0
rank_change 0.0
total_points 1288.0
result 2
rank_dif 26.0
points_by_rank 0.009091
team_points 1
country_classification Classe B
Name: 133, dtype: object
date 2018-09-11 00:00:00
team Malawi
score 0.0
suf_score 1.0
rank 123.0
rank_suf 112.0
rank_change 0.0
total_points 1140.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 134, dtype: object
date 2018-09-11 00:00:00
team Chile
score 0.0
suf_score 0.0
rank 12.0
rank_suf 57.0
rank_change 3.0
total_points 1570.0
result 2
rank_dif 45.0
points_by_rank 0.017544
team_points 1
country_classification Classe A
Name: 135, dtype: object
date 2018-09-11 00:00:00
team United Arab Emirates
score 3.0
suf_score 0.0
rank 77.0
rank_suf 178.0
rank_change 0.0
total_points 1312.0
result 1
rank_dif 101.0
points_by_rank 0.016854
team_points 3
country_classification Classe B
Name: 136, dtype: object
date 2018-09-11 00:00:00
team Nigeria
score 2.0
suf_score 1.0
rank 49.0
rank_suf 158.0
rank_change 1.0
total_points 1410.0
result 1
rank_dif 109.0
points_by_rank 0.018987
team_points 3
country_classification Classe A
Name: 137, dtype: object
date 2018-09-11 00:00:00
team Israel
score 0.0
suf_score 3.0
rank 93.0
rank_suf 27.0
rank_change 0.0
total_points 1256.0
result 0
rank_dif -66.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 138, dtype: object
date 2018-09-11 00:00:00
team Venezuela
score 2.0
suf_score 0.0
rank 31.0
rank_suf 69.0
rank_change -2.0
total_points 1476.0
result 1
rank_dif 38.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 139, dtype: object
date 2018-09-11 00:00:00
team Republic of Ireland
score 1.0
suf_score 1.0
rank 29.0
rank_suf 18.0
rank_change -2.0
total_points 1484.0
result 2
rank_dif -11.0
points_by_rank 0.055556
team_points 1
country_classification Classe A
Name: 140, dtype: object
date 2018-09-11 00:00:00
team Palestine
score 0.0
suf_score 3.0
rank 99.0
rank_suf 98.0
rank_change 0.0
total_points 1230.0
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 141, dtype: object
date 2018-09-11 00:00:00
team Fiji
score 0.0
suf_score 2.0
rank 165.0
rank_suf 169.0
rank_change 0.0
total_points 985.0
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 142, dtype: object
date 2018-09-11 00:00:00
team Mexico
score 0.0
suf_score 1.0
rank 16.0
rank_suf 22.0
rank_change 1.0
total_points 1560.0
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 143, dtype: object
date 2018-09-11 00:00:00
team Iran
score 1.0
suf_score 0.0
rank 32.0
rank_suf 95.0
rank_change -5.0
total_points 1471.0
result 1
rank_dif 63.0
points_by_rank 0.031579
team_points 3
country_classification Classe A
Name: 144, dtype: object
date 2018-09-12 00:00:00
team El Salvador
score 0.0
suf_score 5.0
rank 72.0
rank_suf 3.0
rank_change 0.0
total_points 1332.0
result 0
rank_dif -69.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 145, dtype: object
date 2018-09-12 00:00:00
team Pakistan
score 1.0
suf_score 3.0
rank 201.0
rank_suf 96.0
rank_change 0.0
total_points 884.0
result 0
rank_dif -105.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 146, dtype: object
date 2018-09-12 00:00:00
team Maldives
score 3.0
suf_score 0.0
rank 150.0
rank_suf 161.0
rank_change 0.0
total_points 1048.0
result 1
rank_dif 11.0
points_by_rank 0.018634
team_points 3
country_classification Classe C
Name: 147, dtype: object
date 2018-09-15 00:00:00
team India
score 1.0
suf_score 2.0
rank 96.0
rank_suf 150.0
rank_change -1.0
total_points 1242.0
result 0
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 148, dtype: object
date 2018-09-30 00:00:00
team Namibia
score 0.0
suf_score 1.0
rank 116.0
rank_suf 142.0
rank_change -1.0
total_points 1170.0
result 0
rank_dif 26.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 149, dtype: object
date 2018-10-10 00:00:00
team Jordan
score 0.0
suf_score 0.0
rank 110.0
rank_suf 57.0
rank_change 0.0
total_points 1189.0
result 2
rank_dif -53.0
points_by_rank 0.017544
team_points 1
country_classification Classe C
Name: 150, dtype: object
date 2018-10-10 00:00:00
team Myanmar
score 0.0
suf_score 3.0
rank 138.0
rank_suf 164.0
rank_change 0.0
total_points 1092.0
result 0
rank_dif 26.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 151, dtype: object
date 2018-10-10 00:00:00
team Ukraine
score 1.0
suf_score 1.0
rank 29.0
rank_suf 20.0
rank_change -6.0
total_points 1483.0
result 2
rank_dif -9.0
points_by_rank 0.05
team_points 1
country_classification Classe A
Name: 152, dtype: object
date 2018-10-10 00:00:00
team Kenya
score 0.0
suf_score 0.0
rank 107.0
rank_suf 149.0
rank_change -5.0
total_points 1204.0
result 2
rank_dif 42.0
points_by_rank 0.006711
team_points 1
country_classification Classe B
Name: 153, dtype: object
date 2018-10-10 00:00:00
team Guinea-Bissau
score 1.0
suf_score 2.0
rank 121.0
rank_suf 75.0
rank_change 0.0
total_points 1149.0
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 154, dtype: object
date 2018-10-11 00:00:00
team Portugal
score 3.0
suf_score 2.0
rank 7.0
rank_suf 18.0
rank_change 0.0
total_points 1606.0
result 1
rank_dif 11.0
points_by_rank 0.166667
team_points 3
country_classification Classe S-
Name: 155, dtype: object
date 2018-10-11 00:00:00
team Sweden
score 0.0
suf_score 0.0
rank 15.0
rank_suf 46.0
rank_change 2.0
total_points 1550.0
result 2
rank_dif 31.0
points_by_rank 0.021739
team_points 1
country_classification Classe A
Name: 156, dtype: object
date 2018-10-11 00:00:00
team Scotland
score 1.0
suf_score 2.0
rank 39.0
rank_suf 94.0
rank_change -1.0
total_points 1448.0
result 0
rank_dif 55.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 157, dtype: object
date 2018-10-11 00:00:00
team Serbia
score 2.0
suf_score 0.0
rank 35.0
rank_suf 41.0
rank_change -1.0
total_points 1463.0
result 1
rank_dif 6.0
points_by_rank 0.073171
team_points 3
country_classification Classe A
Name: 158, dtype: object
date 2018-10-11 00:00:00
team Romania
score 2.0
suf_score 1.0
rank 27.0
rank_suf 126.0
rank_change -1.0
total_points 1489.0
result 1
rank_dif 99.0
points_by_rank 0.02381
team_points 3
country_classification Classe A
Name: 159, dtype: object
date 2018-10-11 00:00:00
team Azerbaijan
score 3.0
suf_score 0.0
rank 108.0
rank_suf 92.0
rank_change 3.0
total_points 1202.0
result 1
rank_dif -16.0
points_by_rank 0.032609
team_points 3
country_classification Classe B
Name: 160, dtype: object
date 2018-10-11 00:00:00
team Malta
score 1.0
suf_score 3.0
rank 183.0
rank_suf 138.0
rank_change -1.0
total_points 928.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 161, dtype: object
date 2018-10-11 00:00:00
team Iraq
score 0.0
suf_score 4.0
rank 89.0
rank_suf 11.0
rank_change 0.0
total_points 1272.0
result 0
rank_dif -78.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 162, dtype: object
date 2018-10-11 00:00:00
team Syria
score 1.0
suf_score 0.0
rank 74.0
rank_suf 112.0
rank_change 1.0
total_points 1322.0
result 1
rank_dif 38.0
points_by_rank 0.026786
team_points 3
country_classification Classe B
Name: 163, dtype: object
date 2018-10-11 00:00:00
team Iceland
score 2.0
suf_score 2.0
rank 36.0
rank_suf 1.0
rank_change 4.0
total_points 1461.0
result 2
rank_dif -35.0
points_by_rank 1.0
team_points 1
country_classification Classe A
Name: 164, dtype: object
date 2018-10-11 00:00:00
team United Arab Emirates
score 1.0
suf_score 1.0
rank 77.0
rank_suf 62.0
rank_change 0.0
total_points 1308.0
result 2
rank_dif -15.0
points_by_rank 0.016129
team_points 1
country_classification Classe B
Name: 165, dtype: object
date 2018-10-11 00:00:00
team Thailand
score 1.0
suf_score 0.0
rank 122.0
rank_suf 143.0
rank_change 0.0
total_points 1144.0
result 1
rank_dif 21.0
points_by_rank 0.020979
team_points 3
country_classification Classe C
Name: 166, dtype: object
date 2018-10-11 00:00:00
team Lebanon
score 0.0
suf_score 1.0
rank 77.0
rank_suf 159.0
rank_change -2.0
total_points 1308.0
result 0
rank_dif 82.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 167, dtype: object
date 2018-10-11 00:00:00
team Costa Rica
score 2.0
suf_score 3.0
rank 37.0
rank_suf 15.0
rank_change 5.0
total_points 1460.0
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 168, dtype: object
date 2018-10-11 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 0.0
rank 34.0
rank_suf 38.0
rank_change -5.0
total_points 1468.0
result 2
rank_dif 4.0
points_by_rank 0.026316
team_points 1
country_classification Classe A
Name: 169, dtype: object
date 2018-10-11 00:00:00
team Colombia
score 4.0
suf_score 2.0
rank 14.0
rank_suf 22.0
rank_change 0.0
total_points 1567.0
result 1
rank_dif 8.0
points_by_rank 0.136364
team_points 3
country_classification Classe A
Name: 170, dtype: object
date 2018-10-11 00:00:00
team Spain
score 4.0
suf_score 1.0
rank 9.0
rank_suf 19.0
rank_change 0.0
total_points 1597.0
result 1
rank_dif 10.0
points_by_rank 0.157895
team_points 3
country_classification Classe A
Name: 171, dtype: object
date 2018-10-11 00:00:00
team Liberia
score 1.0
suf_score 3.0
rank 155.0
rank_suf 84.0
rank_change -3.0
total_points 1023.0
result 0
rank_dif -71.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 172, dtype: object
date 2018-10-12 00:00:00
team Switzerland
score 1.0
suf_score 2.0
rank 8.0
rank_suf 1.0
rank_change 0.0
total_points 1598.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 173, dtype: object
date 2018-10-12 00:00:00
team England
score 0.0
suf_score 0.0
rank 6.0
rank_suf 4.0
rank_change 0.0
total_points 1612.0
result 2
rank_dif -2.0
points_by_rank 0.25
team_points 1
country_classification Classe S-
Name: 174, dtype: object
date 2018-10-12 00:00:00
team Northern Ireland
score 0.0
suf_score 1.0
rank 28.0
rank_suf 24.0
rank_change 1.0
total_points 1487.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 175, dtype: object
date 2018-10-12 00:00:00
team Finland
score 1.0
suf_score 0.0
rank 58.0
rank_suf 98.0
rank_change -4.0
total_points 1378.0
result 1
rank_dif 40.0
points_by_rank 0.030612
team_points 3
country_classification Classe B
Name: 176, dtype: object
date 2018-10-12 00:00:00
team Hungary
score 0.0
suf_score 1.0
rank 49.0
rank_suf 42.0
rank_change -2.0
total_points 1409.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 177, dtype: object
date 2018-10-12 00:00:00
team Luxembourg
score 0.0
suf_score 1.0
rank 82.0
rank_suf 80.0
rank_change -3.0
total_points 1292.0
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 178, dtype: object
date 2018-10-12 00:00:00
team San Marino
score 0.0
suf_score 2.0
rank 204.0
rank_suf 173.0
rank_change 1.0
total_points 871.0
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 179, dtype: object
date 2018-10-12 00:00:00
team Timor-Leste
score 2.0
suf_score 2.0
rank 190.0
rank_suf 169.0
rank_change 0.0
total_points 909.0
result 2
rank_dif -21.0
points_by_rank 0.005917
team_points 1
country_classification Classe D
Name: 180, dtype: object
date 2018-10-12 00:00:00
team Panama
score 0.0
suf_score 3.0
rank 70.0
rank_suf 54.0
rank_change 1.0
total_points 1339.0
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 181, dtype: object
date 2018-10-12 00:00:00
team Uruguay
score 1.0
suf_score 2.0
rank 5.0
rank_suf 55.0
rank_change 0.0
total_points 1632.0
result 0
rank_dif 50.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 182, dtype: object
date 2018-10-12 00:00:00
team Chile
score 0.0
suf_score 3.0
rank 12.0
rank_suf 21.0
rank_change 0.0
total_points 1568.0
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 183, dtype: object
date 2018-10-12 00:00:00
team Ecuador
score 3.0
suf_score 4.0
rank 58.0
rank_suf 94.0
rank_change -2.0
total_points 1378.0
result 0
rank_dif 36.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 184, dtype: object
date 2018-10-12 00:00:00
team Brazil
score 2.0
suf_score 0.0
rank 3.0
rank_suf 71.0
rank_change 0.0
total_points 1663.0
result 1
rank_dif 68.0
points_by_rank 0.042254
team_points 3
country_classification Classe S-
Name: 185, dtype: object
date 2018-10-12 00:00:00
team Mongolia
score 0.0
suf_score 2.0
rank 186.0
rank_suf 166.0
rank_change 0.0
total_points 922.0
result 0
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 186, dtype: object
date 2018-10-12 00:00:00
team Malaysia
score 4.0
suf_score 1.0
rank 171.0
rank_suf 199.0
rank_change 0.0
total_points 972.0
result 1
rank_dif 28.0
points_by_rank 0.015075
team_points 3
country_classification Classe D
Name: 187, dtype: object
date 2018-10-12 00:00:00
team Malawi
score 0.0
suf_score 1.0
rank 125.0
rank_suf 50.0
rank_change 2.0
total_points 1129.0
result 0
rank_dif -75.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 188, dtype: object
date 2018-10-12 00:00:00
team South Sudan
score 0.0
suf_score 3.0
rank 158.0
rank_suf 87.0
rank_change 2.0
total_points 1019.0
result 0
rank_dif -71.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 189, dtype: object
date 2018-10-12 00:00:00
team Gambia
score 1.0
suf_score 1.0
rank 171.0
rank_suf 123.0
rank_change -1.0
total_points 972.0
result 2
rank_dif -48.0
points_by_rank 0.00813
team_points 1
country_classification Classe D
Name: 190, dtype: object
date 2018-10-12 00:00:00
team Mauritania
score 1.0
suf_score 4.0
rank 103.0
rank_suf 135.0
rank_change -3.0
total_points 1217.0
result 0
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 191, dtype: object
date 2018-10-12 00:00:00
team Antigua and Barbuda
score 6.0
suf_score 0.0
rank 127.0
rank_suf 210.0
rank_change 1.0
total_points 1122.0
result 1
rank_dif 83.0
points_by_rank 0.014286
team_points 3
country_classification Classe C
Name: 192, dtype: object
date 2018-10-12 00:00:00
team Cayman Islands
score 0.0
suf_score 3.0
rank 202.0
rank_suf 152.0
rank_change 0.0
total_points 878.0
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 193, dtype: object
date 2018-10-12 00:00:00
team Cuba
score 2.0
suf_score 0.0
rank 179.0
rank_suf 170.0
rank_change -2.0
total_points 946.0
result 1
rank_dif -9.0
points_by_rank 0.017647
team_points 3
country_classification Classe D
Name: 194, dtype: object
date 2018-10-13 00:00:00
team Germany
score 0.0
suf_score 3.0
rank 12.0
rank_suf 17.0
rank_change -3.0
total_points 1568.0
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 195, dtype: object
date 2018-10-13 00:00:00
team Czech Republic
score 2.0
suf_score 1.0
rank 47.0
rank_suf 26.0
rank_change 3.0
total_points 1418.0
result 1
rank_dif -21.0
points_by_rank 0.115385
team_points 3
country_classification Classe A
Name: 196, dtype: object
date 2018-10-13 00:00:00
team Denmark
score 0.0
suf_score 0.0
rank 10.0
rank_suf 30.0
rank_change 1.0
total_points 1581.0
result 2
rank_dif 20.0
points_by_rank 0.033333
team_points 1
country_classification Classe A
Name: 197, dtype: object
date 2018-10-13 00:00:00
team Slovenia
score 0.0
suf_score 1.0
rank 61.0
rank_suf 52.0
rank_change 6.0
total_points 1376.0
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 198, dtype: object
date 2018-10-13 00:00:00
team Cyprus
score 1.0
suf_score 2.0
rank 86.0
rank_suf 44.0
rank_change -1.0
total_points 1283.0
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 199, dtype: object
date 2018-10-13 00:00:00
team Kazakhstan
score 1.0
suf_score 1.0
rank 118.0
rank_suf 131.0
rank_change 2.0
total_points 1160.0
result 2
rank_dif 13.0
points_by_rank 0.007634
team_points 1
country_classification Classe C
Name: 200, dtype: object
date 2018-10-13 00:00:00
team Andorra
score 0.0
suf_score 3.0
rank 128.0
rank_suf 93.0
rank_change -2.0
total_points 1121.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 201, dtype: object
date 2018-10-13 00:00:00
team Gibraltar
score 1.0
suf_score 0.0
rank 198.0
rank_suf 100.0
rank_change 3.0
total_points 891.0
result 1
rank_dif -98.0
points_by_rank 0.03
team_points 3
country_classification Classe D
Name: 202, dtype: object
date 2018-10-13 00:00:00
team India
score 0.0
suf_score 0.0
rank 97.0
rank_suf 76.0
rank_change 1.0
total_points 1244.0
result 2
rank_dif -21.0
points_by_rank 0.013158
team_points 1
country_classification Classe B
Name: 203, dtype: object
date 2018-10-13 00:00:00
team Bolivia
score 3.0
suf_score 0.0
rank 58.0
rank_suf 138.0
rank_change -1.0
total_points 1378.0
result 1
rank_dif 80.0
points_by_rank 0.021739
team_points 3
country_classification Classe B
Name: 204, dtype: object
date 2018-10-13 00:00:00
team Philippines
score 1.0
suf_score 1.0
rank 114.0
rank_suf 85.0
rank_change -1.0
total_points 1172.0
result 2
rank_dif -29.0
points_by_rank 0.011765
team_points 1
country_classification Classe C
Name: 205, dtype: object
date 2018-10-13 00:00:00
team Madagascar
score 1.0
suf_score 0.0
rank 106.0
rank_suf 141.0
rank_change -1.0
total_points 1205.0
result 1
rank_dif 35.0
points_by_rank 0.021277
team_points 3
country_classification Classe B
Name: 206, dtype: object
date 2018-10-13 00:00:00
team Libya
score 0.0
suf_score 4.0
rank 99.0
rank_suf 48.0
rank_change -2.0
total_points 1226.0
result 0
rank_dif -51.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 207, dtype: object
date 2018-10-13 00:00:00
team Guyana
score 8.0
suf_score 0.0
rank 182.0
rank_suf 210.0
rank_change 0.0
total_points 937.0
result 1
rank_dif 28.0
points_by_rank 0.014286
team_points 3
country_classification Classe D
Name: 208, dtype: object
date 2018-10-13 00:00:00
team British Virgin Islands
score 0.0
suf_score 5.0
rank 203.0
rank_suf 153.0
rank_change -1.0
total_points 872.0
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 209, dtype: object
date 2018-10-13 00:00:00
team Barbados
score 0.0
suf_score 3.0
rank 162.0
rank_suf 72.0
rank_change 2.0
total_points 1003.0
result 0
rank_dif -90.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 210, dtype: object
date 2018-10-14 00:00:00
team Italy
score 1.0
suf_score 0.0
rank 20.0
rank_suf 18.0
rank_change -1.0
total_points 1526.0
result 1
rank_dif -2.0
points_by_rank 0.166667
team_points 3
country_classification Classe A
Name: 211, dtype: object
date 2018-10-14 00:00:00
team Turkey
score 0.0
suf_score 2.0
rank 38.0
rank_suf 46.0
rank_change 0.0
total_points 1456.0
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 212, dtype: object
date 2018-10-14 00:00:00
team Albania
score 0.0
suf_score 2.0
rank 57.0
rank_suf 94.0
rank_change -1.0
total_points 1383.0
result 0
rank_dif 37.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 213, dtype: object
date 2018-10-14 00:00:00
team Serbia
score 0.0
suf_score 0.0
rank 35.0
rank_suf 27.0
rank_change -1.0
total_points 1463.0
result 2
rank_dif -8.0
points_by_rank 0.037037
team_points 1
country_classification Classe A
Name: 214, dtype: object
date 2018-10-14 00:00:00
team Montenegro
score 4.0
suf_score 1.0
rank 41.0
rank_suf 126.0
rank_change 0.0
total_points 1444.0
result 1
rank_dif 85.0
points_by_rank 0.02381
team_points 3
country_classification Classe A
Name: 215, dtype: object
date 2018-10-14 00:00:00
team Kosovo
score 1.0
suf_score 1.0
rank 138.0
rank_suf 92.0
rank_change -3.0
total_points 1092.0
result 2
rank_dif -46.0
points_by_rank 0.01087
team_points 1
country_classification Classe C
Name: 216, dtype: object
date 2018-10-14 00:00:00
team Malta
score 1.0
suf_score 1.0
rank 183.0
rank_suf 108.0
rank_change -1.0
total_points 928.0
result 2
rank_dif -75.0
points_by_rank 0.009259
team_points 1
country_classification Classe D
Name: 217, dtype: object
date 2018-10-14 00:00:00
team Portugal
score 3.0
suf_score 1.0
rank 7.0
rank_suf 39.0
rank_change 0.0
total_points 1606.0
result 1
rank_dif 32.0
points_by_rank 0.076923
team_points 3
country_classification Classe S-
Name: 218, dtype: object
date 2018-10-14 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 1.0
rank 90.0
rank_suf 122.0
rank_change -1.0
total_points 1269.0
result 0
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 219, dtype: object
date 2018-10-14 00:00:00
team Zambia
score 1.0
suf_score 2.0
rank 75.0
rank_suf 121.0
rank_change -1.0
total_points 1316.0
result 0
rank_dif 46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 220, dtype: object
date 2018-10-14 00:00:00
team Belize
score 0.0
suf_score 1.0
rank 160.0
rank_suf 205.0
rank_change -3.0
total_points 1004.0
result 0
rank_dif 45.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 221, dtype: object
date 2018-10-14 00:00:00
team Anguilla
score 0.0
suf_score 6.0
rank 206.0
rank_suf 128.0
rank_change 0.0
total_points 868.0
result 0
rank_dif -78.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 222, dtype: object
date 2018-10-15 00:00:00
team Switzerland
score 2.0
suf_score 1.0
rank 8.0
rank_suf 36.0
rank_change 0.0
total_points 1598.0
result 1
rank_dif 28.0
points_by_rank 0.083333
team_points 3
country_classification Classe A
Name: 223, dtype: object
date 2018-10-15 00:00:00
team England
score 3.0
suf_score 2.0
rank 6.0
rank_suf 9.0
rank_change 0.0
total_points 1612.0
result 1
rank_dif 3.0
points_by_rank 0.333333
team_points 3
country_classification Classe S-
Name: 224, dtype: object
date 2018-10-15 00:00:00
team Northern Ireland
score 0.0
suf_score 2.0
rank 28.0
rank_suf 34.0
rank_change 1.0
total_points 1487.0
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 225, dtype: object
date 2018-10-15 00:00:00
team Hungary
score 3.0
suf_score 3.0
rank 49.0
rank_suf 98.0
rank_change -2.0
total_points 1409.0
result 2
rank_dif 49.0
points_by_rank 0.010204
team_points 1
country_classification Classe A
Name: 226, dtype: object
date 2018-10-15 00:00:00
team Greece
score 0.0
suf_score 2.0
rank 42.0
rank_suf 58.0
rank_change 0.0
total_points 1433.0
result 0
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 227, dtype: object
date 2018-10-15 00:00:00
team San Marino
score 0.0
suf_score 3.0
rank 204.0
rank_suf 82.0
rank_change 1.0
total_points 871.0
result 0
rank_dif -122.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 228, dtype: object
date 2018-10-15 00:00:00
team Moldova
score 0.0
suf_score 0.0
rank 173.0
rank_suf 80.0
rank_change -2.0
total_points 958.0
result 2
rank_dif -93.0
points_by_rank 0.0125
team_points 1
country_classification Classe D
Name: 229, dtype: object
date 2018-10-15 00:00:00
team Jordan
score 1.0
suf_score 2.0
rank 110.0
rank_suf 4.0
rank_change 0.0
total_points 1189.0
result 0
rank_dif -106.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 230, dtype: object
date 2018-10-15 00:00:00
team Australia
score 4.0
suf_score 0.0
rank 43.0
rank_suf 159.0
rank_change 0.0
total_points 1431.0
result 1
rank_dif 116.0
points_by_rank 0.018868
team_points 3
country_classification Classe A
Name: 231, dtype: object
date 2018-10-15 00:00:00
team Iraq
score 1.0
suf_score 1.0
rank 89.0
rank_suf 71.0
rank_change 0.0
total_points 1272.0
result 2
rank_dif -18.0
points_by_rank 0.014085
team_points 1
country_classification Classe B
Name: 232, dtype: object
date 2018-10-16 00:00:00
team Germany
score 1.0
suf_score 2.0
rank 12.0
rank_suf 1.0
rank_change -3.0
total_points 1568.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 233, dtype: object
date 2018-10-16 00:00:00
team Czech Republic
score 0.0
suf_score 1.0
rank 47.0
rank_suf 29.0
rank_change 3.0
total_points 1418.0
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 234, dtype: object
date 2018-10-16 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 19.0
rank_suf 30.0
rank_change 0.0
total_points 1536.0
result 1
rank_dif 11.0
points_by_rank 0.1
team_points 3
country_classification Classe A
Name: 235, dtype: object
date 2018-10-16 00:00:00
team Bulgaria
score 0.0
suf_score 1.0
rank 44.0
rank_suf 52.0
rank_change -3.0
total_points 1430.0
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 236, dtype: object
date 2018-10-16 00:00:00
team Cyprus
score 1.0
suf_score 1.0
rank 86.0
rank_suf 61.0
rank_change -1.0
total_points 1283.0
result 2
rank_dif -25.0
points_by_rank 0.016393
team_points 1
country_classification Classe B
Name: 237, dtype: object
date 2018-10-16 00:00:00
team Andorra
score 0.0
suf_score 4.0
rank 128.0
rank_suf 118.0
rank_change -2.0
total_points 1121.0
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 238, dtype: object
date 2018-10-16 00:00:00
team Georgia
score 3.0
suf_score 0.0
rank 93.0
rank_suf 131.0
rank_change -3.0
total_points 1254.0
result 1
rank_dif 38.0
points_by_rank 0.022901
team_points 3
country_classification Classe B
Name: 239, dtype: object
date 2018-10-16 00:00:00
team Liechtenstein
score 1.0
suf_score 2.0
rank 178.0
rank_suf 198.0
rank_change -2.0
total_points 947.0
result 0
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 240, dtype: object
date 2018-10-16 00:00:00
team Myanmar
score 1.0
suf_score 4.0
rank 138.0
rank_suf 112.0
rank_change 0.0
total_points 1092.0
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 241, dtype: object
date 2018-10-16 00:00:00
team Netherlands
score 1.0
suf_score 1.0
rank 17.0
rank_suf 1.0
rank_change 0.0
total_points 1540.0
result 2
rank_dif -16.0
points_by_rank 1.0
team_points 1
country_classification Classe A
Name: 242, dtype: object
date 2018-10-16 00:00:00
team Singapore
score 2.0
suf_score 1.0
rank 166.0
rank_suf 169.0
rank_change -3.0
total_points 982.0
result 1
rank_dif 3.0
points_by_rank 0.017751
team_points 3
country_classification Classe D
Name: 243, dtype: object
date 2018-10-16 00:00:00
team Syria
score 0.0
suf_score 2.0
rank 74.0
rank_suf 76.0
rank_change 1.0
total_points 1322.0
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 244, dtype: object
date 2018-10-16 00:00:00
team Costa Rica
score 1.0
suf_score 3.0
rank 37.0
rank_suf 14.0
rank_change 5.0
total_points 1460.0
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 245, dtype: object
date 2018-10-16 00:00:00
team Austria
score 0.0
suf_score 2.0
rank 24.0
rank_suf 10.0
rank_change 1.0
total_points 1499.0
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 246, dtype: object
date 2018-10-16 00:00:00
team Hong Kong
score 1.0
suf_score 1.0
rank 143.0
rank_suf 164.0
rank_change 1.0
total_points 1076.0
result 2
rank_dif 21.0
points_by_rank 0.006098
team_points 1
country_classification Classe C
Name: 247, dtype: object
date 2018-10-16 00:00:00
team Bolivia
score 1.0
suf_score 2.0
rank 58.0
rank_suf 33.0
rank_change -1.0
total_points 1378.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 248, dtype: object
date 2018-10-16 00:00:00
team Uruguay
score 3.0
suf_score 4.0
rank 5.0
rank_suf 54.0
rank_change 0.0
total_points 1632.0
result 0
rank_dif 49.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 249, dtype: object
date 2018-10-16 00:00:00
team Panama
score 2.0
suf_score 2.0
rank 70.0
rank_suf 55.0
rank_change 1.0
total_points 1339.0
result 2
rank_dif -15.0
points_by_rank 0.018182
team_points 1
country_classification Classe B
Name: 250, dtype: object
date 2018-10-16 00:00:00
team Mongolia
score 4.0
suf_score 1.0
rank 186.0
rank_suf 179.0
rank_change 0.0
total_points 922.0
result 1
rank_dif -7.0
points_by_rank 0.01676
team_points 3
country_classification Classe D
Name: 251, dtype: object
date 2018-10-16 00:00:00
team Chile
score 1.0
suf_score 0.0
rank 12.0
rank_suf 15.0
rank_change 0.0
total_points 1568.0
result 1
rank_dif 3.0
points_by_rank 0.2
team_points 3
country_classification Classe A
Name: 252, dtype: object
date 2018-10-16 00:00:00
team Ecuador
score 0.0
suf_score 0.0
rank 58.0
rank_suf 85.0
rank_change -2.0
total_points 1378.0
result 2
rank_dif 27.0
points_by_rank 0.011765
team_points 1
country_classification Classe B
Name: 253, dtype: object
date 2018-10-16 00:00:00
team Slovakia
score 1.0
suf_score 1.0
rank 26.0
rank_suf 15.0
rank_change 0.0
total_points 1491.0
result 2
rank_dif -11.0
points_by_rank 0.066667
team_points 1
country_classification Classe A
Name: 254, dtype: object
date 2018-10-16 00:00:00
team Venezuela
score 2.0
suf_score 0.0
rank 32.0
rank_suf 77.0
rank_change 1.0
total_points 1476.0
result 1
rank_dif 45.0
points_by_rank 0.038961
team_points 3
country_classification Classe A
Name: 255, dtype: object
date 2018-10-16 00:00:00
team Peru
score 1.0
suf_score 1.0
rank 21.0
rank_suf 22.0
rank_change 1.0
total_points 1525.0
result 2
rank_dif 1.0
points_by_rank 0.045455
team_points 1
country_classification Classe A
Name: 256, dtype: object
date 2018-10-16 00:00:00
team Qatar
score 0.0
suf_score 2.0
rank 94.0
rank_suf 96.0
rank_change -4.0
total_points 1247.0
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 257, dtype: object
date 2018-10-16 00:00:00
team Equatorial Guinea
score 0.0
suf_score 1.0
rank 141.0
rank_suf 106.0
rank_change -2.0
total_points 1086.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 258, dtype: object
date 2018-10-16 00:00:00
team Cameroon
score 0.0
suf_score 0.0
rank 50.0
rank_suf 125.0
rank_change 3.0
total_points 1408.0
result 2
rank_dif 75.0
points_by_rank 0.008
team_points 1
country_classification Classe A
Name: 259, dtype: object
date 2018-10-16 00:00:00
team Mali
score 1.0
suf_score 1.0
rank 63.0
rank_suf 148.0
rank_change 0.0
total_points 1365.0
result 2
rank_dif 85.0
points_by_rank 0.006757
team_points 1
country_classification Classe B
Name: 260, dtype: object
date 2018-10-16 00:00:00
team Algeria
score 0.0
suf_score 1.0
rank 69.0
rank_suf 88.0
rank_change 3.0
total_points 1343.0
result 0
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 261, dtype: object
date 2018-10-16 00:00:00
team South Africa
score 0.0
suf_score 0.0
rank 73.0
rank_suf 189.0
rank_change -1.0
total_points 1325.0
result 2
rank_dif 116.0
points_by_rank 0.005291
team_points 1
country_classification Classe B
Name: 262, dtype: object
date 2018-10-16 00:00:00
team Congo
score 1.0
suf_score 2.0
rank 84.0
rank_suf 155.0
rank_change 1.0
total_points 1289.0
result 0
rank_dif 71.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 263, dtype: object
date 2018-10-16 00:00:00
team Angola
score 0.0
suf_score 1.0
rank 135.0
rank_suf 103.0
rank_change -2.0
total_points 1108.0
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 264, dtype: object
date 2018-10-16 00:00:00
team Brazil
score 1.0
suf_score 0.0
rank 3.0
rank_suf 11.0
rank_change 0.0
total_points 1663.0
result 1
rank_dif 8.0
points_by_rank 0.272727
team_points 3
country_classification Classe S-
Name: 265, dtype: object
date 2018-10-16 00:00:00
team Dominica
score 0.0
suf_score 5.0
rank 177.0
rank_suf 79.0
rank_change 0.0
total_points 953.0
result 0
rank_dif -98.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 266, dtype: object
date 2018-11-03 00:00:00
team Maldives
score 0.0
suf_score 3.0
rank 151.0
rank_suf 169.0
rank_change 0.0
total_points 1049.0
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 267, dtype: object
date 2018-11-08 00:00:00
team Malaysia
score 1.0
suf_score 0.0
rank 169.0
rank_suf 170.0
rank_change -2.0
total_points 974.0
result 1
rank_dif 1.0
points_by_rank 0.017647
team_points 3
country_classification Classe D
Name: 268, dtype: object
date 2018-11-08 00:00:00
team Vietnam
score 3.0
suf_score 0.0
rank 102.0
rank_suf 181.0
rank_change 0.0
total_points 1220.0
result 1
rank_dif 79.0
points_by_rank 0.016575
team_points 3
country_classification Classe B
Name: 269, dtype: object
date 2018-11-09 00:00:00
team Indonesia
score 0.0
suf_score 1.0
rank 160.0
rank_suf 165.0
rank_change -4.0
total_points 1004.0
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 270, dtype: object
date 2018-11-09 00:00:00
team Timor-Leste
score 0.0
suf_score 7.0
rank 191.0
rank_suf 121.0
rank_change 1.0
total_points 910.0
result 0
rank_dif -70.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 271, dtype: object
date 2018-11-12 00:00:00
team Cambodia
score 1.0
suf_score 4.0
rank 170.0
rank_suf 141.0
rank_change 1.0
total_points 973.0
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 272, dtype: object
date 2018-11-12 00:00:00
team Laos
score 1.0
suf_score 3.0
rank 181.0
rank_suf 169.0
rank_change 2.0
total_points 937.0
result 0
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 273, dtype: object
date 2018-11-13 00:00:00
team Timor-Leste
score 1.0
suf_score 3.0
rank 191.0
rank_suf 160.0
rank_change 1.0
total_points 910.0
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 274, dtype: object
date 2018-11-13 00:00:00
team Singapore
score 0.0
suf_score 1.0
rank 165.0
rank_suf 116.0
rank_change -1.0
total_points 991.0
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 275, dtype: object
date 2018-11-14 00:00:00
team Qatar
score 1.0
suf_score 0.0
rank 96.0
rank_suf 8.0
rank_change 2.0
total_points 1248.0
result 1
rank_dif -88.0
points_by_rank 0.375
team_points 3
country_classification Classe B
Name: 276, dtype: object
date 2018-11-14 00:00:00
team New Caledonia
score 1.0
suf_score 0.0
rank 155.0
rank_suf 162.0
rank_change 1.0
total_points 1032.0
result 1
rank_dif 7.0
points_by_rank 0.018519
team_points 3
country_classification Classe C
Name: 277, dtype: object
date 2018-11-15 00:00:00
team Iceland
score 0.0
suf_score 2.0
rank 36.0
rank_suf 1.0
rank_change 0.0
total_points 1458.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 278, dtype: object
date 2018-11-15 00:00:00
team Spain
score 2.0
suf_score 3.0
rank 9.0
rank_suf 4.0
rank_change 0.0
total_points 1594.0
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 279, dtype: object
date 2018-11-15 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 0.0
rank 32.0
rank_suf 24.0
rank_change -2.0
total_points 1476.0
result 2
rank_dif -8.0
points_by_rank 0.041667
team_points 1
country_classification Classe A
Name: 280, dtype: object
date 2018-11-15 00:00:00
team Estonia
score 0.0
suf_score 2.0
rank 98.0
rank_suf 55.0
rank_change 0.0
total_points 1237.0
result 0
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 281, dtype: object
date 2018-11-15 00:00:00
team Finland
score 0.0
suf_score 1.0
rank 56.0
rank_suf 42.0
rank_change -2.0
total_points 1392.0
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 282, dtype: object
date 2018-11-15 00:00:00
team Georgia
score 1.0
suf_score 1.0
rank 92.0
rank_suf 133.0
rank_change -1.0
total_points 1265.0
result 2
rank_dif 41.0
points_by_rank 0.007519
team_points 1
country_classification Classe B
Name: 283, dtype: object
date 2018-11-15 00:00:00
team Latvia
score 1.0
suf_score 1.0
rank 132.0
rank_suf 117.0
rank_change 1.0
total_points 1111.0
result 2
rank_dif -15.0
points_by_rank 0.008547
team_points 1
country_classification Classe C
Name: 284, dtype: object
date 2018-11-15 00:00:00
team Belarus
score 2.0
suf_score 0.0
rank 78.0
rank_suf 84.0
rank_change -2.0
total_points 1307.0
result 1
rank_dif 6.0
points_by_rank 0.035714
team_points 3
country_classification Classe B
Name: 285, dtype: object
date 2018-11-15 00:00:00
team Moldova
score 1.0
suf_score 0.0
rank 171.0
rank_suf 209.0
rank_change -2.0
total_points 969.0
result 1
rank_dif 38.0
points_by_rank 0.014354
team_points 3
country_classification Classe D
Name: 286, dtype: object
date 2018-11-15 00:00:00
team United States
score 0.0
suf_score 3.0
rank 23.0
rank_suf 5.0
rank_change 1.0
total_points 1506.0
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 287, dtype: object
date 2018-11-15 00:00:00
team Russia
score 0.0
suf_score 3.0
rank 41.0
rank_suf 14.0
rank_change -5.0
total_points 1433.0
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 288, dtype: object
date 2018-11-15 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 1.0
rank 93.0
rank_suf 30.0
rank_change 3.0
total_points 1263.0
result 0
rank_dif -63.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 289, dtype: object
date 2018-11-15 00:00:00
team Guatemala
score 0.0
suf_score 7.0
rank 147.0
rank_suf 91.0
rank_change 0.0
total_points 1064.0
result 0
rank_dif -56.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 290, dtype: object
date 2018-11-15 00:00:00
team Ecuador
score 2.0
suf_score 0.0
rank 61.0
rank_suf 20.0
rank_change 3.0
total_points 1371.0
result 1
rank_dif -41.0
points_by_rank 0.15
team_points 3
country_classification Classe B
Name: 291, dtype: object
date 2018-11-15 00:00:00
team Czech Republic
score 1.0
suf_score 0.0
rank 48.0
rank_suf 21.0
rank_change 1.0
total_points 1420.0
result 1
rank_dif -27.0
points_by_rank 0.142857
team_points 3
country_classification Classe A
Name: 292, dtype: object
date 2018-11-15 00:00:00
team Northern Ireland
score 0.0
suf_score 0.0
rank 34.0
rank_suf 33.0
rank_change 6.0
total_points 1472.0
result 2
rank_dif -1.0
points_by_rank 0.030303
team_points 1
country_classification Classe A
Name: 293, dtype: object
date 2018-11-15 00:00:00
team Lebanon
score 0.0
suf_score 0.0
rank 82.0
rank_suf 94.0
rank_change 5.0
total_points 1300.0
result 2
rank_dif 12.0
points_by_rank 0.010638
team_points 1
country_classification Classe B
Name: 294, dtype: object
date 2018-11-16 00:00:00
team France
score 0.0
suf_score 2.0
rank 2.0
rank_suf 15.0
rank_change 1.0
total_points 1732.0
result 0
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 295, dtype: object
date 2018-11-16 00:00:00
team Ukraine
score 1.0
suf_score 4.0
rank 27.0
rank_suf 28.0
rank_change -2.0
total_points 1490.0
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 296, dtype: object
date 2018-11-16 00:00:00
team Denmark
score 2.0
suf_score 1.0
rank 10.0
rank_suf 18.0
rank_change 0.0
total_points 1584.0
result 1
rank_dif 8.0
points_by_rank 0.166667
team_points 3
country_classification Classe A
Name: 297, dtype: object
date 2018-11-16 00:00:00
team Norway
score 1.0
suf_score 1.0
rank 48.0
rank_suf 62.0
rank_change -4.0
total_points 1420.0
result 2
rank_dif 14.0
points_by_rank 0.016129
team_points 1
country_classification Classe A
Name: 298, dtype: object
date 2018-11-16 00:00:00
team Bulgaria
score 1.0
suf_score 1.0
rank 45.0
rank_suf 86.0
rank_change 1.0
total_points 1428.0
result 2
rank_dif 41.0
points_by_rank 0.011628
team_points 1
country_classification Classe A
Name: 299, dtype: object
date 2018-11-16 00:00:00
team Armenia
score 6.0
suf_score 2.0
rank 101.0
rank_suf 190.0
rank_change 1.0
total_points 1222.0
result 1
rank_dif 89.0
points_by_rank 0.015789
team_points 3
country_classification Classe B
Name: 300, dtype: object
date 2018-11-16 00:00:00
team Mexico
score 0.0
suf_score 2.0
rank 16.0
rank_suf 12.0
rank_change 1.0
total_points 1549.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 301, dtype: object
date 2018-11-16 00:00:00
team Uruguay
score 0.0
suf_score 1.0
rank 6.0
rank_suf 3.0
rank_change 1.0
total_points 1617.0
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 302, dtype: object
date 2018-11-16 00:00:00
team Costa Rica
score 3.0
suf_score 2.0
rank 37.0
rank_suf 13.0
rank_change 0.0
total_points 1452.0
result 1
rank_dif -24.0
points_by_rank 0.230769
team_points 3
country_classification Classe A
Name: 303, dtype: object
date 2018-11-16 00:00:00
team Panama
score 0.0
suf_score 1.0
rank 70.0
rank_suf 62.0
rank_change 0.0
total_points 1335.0
result 0
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 304, dtype: object
date 2018-11-16 00:00:00
team Venezuela
score 1.0
suf_score 1.0
rank 29.0
rank_suf 50.0
rank_change -3.0
total_points 1479.0
result 2
rank_dif 21.0
points_by_rank 0.02
team_points 1
country_classification Classe A
Name: 305, dtype: object
date 2018-11-16 00:00:00
team Syria
score 1.0
suf_score 1.0
rank 74.0
rank_suf 84.0
rank_change 0.0
total_points 1320.0
result 2
rank_dif 10.0
points_by_rank 0.011905
team_points 1
country_classification Classe B
Name: 306, dtype: object
date 2018-11-16 00:00:00
team Pakistan
score 1.0
suf_score 2.0
rank 199.0
rank_suf 99.0
rank_change 0.0
total_points 890.0
result 0
rank_dif -100.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 307, dtype: object
date 2018-11-16 00:00:00
team Yemen
score 0.0
suf_score 1.0
rank 131.0
rank_suf 72.0
rank_change -2.0
total_points 1112.0
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 308, dtype: object
date 2018-11-16 00:00:00
team Bolivia
score 0.0
suf_score 0.0
rank 59.0
rank_suf 81.0
rank_change 1.0
total_points 1376.0
result 2
rank_dif 22.0
points_by_rank 0.012346
team_points 1
country_classification Classe B
Name: 309, dtype: object
date 2018-11-16 00:00:00
team Myanmar
score 3.0
suf_score 1.0
rank 141.0
rank_suf 181.0
rank_change 3.0
total_points 1080.0
result 1
rank_dif 40.0
points_by_rank 0.016575
team_points 3
country_classification Classe C
Name: 310, dtype: object
date 2018-11-16 00:00:00
team Malaysia
score 0.0
suf_score 2.0
rank 169.0
rank_suf 102.0
rank_change -2.0
total_points 974.0
result 0
rank_dif -67.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 311, dtype: object
date 2018-11-16 00:00:00
team Cameroon
score 0.0
suf_score 2.0
rank 51.0
rank_suf 47.0
rank_change 1.0
total_points 1408.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 312, dtype: object
date 2018-11-16 00:00:00
team Burundi
score 5.0
suf_score 2.0
rank 142.0
rank_suf 159.0
rank_change -6.0
total_points 1074.0
result 1
rank_dif 17.0
points_by_rank 0.018868
team_points 3
country_classification Classe C
Name: 313, dtype: object
date 2018-11-16 00:00:00
team Tunisia
score 2.0
suf_score 3.0
rank 22.0
rank_suf 58.0
rank_change -1.0
total_points 1515.0
result 0
rank_dif 36.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 314, dtype: object
date 2018-11-16 00:00:00
team Hong Kong
score 5.0
suf_score 1.0
rank 144.0
rank_suf 186.0
rank_change 1.0
total_points 1071.0
result 1
rank_dif 42.0
points_by_rank 0.016129
team_points 3
country_classification Classe C
Name: 315, dtype: object
date 2018-11-16 00:00:00
team El Salvador
score 0.0
suf_score 1.0
rank 70.0
rank_suf 180.0
rank_change -2.0
total_points 1335.0
result 0
rank_dif 110.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 316, dtype: object
date 2018-11-16 00:00:00
team Montserrat
score 2.0
suf_score 0.0
rank 202.0
rank_suf 185.0
rank_change -3.0
total_points 879.0
result 1
rank_dif -17.0
points_by_rank 0.016216
team_points 3
country_classification Classe D
Name: 317, dtype: object
date 2018-11-16 00:00:00
team Puerto Rico
score 0.0
suf_score 1.0
rank 175.0
rank_suf 164.0
rank_change 0.0
total_points 955.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 318, dtype: object
date 2018-11-17 00:00:00
team Portugal
score 0.0
suf_score 0.0
rank 7.0
rank_suf 19.0
rank_change 0.0
total_points 1616.0
result 2
rank_dif 12.0
points_by_rank 0.052632
team_points 1
country_classification Classe S-
Name: 319, dtype: object
date 2018-11-17 00:00:00
team Sweden
score 1.0
suf_score 0.0
rank 17.0
rank_suf 38.0
rank_change 2.0
total_points 1548.0
result 1
rank_dif 21.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 320, dtype: object
date 2018-11-17 00:00:00
team Scotland
score 4.0
suf_score 0.0
rank 40.0
rank_suf 60.0
rank_change 1.0
total_points 1435.0
result 1
rank_dif 20.0
points_by_rank 0.05
team_points 3
country_classification Classe A
Name: 321, dtype: object
date 2018-11-17 00:00:00
team Montenegro
score 1.0
suf_score 2.0
rank 39.0
rank_suf 35.0
rank_change -2.0
total_points 1440.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 322, dtype: object
date 2018-11-17 00:00:00
team Lithuania
score 0.0
suf_score 3.0
rank 129.0
rank_suf 26.0
rank_change 3.0
total_points 1117.0
result 0
rank_dif -103.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 323, dtype: object
date 2018-11-17 00:00:00
team Kosovo
score 5.0
suf_score 0.0
rank 137.0
rank_suf 183.0
rank_change -1.0
total_points 1099.0
result 1
rank_dif 46.0
points_by_rank 0.016393
team_points 3
country_classification Classe C
Name: 324, dtype: object
date 2018-11-17 00:00:00
team Faroe Islands
score 0.0
suf_score 2.0
rank 95.0
rank_suf 107.0
rank_change 3.0
total_points 1251.0
result 0
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 325, dtype: object
date 2018-11-17 00:00:00
team South Korea
score 1.0
suf_score 1.0
rank 53.0
rank_suf 42.0
rank_change -2.0
total_points 1401.0
result 2
rank_dif -11.0
points_by_rank 0.02381
team_points 1
country_classification Classe A
Name: 326, dtype: object
date 2018-11-17 00:00:00
team India
score 1.0
suf_score 2.0
rank 97.0
rank_suf 112.0
rank_change 0.0
total_points 1245.0
result 0
rank_dif 15.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 327, dtype: object
date 2018-11-17 00:00:00
team New Caledonia
score 2.0
suf_score 2.0
rank 155.0
rank_suf 162.0
rank_change 1.0
total_points 1032.0
result 2
rank_dif 7.0
points_by_rank 0.006173
team_points 1
country_classification Classe C
Name: 328, dtype: object
date 2018-11-17 00:00:00
team Indonesia
score 2.0
suf_score 4.0
rank 160.0
rank_suf 121.0
rank_change -4.0
total_points 1004.0
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 329, dtype: object
date 2018-11-17 00:00:00
team Philippines
score 3.0
suf_score 2.0
rank 116.0
rank_suf 191.0
rank_change 2.0
total_points 1171.0
result 1
rank_dif 75.0
points_by_rank 0.015707
team_points 3
country_classification Classe C
Name: 330, dtype: object
date 2018-11-17 00:00:00
team Senegal
score 1.0
suf_score 0.0
rank 25.0
rank_suf 146.0
rank_change 0.0
total_points 1501.0
result 1
rank_dif 121.0
points_by_rank 0.020548
team_points 3
country_classification Classe A
Name: 331, dtype: object
date 2018-11-17 00:00:00
team Benin
score 1.0
suf_score 3.0
rank 87.0
rank_suf 173.0
rank_change -1.0
total_points 1277.0
result 0
rank_dif 86.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 332, dtype: object
date 2018-11-17 00:00:00
team Libya
score 8.0
suf_score 1.0
rank 105.0
rank_suf 188.0
rank_change 6.0
total_points 1210.0
result 1
rank_dif 83.0
points_by_rank 0.015957
team_points 3
country_classification Classe B
Name: 333, dtype: object
date 2018-11-17 00:00:00
team Guinea-Bissau
score 0.0
suf_score 0.0
rank 119.0
rank_suf 109.0
rank_change -2.0
total_points 1157.0
result 2
rank_dif -10.0
points_by_rank 0.009174
team_points 1
country_classification Classe C
Name: 334, dtype: object
date 2018-11-17 00:00:00
team Dominican Republic
score 0.0
suf_score 1.0
rank 152.0
rank_suf 177.0
rank_change 0.0
total_points 1045.0
result 0
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 335, dtype: object
date 2018-11-17 00:00:00
team Suriname
score 1.0
suf_score 2.0
rank 153.0
rank_suf 53.0
rank_change 0.0
total_points 1040.0
result 0
rank_dif -100.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 336, dtype: object
date 2018-11-17 00:00:00
team Haiti
score 2.0
suf_score 0.0
rank 103.0
rank_suf 127.0
rank_change -1.0
total_points 1216.0
result 1
rank_dif 24.0
points_by_rank 0.023622
team_points 3
country_classification Classe B
Name: 337, dtype: object
date 2018-11-18 00:00:00
team Belgium
score 2.0
suf_score 5.0
rank 1.0
rank_suf 8.0
rank_change 0.0
total_points 1733.0
result 0
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 338, dtype: object
date 2018-11-18 00:00:00
team Croatia
score 1.0
suf_score 2.0
rank 4.0
rank_suf 5.0
rank_change 0.0
total_points 1635.0
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 339, dtype: object
date 2018-11-18 00:00:00
team Austria
score 2.0
suf_score 1.0
rank 24.0
rank_suf 34.0
rank_change 0.0
total_points 1502.0
result 1
rank_dif 10.0
points_by_rank 0.088235
team_points 3
country_classification Classe A
Name: 340, dtype: object
date 2018-11-18 00:00:00
team Estonia
score 1.0
suf_score 0.0
rank 98.0
rank_suf 42.0
rank_change 0.0
total_points 1237.0
result 1
rank_dif -56.0
points_by_rank 0.071429
team_points 3
country_classification Classe B
Name: 341, dtype: object
date 2018-11-18 00:00:00
team Finland
score 0.0
suf_score 2.0
rank 56.0
rank_suf 55.0
rank_change -2.0
total_points 1392.0
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 342, dtype: object
date 2018-11-18 00:00:00
team Belarus
score 2.0
suf_score 0.0
rank 78.0
rank_suf 209.0
rank_change -2.0
total_points 1307.0
result 1
rank_dif 131.0
points_by_rank 0.014354
team_points 3
country_classification Classe B
Name: 343, dtype: object
date 2018-11-18 00:00:00
team Luxembourg
score 1.0
suf_score 1.0
rank 84.0
rank_suf 171.0
rank_change 2.0
total_points 1287.0
result 2
rank_dif 87.0
points_by_rank 0.005848
team_points 1
country_classification Classe B
Name: 344, dtype: object
date 2018-11-18 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 1.0
rank 32.0
rank_suf 9.0
rank_change -2.0
total_points 1476.0
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 345, dtype: object
date 2018-11-18 00:00:00
team Ghana
score 2.0
suf_score 0.0
rank 52.0
rank_suf 150.0
rank_change 1.0
total_points 1407.0
result 1
rank_dif 98.0
points_by_rank 0.02
team_points 3
country_classification Classe A
Name: 346, dtype: object
date 2018-11-18 00:00:00
team Burkina Faso
score 1.0
suf_score 2.0
rank 57.0
rank_suf 130.0
rank_change 1.0
total_points 1390.0
result 0
rank_dif 73.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 347, dtype: object
date 2018-11-18 00:00:00
team Anguilla
score 1.0
suf_score 1.0
rank 208.0
rank_suf 210.0
rank_change 2.0
total_points 864.0
result 2
rank_dif 2.0
points_by_rank 0.004762
team_points 1
country_classification Classe D
Name: 348, dtype: object
date 2018-11-19 00:00:00
team Netherlands
score 2.0
suf_score 2.0
rank 15.0
rank_suf 14.0
rank_change -2.0
total_points 1550.0
result 2
rank_dif -1.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 349, dtype: object
date 2018-11-19 00:00:00
team Slovakia
score 0.0
suf_score 1.0
rank 28.0
rank_suf 48.0
rank_change 2.0
total_points 1483.0
result 0
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 350, dtype: object
date 2018-11-19 00:00:00
team Republic of Ireland
score 0.0
suf_score 0.0
rank 33.0
rank_suf 10.0
rank_change 3.0
total_points 1473.0
result 2
rank_dif -23.0
points_by_rank 0.1
team_points 1
country_classification Classe A
Name: 351, dtype: object
date 2018-11-19 00:00:00
team Slovenia
score 1.0
suf_score 1.0
rank 62.0
rank_suf 45.0
rank_change 1.0
total_points 1367.0
result 2
rank_dif -17.0
points_by_rank 0.022222
team_points 1
country_classification Classe B
Name: 352, dtype: object
date 2018-11-19 00:00:00
team Norway
score 2.0
suf_score 0.0
rank 48.0
rank_suf 86.0
rank_change -4.0
total_points 1420.0
result 1
rank_dif 38.0
points_by_rank 0.034884
team_points 3
country_classification Classe A
Name: 353, dtype: object
date 2018-11-19 00:00:00
team Latvia
score 0.0
suf_score 0.0
rank 132.0
rank_suf 133.0
rank_change 1.0
total_points 1111.0
result 2
rank_dif 1.0
points_by_rank 0.007519
team_points 1
country_classification Classe C
Name: 354, dtype: object
date 2018-11-19 00:00:00
team Kazakhstan
score 1.0
suf_score 2.0
rank 117.0
rank_suf 92.0
rank_change -1.0
total_points 1166.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 355, dtype: object
date 2018-11-19 00:00:00
team Armenia
score 2.0
suf_score 2.0
rank 101.0
rank_suf 182.0
rank_change 1.0
total_points 1222.0
result 2
rank_dif 81.0
points_by_rank 0.005495
team_points 1
country_classification Classe B
Name: 356, dtype: object
date 2018-11-19 00:00:00
team Qatar
score 2.0
suf_score 2.0
rank 96.0
rank_suf 36.0
rank_change 2.0
total_points 1248.0
result 2
rank_dif -60.0
points_by_rank 0.027778
team_points 1
country_classification Classe B
Name: 357, dtype: object
date 2018-11-19 00:00:00
team Bahrain
score 1.0
suf_score 2.0
rank 113.0
rank_suf 84.0
rank_change 1.0
total_points 1182.0
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 358, dtype: object
date 2018-11-20 00:00:00
team Poland
score 1.0
suf_score 1.0
rank 21.0
rank_suf 7.0
rank_change 3.0
total_points 1523.0
result 2
rank_dif -14.0
points_by_rank 0.142857
team_points 1
country_classification Classe A
Name: 359, dtype: object
date 2018-11-20 00:00:00
team Russia
score 0.0
suf_score 2.0
rank 41.0
rank_suf 17.0
rank_change -5.0
total_points 1433.0
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 360, dtype: object
date 2018-11-20 00:00:00
team Israel
score 2.0
suf_score 3.0
rank 91.0
rank_suf 40.0
rank_change -3.0
total_points 1267.0
result 0
rank_dif -51.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 361, dtype: object
date 2018-11-20 00:00:00
team Romania
score 1.0
suf_score 0.0
rank 26.0
rank_suf 39.0
rank_change -1.0
total_points 1491.0
result 1
rank_dif 13.0
points_by_rank 0.076923
team_points 3
country_classification Classe A
Name: 362, dtype: object
date 2018-11-20 00:00:00
team Lithuania
score 1.0
suf_score 4.0
rank 129.0
rank_suf 35.0
rank_change 3.0
total_points 1117.0
result 0
rank_dif -94.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 363, dtype: object
date 2018-11-20 00:00:00
team Azerbaijan
score 0.0
suf_score 4.0
rank 107.0
rank_suf 137.0
rank_change -1.0
total_points 1207.0
result 0
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 364, dtype: object
date 2018-11-20 00:00:00
team Faroe Islands
score 1.0
suf_score 1.0
rank 95.0
rank_suf 183.0
rank_change 3.0
total_points 1251.0
result 2
rank_dif 88.0
points_by_rank 0.005464
team_points 1
country_classification Classe B
Name: 365, dtype: object
date 2018-11-20 00:00:00
team Wales
score 0.0
suf_score 1.0
rank 18.0
rank_suf 60.0
rank_change -1.0
total_points 1538.0
result 0
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 366, dtype: object
date 2018-11-20 00:00:00
team Mexico
score 0.0
suf_score 2.0
rank 16.0
rank_suf 12.0
rank_change 1.0
total_points 1549.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 367, dtype: object
date 2018-11-20 00:00:00
team Lebanon
score 0.0
suf_score 3.0
rank 82.0
rank_suf 42.0
rank_change 5.0
total_points 1300.0
result 0
rank_dif -40.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 368, dtype: object
date 2018-11-20 00:00:00
team Cameroon
score 0.0
suf_score 1.0
rank 51.0
rank_suf 3.0
rank_change 1.0
total_points 1408.0
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 369, dtype: object
date 2018-11-20 00:00:00
team Honduras
score 1.0
suf_score 4.0
rank 62.0
rank_suf 13.0
rank_change 0.0
total_points 1367.0
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 370, dtype: object
date 2018-11-20 00:00:00
team Palestine
score 1.0
suf_score 1.0
rank 99.0
rank_suf 75.0
rank_change -1.0
total_points 1233.0
result 2
rank_dif -24.0
points_by_rank 0.013333
team_points 1
country_classification Classe B
Name: 371, dtype: object
date 2018-11-20 00:00:00
team Haiti
score 0.0
suf_score 1.0
rank 103.0
rank_suf 70.0
rank_change -1.0
total_points 1216.0
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 372, dtype: object
date 2018-11-20 00:00:00
team Uruguay
score 0.0
suf_score 1.0
rank 6.0
rank_suf 2.0
rank_change 1.0
total_points 1617.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 373, dtype: object
date 2018-11-20 00:00:00
team Venezuela
score 1.0
suf_score 1.0
rank 29.0
rank_suf 30.0
rank_change -3.0
total_points 1479.0
result 2
rank_dif 1.0
points_by_rank 0.033333
team_points 1
country_classification Classe A
Name: 374, dtype: object
date 2018-11-20 00:00:00
team Bolivia
score 0.0
suf_score 0.0
rank 59.0
rank_suf 89.0
rank_change 1.0
total_points 1376.0
result 2
rank_dif 30.0
points_by_rank 0.011236
team_points 1
country_classification Classe B
Name: 375, dtype: object
date 2018-11-20 00:00:00
team United States
score 0.0
suf_score 1.0
rank 23.0
rank_suf 19.0
rank_change 1.0
total_points 1506.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 376, dtype: object
date 2018-11-20 00:00:00
team Saudi Arabia
score 1.0
suf_score 1.0
rank 72.0
rank_suf 112.0
rank_change 1.0
total_points 1334.0
result 2
rank_dif 40.0
points_by_rank 0.008929
team_points 1
country_classification Classe B
Name: 377, dtype: object
date 2018-11-20 00:00:00
team Uzbekistan
score 0.0
suf_score 4.0
rank 94.0
rank_suf 53.0
rank_change -2.0
total_points 1254.0
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 378, dtype: object
date 2018-11-20 00:00:00
team Syria
score 2.0
suf_score 1.0
rank 74.0
rank_suf 157.0
rank_change 0.0
total_points 1320.0
result 1
rank_dif 83.0
points_by_rank 0.019108
team_points 3
country_classification Classe B
Name: 379, dtype: object
date 2018-11-20 00:00:00
team Uganda
score 0.0
suf_score 0.0
rank 79.0
rank_suf 44.0
rank_change -4.0
total_points 1306.0
result 2
rank_dif -35.0
points_by_rank 0.022727
team_points 1
country_classification Classe B
Name: 380, dtype: object
date 2018-11-20 00:00:00
team Ecuador
score 2.0
suf_score 1.0
rank 61.0
rank_suf 70.0
rank_change 3.0
total_points 1371.0
result 1
rank_dif 9.0
points_by_rank 0.042857
team_points 3
country_classification Classe B
Name: 381, dtype: object
date 2018-11-20 00:00:00
team Costa Rica
score 3.0
suf_score 2.0
rank 37.0
rank_suf 20.0
rank_change 0.0
total_points 1452.0
result 1
rank_dif -17.0
points_by_rank 0.15
team_points 3
country_classification Classe A
Name: 382, dtype: object
date 2018-11-20 00:00:00
team Paraguay
score 1.0
suf_score 1.0
rank 31.0
rank_suf 73.0
rank_change 0.0
total_points 1477.0
result 2
rank_dif 42.0
points_by_rank 0.013699
team_points 1
country_classification Classe A
Name: 383, dtype: object
date 2018-11-20 00:00:00
team Morocco
score 1.0
suf_score 0.0
rank 47.0
rank_suf 22.0
rank_change 2.0
total_points 1422.0
result 1
rank_dif -25.0
points_by_rank 0.136364
team_points 3
country_classification Classe A
Name: 384, dtype: object
date 2018-11-20 00:00:00
team Ukraine
score 0.0
suf_score 0.0
rank 27.0
rank_suf 38.0
rank_change -2.0
total_points 1490.0
result 2
rank_dif 11.0
points_by_rank 0.026316
team_points 1
country_classification Classe A
Name: 385, dtype: object
date 2018-11-20 00:00:00
team Yemen
score 0.0
suf_score 2.0
rank 131.0
rank_suf 81.0
rank_change -2.0
total_points 1112.0
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 386, dtype: object
date 2018-11-20 00:00:00
team Vietnam
score 0.0
suf_score 0.0
rank 102.0
rank_suf 141.0
rank_change 0.0
total_points 1220.0
result 2
rank_dif 39.0
points_by_rank 0.007092
team_points 1
country_classification Classe B
Name: 387, dtype: object
date 2018-11-20 00:00:00
team Laos
score 1.0
suf_score 3.0
rank 181.0
rank_suf 170.0
rank_change 2.0
total_points 937.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 388, dtype: object
date 2018-11-21 00:00:00
team Thailand
score 1.0
suf_score 1.0
rank 121.0
rank_suf 116.0
rank_change -1.0
total_points 1154.0
result 2
rank_dif -5.0
points_by_rank 0.008621
team_points 1
country_classification Classe C
Name: 389, dtype: object
date 2018-11-21 00:00:00
team Timor-Leste
score 1.0
suf_score 6.0
rank 191.0
rank_suf 165.0
rank_change 1.0
total_points 910.0
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 390, dtype: object
date 2018-11-24 00:00:00
team Cambodia
score 0.0
suf_score 3.0
rank 170.0
rank_suf 102.0
rank_change 1.0
total_points 973.0
result 0
rank_dif -68.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 391, dtype: object
date 2018-11-24 00:00:00
team Myanmar
score 0.0
suf_score 3.0
rank 141.0
rank_suf 169.0
rank_change 3.0
total_points 1080.0
result 0
rank_dif 28.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 392, dtype: object
date 2018-11-25 00:00:00
team Philippines
score 0.0
suf_score 0.0
rank 116.0
rank_suf 160.0
rank_change 2.0
total_points 1171.0
result 2
rank_dif 44.0
points_by_rank 0.00625
team_points 1
country_classification Classe C
Name: 393, dtype: object
date 2018-11-25 00:00:00
team Singapore
score 0.0
suf_score 3.0
rank 165.0
rank_suf 121.0
rank_change -1.0
total_points 991.0
result 0
rank_dif -44.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 394, dtype: object
date 2018-12-01 00:00:00
team Thailand
score 0.0
suf_score 0.0
rank 118.0
rank_suf 167.0
rank_change -3.0
total_points 1161.0
result 2
rank_dif 49.0
points_by_rank 0.005988
team_points 1
country_classification Classe C
Name: 395, dtype: object
date 2018-12-02 00:00:00
team Vietnam
score 2.0
suf_score 1.0
rank 100.0
rank_suf 114.0
rank_change -2.0
total_points 1224.0
result 1
rank_dif 14.0
points_by_rank 0.026316
team_points 3
country_classification Classe B
Name: 396, dtype: object
date 2018-12-05 00:00:00
team Malaysia
score 2.0
suf_score 2.0
rank 167.0
rank_suf 118.0
rank_change -2.0
total_points 984.0
result 2
rank_dif -49.0
points_by_rank 0.008475
team_points 1
country_classification Classe D
Name: 397, dtype: object
date 2018-12-06 00:00:00
team Philippines
score 1.0
suf_score 2.0
rank 114.0
rank_suf 100.0
rank_change -2.0
total_points 1176.0
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 398, dtype: object
date 2018-12-11 00:00:00
team Vietnam
score 2.0
suf_score 2.0
rank 100.0
rank_suf 167.0
rank_change -2.0
total_points 1224.0
result 2
rank_dif 67.0
points_by_rank 0.005988
team_points 1
country_classification Classe B
Name: 399, dtype: object
date 2018-12-13 00:00:00
team Tajikistan
score 1.0
suf_score 2.0
rank 118.0
rank_suf 83.0
rank_change 0.0
total_points 1161.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 400, dtype: object
date 2018-12-15 00:00:00
team Malaysia
score 0.0
suf_score 1.0
rank 167.0
rank_suf 100.0
rank_change -2.0
total_points 984.0
result 0
rank_dif -67.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 401, dtype: object
date 2018-12-16 00:00:00
team Tajikistan
score 0.0
suf_score 1.0
rank 118.0
rank_suf 83.0
rank_change 0.0
total_points 1161.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 402, dtype: object
date 2018-12-16 00:00:00
team Pakistan
score 0.0
suf_score 2.0
rank 199.0
rank_suf 99.0
rank_change 0.0
total_points 888.0
result 0
rank_dif -100.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 403, dtype: object
date 2018-12-20 00:00:00
team Tajikistan
score 0.0
suf_score 5.0
rank 120.0
rank_suf 113.0
rank_change 2.0
total_points 1158.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 404, dtype: object
date 2018-12-23 00:00:00
team Jordan
score 0.0
suf_score 2.0
rank 109.0
rank_suf 93.0
rank_change 0.0
total_points 1196.0
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 405, dtype: object
date 2018-12-24 00:00:00
team China PR
score 1.0
suf_score 2.0
rank 76.0
rank_suf 88.0
rank_change 0.0
total_points 1317.0
result 0
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 406, dtype: object
date 2018-12-24 00:00:00
team Iran
score 1.0
suf_score 1.0
rank 29.0
rank_suf 99.0
rank_change 0.0
total_points 1481.0
result 2
rank_dif 70.0
points_by_rank 0.010101
team_points 1
country_classification Classe A
Name: 407, dtype: object
date 2018-12-25 00:00:00
team Turkmenistan
score 2.0
suf_score 0.0
rank 127.0
rank_suf 147.0
rank_change 0.0
total_points 1120.0
result 1
rank_dif 20.0
points_by_rank 0.020408
team_points 3
country_classification Classe C
Name: 408, dtype: object
date 2018-12-27 00:00:00
team Lebanon
score 0.0
suf_score 1.0
rank 81.0
rank_suf 113.0
rank_change 0.0
total_points 1296.0
result 0
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 409, dtype: object
date 2018-12-27 00:00:00
team Oman
score 0.0
suf_score 0.0
rank 82.0
rank_suf 97.0
rank_change -1.0
total_points 1295.0
result 2
rank_dif 15.0
points_by_rank 0.010309
team_points 1
country_classification Classe B
Name: 410, dtype: object
date 2018-12-27 00:00:00
team Algeria
score 1.0
suf_score 0.0
rank 67.0
rank_suf 93.0
rank_change 0.0
total_points 1347.0
result 1
rank_dif 26.0
points_by_rank 0.032258
team_points 3
country_classification Classe B
Name: 411, dtype: object
date 2018-12-28 00:00:00
team Jordan
score 1.0
suf_score 1.0
rank 109.0
rank_suf 76.0
rank_change 0.0
total_points 1196.0
result 2
rank_dif -33.0
points_by_rank 0.013158
team_points 1
country_classification Classe C
Name: 412, dtype: object
date 2018-12-28 00:00:00
team Palestine
score 0.0
suf_score 1.0
rank 99.0
rank_suf 88.0
rank_change 0.0
total_points 1236.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 413, dtype: object
date 2018-12-28 00:00:00
team Kuwait
score 2.0
suf_score 0.0
rank 158.0
rank_suf 79.0
rank_change 0.0
total_points 1018.0
result 1
rank_dif -79.0
points_by_rank 0.037975
team_points 3
country_classification Classe C
Name: 414, dtype: object
date 2018-12-30 00:00:00
team Oman
score 0.0
suf_score 5.0
rank 82.0
rank_suf 41.0
rank_change -1.0
total_points 1295.0
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 415, dtype: object
date 2018-12-30 00:00:00
team Syria
score 1.0
suf_score 0.0
rank 74.0
rank_suf 135.0
rank_change 0.0
total_points 1322.0
result 1
rank_dif 61.0
points_by_rank 0.022222
team_points 3
country_classification Classe B
Name: 416, dtype: object
date 2018-12-31 00:00:00
team Saudi Arabia
score 0.0
suf_score 0.0
rank 69.0
rank_suf 53.0
rank_change 0.0
total_points 1335.0
result 2
rank_dif -16.0
points_by_rank 0.018868
team_points 1
country_classification Classe B
Name: 417, dtype: object
date 2018-12-31 00:00:00
team Vietnam
score 4.0
suf_score 2.0
rank 100.0
rank_suf 116.0
rank_change 0.0
total_points 1229.0
result 1
rank_dif 16.0
points_by_rank 0.025862
team_points 3
country_classification Classe B
Name: 418, dtype: object
date 2018-12-31 00:00:00
team Iran
score 2.0
suf_score 1.0
rank 29.0
rank_suf 93.0
rank_change 0.0
total_points 1481.0
result 1
rank_dif 64.0
points_by_rank 0.032258
team_points 3
country_classification Classe A
Name: 419, dtype: object
date 2019-01-02 00:00:00
team Thailand
score 0.0
suf_score 2.0
rank 118.0
rank_suf 82.0
rank_change 0.0
total_points 1160.0
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 420, dtype: object
date 2019-01-05 00:00:00
team Bahrain
score 1.0
suf_score 1.0
rank 113.0
rank_suf 79.0
rank_change 0.0
total_points 1178.0
result 2
rank_dif -34.0
points_by_rank 0.012658
team_points 1
country_classification Classe C
Name: 421, dtype: object
date 2019-01-06 00:00:00
team India
score 4.0
suf_score 1.0
rank 97.0
rank_suf 118.0
rank_change 0.0
total_points 1240.0
result 1
rank_dif 21.0
points_by_rank 0.025424
team_points 3
country_classification Classe B
Name: 422, dtype: object
date 2019-01-06 00:00:00
team Jordan
score 1.0
suf_score 0.0
rank 109.0
rank_suf 41.0
rank_change 0.0
total_points 1196.0
result 1
rank_dif -68.0
points_by_rank 0.073171
team_points 3
country_classification Classe C
Name: 423, dtype: object
date 2019-01-06 00:00:00
team Palestine
score 0.0
suf_score 0.0
rank 99.0
rank_suf 74.0
rank_change 0.0
total_points 1236.0
result 2
rank_dif -25.0
points_by_rank 0.013514
team_points 1
country_classification Classe B
Name: 424, dtype: object
date 2019-01-07 00:00:00
team Philippines
score 0.0
suf_score 1.0
rank 116.0
rank_suf 53.0
rank_change 2.0
total_points 1171.0
result 0
rank_dif -63.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 425, dtype: object
date 2019-01-07 00:00:00
team Yemen
score 0.0
suf_score 5.0
rank 135.0
rank_suf 29.0
rank_change 0.0
total_points 1106.0
result 0
rank_dif -106.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 426, dtype: object
date 2019-01-08 00:00:00
team Sweden
score 0.0
suf_score 1.0
rank 14.0
rank_suf 58.0
rank_change 0.0
total_points 1560.0
result 0
rank_dif 44.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 427, dtype: object
date 2019-01-08 00:00:00
team Vietnam
score 2.0
suf_score 3.0
rank 100.0
rank_suf 88.0
rank_change 0.0
total_points 1229.0
result 0
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 428, dtype: object
date 2019-01-09 00:00:00
team Lebanon
score 0.0
suf_score 2.0
rank 81.0
rank_suf 93.0
rank_change 0.0
total_points 1296.0
result 0
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 429, dtype: object
date 2019-01-09 00:00:00
team Turkmenistan
score 2.0
suf_score 3.0
rank 127.0
rank_suf 50.0
rank_change 0.0
total_points 1120.0
result 0
rank_dif -77.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 430, dtype: object
date 2019-01-09 00:00:00
team Oman
score 1.0
suf_score 2.0
rank 82.0
rank_suf 95.0
rank_change -1.0
total_points 1295.0
result 0
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 431, dtype: object
date 2019-01-10 00:00:00
team Thailand
score 1.0
suf_score 0.0
rank 118.0
rank_suf 113.0
rank_change 0.0
total_points 1160.0
result 1
rank_dif -5.0
points_by_rank 0.026549
team_points 3
country_classification Classe C
Name: 432, dtype: object
date 2019-01-10 00:00:00
team Syria
score 0.0
suf_score 2.0
rank 74.0
rank_suf 109.0
rank_change 0.0
total_points 1322.0
result 0
rank_dif 35.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 433, dtype: object
date 2019-01-10 00:00:00
team India
score 0.0
suf_score 2.0
rank 97.0
rank_suf 79.0
rank_change 0.0
total_points 1240.0
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 434, dtype: object
date 2019-01-11 00:00:00
team Finland
score 1.0
suf_score 2.0
rank 58.0
rank_suf 96.0
rank_change 0.0
total_points 1378.0
result 0
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 435, dtype: object
date 2019-01-11 00:00:00
team Sweden
score 2.0
suf_score 2.0
rank 14.0
rank_suf 37.0
rank_change 0.0
total_points 1560.0
result 2
rank_dif 23.0
points_by_rank 0.027027
team_points 1
country_classification Classe A
Name: 436, dtype: object
date 2019-01-11 00:00:00
team Australia
score 3.0
suf_score 0.0
rank 41.0
rank_suf 99.0
rank_change 0.0
total_points 1436.0
result 1
rank_dif 58.0
points_by_rank 0.030303
team_points 3
country_classification Classe A
Name: 437, dtype: object
date 2019-01-11 00:00:00
team China PR
score 3.0
suf_score 0.0
rank 76.0
rank_suf 116.0
rank_change 0.0
total_points 1317.0
result 1
rank_dif 40.0
points_by_rank 0.025862
team_points 3
country_classification Classe B
Name: 438, dtype: object
date 2019-01-12 00:00:00
team Iran
score 2.0
suf_score 0.0
rank 29.0
rank_suf 100.0
rank_change 0.0
total_points 1481.0
result 1
rank_dif 71.0
points_by_rank 0.03
team_points 3
country_classification Classe A
Name: 439, dtype: object
date 2019-01-12 00:00:00
team Iraq
score 3.0
suf_score 0.0
rank 88.0
rank_suf 135.0
rank_change 0.0
total_points 1271.0
result 1
rank_dif 47.0
points_by_rank 0.022222
team_points 3
country_classification Classe B
Name: 440, dtype: object
date 2019-01-12 00:00:00
team Saudi Arabia
score 2.0
suf_score 0.0
rank 69.0
rank_suf 81.0
rank_change 0.0
total_points 1335.0
result 1
rank_dif 12.0
points_by_rank 0.037037
team_points 3
country_classification Classe B
Name: 441, dtype: object
date 2019-01-13 00:00:00
team Japan
score 1.0
suf_score 0.0
rank 50.0
rank_suf 82.0
rank_change 0.0
total_points 1414.0
result 1
rank_dif 32.0
points_by_rank 0.036585
team_points 3
country_classification Classe A
Name: 442, dtype: object
date 2019-01-13 00:00:00
team Uzbekistan
score 4.0
suf_score 0.0
rank 95.0
rank_suf 127.0
rank_change 0.0
total_points 1251.0
result 1
rank_dif 32.0
points_by_rank 0.023622
team_points 3
country_classification Classe B
Name: 443, dtype: object
date 2019-01-14 00:00:00
team Bahrain
score 1.0
suf_score 0.0
rank 113.0
rank_suf 97.0
rank_change 0.0
total_points 1178.0
result 1
rank_dif -16.0
points_by_rank 0.030928
team_points 3
country_classification Classe C
Name: 444, dtype: object
date 2019-01-14 00:00:00
team Thailand
score 1.0
suf_score 1.0
rank 118.0
rank_suf 79.0
rank_change 0.0
total_points 1160.0
result 2
rank_dif -39.0
points_by_rank 0.012658
team_points 1
country_classification Classe C
Name: 445, dtype: object
date 2019-01-15 00:00:00
team Iceland
score 0.0
suf_score 0.0
rank 37.0
rank_suf 96.0
rank_change 0.0
total_points 1452.0
result 2
rank_dif 59.0
points_by_rank 0.010417
team_points 1
country_classification Classe A
Name: 446, dtype: object
date 2019-01-15 00:00:00
team Syria
score 2.0
suf_score 3.0
rank 74.0
rank_suf 41.0
rank_change 0.0
total_points 1322.0
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 447, dtype: object
date 2019-01-15 00:00:00
team Jordan
score 0.0
suf_score 0.0
rank 109.0
rank_suf 99.0
rank_change 0.0
total_points 1196.0
result 2
rank_dif -10.0
points_by_rank 0.010101
team_points 1
country_classification Classe C
Name: 448, dtype: object
date 2019-01-16 00:00:00
team China PR
score 0.0
suf_score 2.0
rank 76.0
rank_suf 53.0
rank_change 0.0
total_points 1317.0
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 449, dtype: object
date 2019-01-16 00:00:00
team Iraq
score 0.0
suf_score 0.0
rank 88.0
rank_suf 29.0
rank_change 0.0
total_points 1271.0
result 2
rank_dif -59.0
points_by_rank 0.034483
team_points 1
country_classification Classe B
Name: 450, dtype: object
date 2019-01-16 00:00:00
team Yemen
score 0.0
suf_score 2.0
rank 135.0
rank_suf 100.0
rank_change 0.0
total_points 1106.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 451, dtype: object
date 2019-01-17 00:00:00
team Qatar
score 2.0
suf_score 0.0
rank 93.0
rank_suf 69.0
rank_change 0.0
total_points 1258.0
result 1
rank_dif -24.0
points_by_rank 0.043478
team_points 3
country_classification Classe B
Name: 452, dtype: object
date 2019-01-17 00:00:00
team Uzbekistan
score 1.0
suf_score 2.0
rank 95.0
rank_suf 50.0
rank_change 0.0
total_points 1251.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 453, dtype: object
date 2019-01-17 00:00:00
team Turkmenistan
score 1.0
suf_score 3.0
rank 127.0
rank_suf 82.0
rank_change 0.0
total_points 1120.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 454, dtype: object
date 2019-01-20 00:00:00
team Oman
score 0.0
suf_score 2.0
rank 82.0
rank_suf 29.0
rank_change -1.0
total_points 1295.0
result 0
rank_dif -53.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 455, dtype: object
date 2019-01-20 00:00:00
team Vietnam
score 1.0
suf_score 1.0
rank 100.0
rank_suf 109.0
rank_change 0.0
total_points 1229.0
result 2
rank_dif 9.0
points_by_rank 0.009174
team_points 1
country_classification Classe B
Name: 456, dtype: object
date 2019-01-20 00:00:00
team China PR
score 2.0
suf_score 1.0
rank 76.0
rank_suf 118.0
rank_change 0.0
total_points 1317.0
result 1
rank_dif 42.0
points_by_rank 0.025424
team_points 3
country_classification Classe B
Name: 457, dtype: object
date 2019-01-21 00:00:00
team Uzbekistan
score 0.0
suf_score 0.0
rank 95.0
rank_suf 41.0
rank_change 0.0
total_points 1251.0
result 2
rank_dif -54.0
points_by_rank 0.02439
team_points 1
country_classification Classe B
Name: 458, dtype: object
date 2019-01-21 00:00:00
team Saudi Arabia
score 0.0
suf_score 1.0
rank 69.0
rank_suf 50.0
rank_change 0.0
total_points 1335.0
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 459, dtype: object
date 2019-01-22 00:00:00
team Bahrain
score 1.0
suf_score 2.0
rank 113.0
rank_suf 53.0
rank_change 0.0
total_points 1178.0
result 0
rank_dif -60.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 460, dtype: object
date 2019-01-22 00:00:00
team Iraq
score 0.0
suf_score 1.0
rank 88.0
rank_suf 93.0
rank_change 0.0
total_points 1271.0
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 461, dtype: object
date 2019-01-24 00:00:00
team Iran
score 3.0
suf_score 0.0
rank 29.0
rank_suf 76.0
rank_change 0.0
total_points 1481.0
result 1
rank_dif 47.0
points_by_rank 0.039474
team_points 3
country_classification Classe A
Name: 462, dtype: object
date 2019-01-24 00:00:00
team Japan
score 1.0
suf_score 0.0
rank 50.0
rank_suf 100.0
rank_change 0.0
total_points 1414.0
result 1
rank_dif 50.0
points_by_rank 0.03
team_points 3
country_classification Classe A
Name: 463, dtype: object
date 2019-01-25 00:00:00
team Qatar
score 1.0
suf_score 0.0
rank 93.0
rank_suf 53.0
rank_change 0.0
total_points 1258.0
result 1
rank_dif -40.0
points_by_rank 0.056604
team_points 3
country_classification Classe B
Name: 464, dtype: object
date 2019-01-25 00:00:00
team Australia
score 0.0
suf_score 1.0
rank 41.0
rank_suf 79.0
rank_change 0.0
total_points 1436.0
result 0
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 465, dtype: object
date 2019-01-27 00:00:00
team Panama
score 0.0
suf_score 3.0
rank 71.0
rank_suf 25.0
rank_change 0.0
total_points 1326.0
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 466, dtype: object
date 2019-01-28 00:00:00
team Japan
score 3.0
suf_score 0.0
rank 50.0
rank_suf 29.0
rank_change 0.0
total_points 1414.0
result 1
rank_dif -21.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 467, dtype: object
date 2019-01-29 00:00:00
team Qatar
score 4.0
suf_score 0.0
rank 93.0
rank_suf 79.0
rank_change 0.0
total_points 1258.0
result 1
rank_dif -14.0
points_by_rank 0.037975
team_points 3
country_classification Classe B
Name: 468, dtype: object
date 2019-02-01 00:00:00
team Qatar
score 3.0
suf_score 1.0
rank 93.0
rank_suf 50.0
rank_change 0.0
total_points 1258.0
result 1
rank_dif -43.0
points_by_rank 0.06
team_points 3
country_classification Classe B
Name: 469, dtype: object
date 2019-02-02 00:00:00
team Costa Rica
score 0.0
suf_score 2.0
rank 36.0
rank_suf 25.0
rank_change 0.0
total_points 1464.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 470, dtype: object
date 2019-02-21 00:00:00
team Moldova
score 0.0
suf_score 1.0
rank 170.0
rank_suf 117.0
rank_change 0.0
total_points 979.0
result 0
rank_dif -53.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 471, dtype: object
date 2019-02-27 00:00:00
team Bermuda
score 0.0
suf_score 5.0
rank 176.0
rank_suf 174.0
rank_change 0.0
total_points 952.0
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 472, dtype: object
date 2019-03-03 00:00:00
team Nicaragua
score 2.0
suf_score 2.0
rank 128.0
rank_suf 60.0
rank_change -1.0
total_points 1119.0
result 2
rank_dif -68.0
points_by_rank 0.016667
team_points 1
country_classification Classe C
Name: 473, dtype: object
date 2019-03-04 00:00:00
team Grenada
score 0.0
suf_score 3.0
rank 173.0
rank_suf 162.0
rank_change 0.0
total_points 968.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 474, dtype: object
date 2019-03-06 00:00:00
team Guatemala
score 1.0
suf_score 3.0
rank 149.0
rank_suf 73.0
rank_change 0.0
total_points 1061.0
result 0
rank_dif -76.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 475, dtype: object
date 2019-03-09 00:00:00
team Bangladesh
score 1.0
suf_score 0.0
rank 192.0
rank_suf 172.0
rank_change 0.0
total_points 907.0
result 1
rank_dif -20.0
points_by_rank 0.017442
team_points 3
country_classification Classe D
Name: 476, dtype: object
date 2019-03-16 00:00:00
team Turks and Caicos Islands
score 1.0
suf_score 6.0
rank 208.0
rank_suf 210.0
rank_change 0.0
total_points 864.0
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 477, dtype: object
date 2019-03-18 00:00:00
team New Caledonia
score 0.0
suf_score 3.0
rank 154.0
rank_suf 169.0
rank_change 0.0
total_points 1036.0
result 0
rank_dif 15.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 478, dtype: object
date 2019-03-18 00:00:00
team Vanuatu
score 1.0
suf_score 3.0
rank 163.0
rank_suf 143.0
rank_change 0.0
total_points 996.0
result 0
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 479, dtype: object
date 2019-03-20 00:00:00
team Serbia
score 1.0
suf_score 1.0
rank 31.0
rank_suf 16.0
rank_change 2.0
total_points 1481.0
result 2
rank_dif -15.0
points_by_rank 0.0625
team_points 1
country_classification Classe A
Name: 480, dtype: object
date 2019-03-20 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 1.0
rank 93.0
rank_suf 19.0
rank_change 1.0
total_points 1260.0
result 0
rank_dif -74.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 481, dtype: object
date 2019-03-21 00:00:00
team Denmark
score 2.0
suf_score 2.0
rank 10.0
rank_suf 130.0
rank_change 0.0
total_points 1589.0
result 2
rank_dif 120.0
points_by_rank 0.007692
team_points 1
country_classification Classe A
Name: 482, dtype: object
date 2019-03-21 00:00:00
team Nepal
score 0.0
suf_score 0.0
rank 161.0
rank_suf 158.0
rank_change 0.0
total_points 1001.0
result 2
rank_dif -3.0
points_by_rank 0.006329
team_points 1
country_classification Classe C
Name: 483, dtype: object
date 2019-03-21 00:00:00
team New Caledonia
score 1.0
suf_score 3.0
rank 154.0
rank_suf 156.0
rank_change 0.0
total_points 1036.0
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 484, dtype: object
date 2019-03-21 00:00:00
team Saudi Arabia
score 1.0
suf_score 2.0
rank 70.0
rank_suf 67.0
rank_change 1.0
total_points 1344.0
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 485, dtype: object
date 2019-03-21 00:00:00
team Ecuador
score 0.0
suf_score 1.0
rank 58.0
rank_suf 25.0
rank_change 1.0
total_points 1382.0
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 486, dtype: object
date 2019-03-21 00:00:00
team Estonia
score 0.0
suf_score 2.0
rank 96.0
rank_suf 36.0
rank_change 0.0
total_points 1246.0
result 0
rank_dif -60.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 487, dtype: object
date 2019-03-21 00:00:00
team Belarus
score 0.0
suf_score 4.0
rank 78.0
rank_suf 14.0
rank_change 2.0
total_points 1317.0
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 488, dtype: object
date 2019-03-21 00:00:00
team Azerbaijan
score 1.0
suf_score 2.0
rank 108.0
rank_suf 4.0
rank_change 1.0
total_points 1206.0
result 0
rank_dif -104.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 489, dtype: object
date 2019-03-21 00:00:00
team Hungary
score 0.0
suf_score 2.0
rank 52.0
rank_suf 29.0
rank_change 1.0
total_points 1412.0
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 490, dtype: object
date 2019-03-21 00:00:00
team Poland
score 1.0
suf_score 0.0
rank 20.0
rank_suf 23.0
rank_change 0.0
total_points 1518.0
result 1
rank_dif 3.0
points_by_rank 0.130435
team_points 3
country_classification Classe A
Name: 491, dtype: object
date 2019-03-21 00:00:00
team Slovenia
score 1.0
suf_score 1.0
rank 63.0
rank_suf 92.0
rank_change 1.0
total_points 1369.0
result 2
rank_dif 29.0
points_by_rank 0.01087
team_points 1
country_classification Classe B
Name: 492, dtype: object
date 2019-03-21 00:00:00
team San Marino
score 0.0
suf_score 5.0
rank 211.0
rank_suf 87.0
rank_change 0.0
total_points 854.0
result 0
rank_dif -124.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 493, dtype: object
date 2019-03-21 00:00:00
team Russia
score 1.0
suf_score 3.0
rank 50.0
rank_suf 1.0
rank_change 2.0
total_points 1424.0
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 494, dtype: object
date 2019-03-21 00:00:00
team Scotland
score 0.0
suf_score 3.0
rank 40.0
rank_suf 117.0
rank_change 2.0
total_points 1446.0
result 0
rank_dif 77.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 495, dtype: object
date 2019-03-21 00:00:00
team Turks and Caicos Islands
score 2.0
suf_score 2.0
rank 208.0
rank_suf 207.0
rank_change 0.0
total_points 864.0
result 2
rank_dif -1.0
points_by_rank 0.004831
team_points 1
country_classification Classe D
Name: 496, dtype: object
date 2019-03-22 00:00:00
team Venezuela
score 3.0
suf_score 1.0
rank 32.0
rank_suf 11.0
rank_change 1.0
total_points 1478.0
result 1
rank_dif -21.0
points_by_rank 0.272727
team_points 3
country_classification Classe A
Name: 497, dtype: object
date 2019-03-22 00:00:00
team Costa Rica
score 0.0
suf_score 1.0
rank 37.0
rank_suf 149.0
rank_change 1.0
total_points 1461.0
result 0
rank_dif 112.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 498, dtype: object
date 2019-03-22 00:00:00
team Colombia
score 1.0
suf_score 0.0
rank 12.0
rank_suf 27.0
rank_change 0.0
total_points 1575.0
result 1
rank_dif 15.0
points_by_rank 0.111111
team_points 3
country_classification Classe A
Name: 499, dtype: object
date 2019-03-22 00:00:00
team Bolivia
score 0.0
suf_score 1.0
rank 60.0
rank_suf 38.0
rank_change 1.0
total_points 1374.0
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 500, dtype: object
date 2019-03-22 00:00:00
team Chile
score 1.0
suf_score 3.0
rank 13.0
rank_suf 17.0
rank_change 0.0
total_points 1565.0
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 501, dtype: object
date 2019-03-22 00:00:00
team Paraguay
score 0.0
suf_score 1.0
rank 33.0
rank_suf 20.0
rank_change 1.0
total_points 1476.0
result 0
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 502, dtype: object
date 2019-03-22 00:00:00
team Montenegro
score 1.0
suf_score 1.0
rank 46.0
rank_suf 48.0
rank_change 2.0
total_points 1427.0
result 2
rank_dif 2.0
points_by_rank 0.020833
team_points 1
country_classification Classe A
Name: 503, dtype: object
date 2019-03-22 00:00:00
team Czech Republic
score 0.0
suf_score 5.0
rank 44.0
rank_suf 5.0
rank_change 2.0
total_points 1435.0
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 504, dtype: object
date 2019-03-22 00:00:00
team Ukraine
score 0.0
suf_score 0.0
rank 30.0
rank_suf 6.0
rank_change 2.0
total_points 1482.0
result 2
rank_dif -24.0
points_by_rank 0.166667
team_points 1
country_classification Classe A
Name: 505, dtype: object
date 2019-03-22 00:00:00
team Lithuania
score 1.0
suf_score 2.0
rank 132.0
rank_suf 87.0
rank_change -1.0
total_points 1111.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 506, dtype: object
date 2019-03-22 00:00:00
team Turkey
score 2.0
suf_score 0.0
rank 41.0
rank_suf 61.0
rank_change 2.0
total_points 1443.0
result 1
rank_dif 20.0
points_by_rank 0.04918
team_points 3
country_classification Classe A
Name: 507, dtype: object
date 2019-03-22 00:00:00
team Iceland
score 2.0
suf_score 0.0
rank 38.0
rank_suf 132.0
rank_change 1.0
total_points 1451.0
result 1
rank_dif 94.0
points_by_rank 0.022727
team_points 3
country_classification Classe A
Name: 508, dtype: object
date 2019-03-22 00:00:00
team France
score 4.0
suf_score 1.0
rank 2.0
rank_suf 170.0
rank_change 0.0
total_points 1726.0
result 1
rank_dif 168.0
points_by_rank 0.017647
team_points 3
country_classification Classe S
Name: 509, dtype: object
date 2019-03-22 00:00:00
team Angola
score 1.0
suf_score 0.0
rank 125.0
rank_suf 145.0
rank_change 0.0
total_points 1131.0
result 1
rank_dif 20.0
points_by_rank 0.02069
team_points 3
country_classification Classe C
Name: 510, dtype: object
date 2019-03-22 00:00:00
team Montserrat
score 2.0
suf_score 1.0
rank 200.0
rank_suf 203.0
rank_change 0.0
total_points 887.0
result 1
rank_dif 3.0
points_by_rank 0.014778
team_points 3
country_classification Classe D
Name: 511, dtype: object
date 2019-03-23 00:00:00
team Panama
score 1.0
suf_score 1.0
rank 76.0
rank_suf 3.0
rank_change 5.0
total_points 1324.0
result 2
rank_dif -73.0
points_by_rank 0.333333
team_points 1
country_classification Classe B
Name: 512, dtype: object
date 2019-03-23 00:00:00
team Afghanistan
score 1.0
suf_score 2.0
rank 147.0
rank_suf 167.0
rank_change 0.0
total_points 1066.0
result 0
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 513, dtype: object
date 2019-03-23 00:00:00
team Singapore
score 1.0
suf_score 1.0
rank 165.0
rank_suf 90.0
rank_change 0.0
total_points 991.0
result 2
rank_dif -75.0
points_by_rank 0.011111
team_points 1
country_classification Classe D
Name: 514, dtype: object
date 2019-03-23 00:00:00
team Switzerland
score 2.0
suf_score 0.0
rank 8.0
rank_suf 91.0
rank_change 0.0
total_points 1599.0
result 1
rank_dif 83.0
points_by_rank 0.032967
team_points 3
country_classification Classe A
Name: 515, dtype: object
date 2019-03-23 00:00:00
team Republic of Ireland
score 1.0
suf_score 0.0
rank 34.0
rank_suf 194.0
rank_change 1.0
total_points 1474.0
result 1
rank_dif 160.0
points_by_rank 0.015464
team_points 3
country_classification Classe A
Name: 516, dtype: object
date 2019-03-23 00:00:00
team Faroe Islands
score 1.0
suf_score 2.0
rank 97.0
rank_suf 182.0
rank_change -1.0
total_points 1238.0
result 0
rank_dif 85.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 517, dtype: object
date 2019-03-23 00:00:00
team Romania
score 1.0
suf_score 2.0
rank 25.0
rank_suf 14.0
rank_change 1.0
total_points 1501.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 518, dtype: object
date 2019-03-23 00:00:00
team Norway
score 1.0
suf_score 2.0
rank 48.0
rank_suf 9.0
rank_change 2.0
total_points 1425.0
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 519, dtype: object
date 2019-03-23 00:00:00
team Armenia
score 1.0
suf_score 2.0
rank 101.0
rank_suf 35.0
rank_change 0.0
total_points 1222.0
result 0
rank_dif -66.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 520, dtype: object
date 2019-03-23 00:00:00
team Finland
score 0.0
suf_score 2.0
rank 59.0
rank_suf 18.0
rank_change 1.0
total_points 1375.0
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 521, dtype: object
date 2019-03-23 00:00:00
team Greece
score 2.0
suf_score 0.0
rank 45.0
rank_suf 181.0
rank_change 2.0
total_points 1428.0
result 1
rank_dif 136.0
points_by_rank 0.016575
team_points 3
country_classification Classe A
Name: 522, dtype: object
date 2019-03-23 00:00:00
team Madagascar
score 0.0
suf_score 2.0
rank 107.0
rank_suf 24.0
rank_change 1.0
total_points 1209.0
result 0
rank_dif -83.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 523, dtype: object
date 2019-03-23 00:00:00
team Comoros
score 0.0
suf_score 3.0
rank 142.0
rank_suf 56.0
rank_change -1.0
total_points 1076.0
result 0
rank_dif -86.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 524, dtype: object
date 2019-03-23 00:00:00
team South Sudan
score 0.0
suf_score 3.0
rank 164.0
rank_suf 65.0
rank_change 0.0
total_points 994.0
result 0
rank_dif -99.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 525, dtype: object
date 2019-03-23 00:00:00
team Kenya
score 0.0
suf_score 1.0
rank 106.0
rank_suf 52.0
rank_change 1.0
total_points 1210.0
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 526, dtype: object
date 2019-03-23 00:00:00
team Egypt
score 1.0
suf_score 1.0
rank 57.0
rank_suf 109.0
rank_change 1.0
total_points 1393.0
result 2
rank_dif 52.0
points_by_rank 0.009174
team_points 1
country_classification Classe B
Name: 527, dtype: object
date 2019-03-23 00:00:00
team Namibia
score 1.0
suf_score 4.0
rank 110.0
rank_suf 82.0
rank_change -1.0
total_points 1191.0
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 528, dtype: object
date 2019-03-23 00:00:00
team Bahamas
score 0.0
suf_score 4.0
rank 210.0
rank_suf 178.0
rank_change 0.0
total_points 858.0
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 529, dtype: object
date 2019-03-23 00:00:00
team Curaçao
score 1.0
suf_score 2.0
rank 100.0
rank_suf 126.0
rank_change 0.0
total_points 1450.0
result 0
rank_dif 26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 530, dtype: object
date 2019-03-23 00:00:00
team Belize
score 1.0
suf_score 2.0
rank 160.0
rank_suf 177.0
rank_change 0.0
total_points 1002.0
result 0
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 531, dtype: object
date 2019-03-24 00:00:00
team Mauritius
score 0.0
suf_score 1.0
rank 156.0
rank_suf 169.0
rank_change 0.0
total_points 1022.0
result 0
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 532, dtype: object
date 2019-03-24 00:00:00
team Belarus
score 1.0
suf_score 2.0
rank 78.0
rank_suf 36.0
rank_change 2.0
total_points 1317.0
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 533, dtype: object
date 2019-03-24 00:00:00
team Germany
score 3.0
suf_score 2.0
rank 16.0
rank_suf 14.0
rank_change 0.0
total_points 1558.0
result 1
rank_dif -2.0
points_by_rank 0.214286
team_points 3
country_classification Classe A
Name: 534, dtype: object
date 2019-03-24 00:00:00
team Slovakia
score 0.0
suf_score 1.0
rank 29.0
rank_suf 19.0
rank_change 2.0
total_points 1483.0
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 535, dtype: object
date 2019-03-24 00:00:00
team Croatia
score 1.0
suf_score 2.0
rank 4.0
rank_suf 52.0
rank_change 0.0
total_points 1634.0
result 0
rank_dif 48.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 536, dtype: object
date 2019-03-24 00:00:00
team Austria
score 2.0
suf_score 4.0
rank 23.0
rank_suf 92.0
rank_change 1.0
total_points 1509.0
result 0
rank_dif 69.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 537, dtype: object
date 2019-03-24 00:00:00
team Latvia
score 0.0
suf_score 2.0
rank 131.0
rank_suf 20.0
rank_change -1.0
total_points 1112.0
result 0
rank_dif -111.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 538, dtype: object
date 2019-03-24 00:00:00
team Scotland
score 2.0
suf_score 0.0
rank 40.0
rank_suf 211.0
rank_change 2.0
total_points 1446.0
result 1
rank_dif 171.0
points_by_rank 0.014218
team_points 3
country_classification Classe A
Name: 539, dtype: object
date 2019-03-24 00:00:00
team Russia
score 4.0
suf_score 0.0
rank 50.0
rank_suf 117.0
rank_change 2.0
total_points 1424.0
result 1
rank_dif 67.0
points_by_rank 0.025641
team_points 3
country_classification Classe A
Name: 540, dtype: object
date 2019-03-24 00:00:00
team Belgium
score 2.0
suf_score 0.0
rank 1.0
rank_suf 87.0
rank_change 0.0
total_points 1727.0
result 1
rank_dif 86.0
points_by_rank 0.034483
team_points 3
country_classification Classe S
Name: 541, dtype: object
date 2019-03-24 00:00:00
team Togo
score 1.0
suf_score 2.0
rank 122.0
rank_suf 94.0
rank_change -1.0
total_points 1136.0
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 542, dtype: object
date 2019-03-24 00:00:00
team South Africa
score 2.0
suf_score 1.0
rank 74.0
rank_suf 105.0
rank_change 2.0
total_points 1325.0
result 1
rank_dif 31.0
points_by_rank 0.028571
team_points 3
country_classification Classe B
Name: 543, dtype: object
date 2019-03-24 00:00:00
team Congo
score 0.0
suf_score 2.0
rank 84.0
rank_suf 113.0
rank_change 0.0
total_points 1280.0
result 0
rank_dif 29.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 544, dtype: object
date 2019-03-24 00:00:00
team Guinea
score 0.0
suf_score 0.0
rank 68.0
rank_suf 112.0
rank_change 2.0
total_points 1354.0
result 2
rank_dif 44.0
points_by_rank 0.008929
team_points 1
country_classification Classe B
Name: 545, dtype: object
date 2019-03-24 00:00:00
team Uganda
score 0.0
suf_score 3.0
rank 77.0
rank_suf 137.0
rank_change 2.0
total_points 1320.0
result 0
rank_dif 60.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 546, dtype: object
date 2019-03-24 00:00:00
team Grenada
score 2.0
suf_score 0.0
rank 173.0
rank_suf 179.0
rank_change 0.0
total_points 968.0
result 1
rank_dif 6.0
points_by_rank 0.01676
team_points 3
country_classification Classe D
Name: 547, dtype: object
date 2019-03-24 00:00:00
team Bermuda
score 3.0
suf_score 1.0
rank 176.0
rank_suf 154.0
rank_change 0.0
total_points 952.0
result 1
rank_dif -22.0
points_by_rank 0.019481
team_points 3
country_classification Classe D
Name: 548, dtype: object
date 2019-03-24 00:00:00
team Cuba
score 1.0
suf_score 2.0
rank 174.0
rank_suf 103.0
rank_change 0.0
total_points 963.0
result 0
rank_dif -71.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 549, dtype: object
date 2019-03-24 00:00:00
team Nicaragua
score 1.0
suf_score 0.0
rank 128.0
rank_suf 162.0
rank_change -1.0
total_points 1119.0
result 1
rank_dif 34.0
points_by_rank 0.018519
team_points 3
country_classification Classe C
Name: 550, dtype: object
date 2019-03-24 00:00:00
team Jamaica
score 0.0
suf_score 2.0
rank 54.0
rank_suf 73.0
rank_change 0.0
total_points 1404.0
result 0
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 551, dtype: object
date 2019-03-25 00:00:00
team Lithuania
score 0.0
suf_score 0.0
rank 132.0
rank_suf 108.0
rank_change -1.0
total_points 1111.0
result 2
rank_dif -24.0
points_by_rank 0.009259
team_points 1
country_classification Classe C
Name: 552, dtype: object
date 2019-03-25 00:00:00
team Nepal
score 0.0
suf_score 1.0
rank 161.0
rank_suf 158.0
rank_change 0.0
total_points 1001.0
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 553, dtype: object
date 2019-03-25 00:00:00
team Indonesia
score 2.0
suf_score 0.0
rank 159.0
rank_suf 138.0
rank_change 0.0
total_points 1003.0
result 1
rank_dif -21.0
points_by_rank 0.021739
team_points 3
country_classification Classe C
Name: 554, dtype: object
date 2019-03-25 00:00:00
team Equatorial Guinea
score 2.0
suf_score 3.0
rank 148.0
rank_suf 70.0
rank_change 0.0
total_points 1063.0
result 0
rank_dif -78.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 555, dtype: object
date 2019-03-25 00:00:00
team Bulgaria
score 1.0
suf_score 1.0
rank 48.0
rank_suf 130.0
rank_change 2.0
total_points 1425.0
result 2
rank_dif 82.0
points_by_rank 0.007692
team_points 1
country_classification Classe A
Name: 556, dtype: object
date 2019-03-25 00:00:00
team England
score 5.0
suf_score 1.0
rank 5.0
rank_suf 46.0
rank_change 0.0
total_points 1631.0
result 1
rank_dif 41.0
points_by_rank 0.065217
team_points 3
country_classification Classe S-
Name: 557, dtype: object
date 2019-03-25 00:00:00
team Serbia
score 1.0
suf_score 1.0
rank 31.0
rank_suf 6.0
rank_change 2.0
total_points 1481.0
result 2
rank_dif -25.0
points_by_rank 0.166667
team_points 1
country_classification Classe A
Name: 558, dtype: object
date 2019-03-25 00:00:00
team Ukraine
score 2.0
suf_score 1.0
rank 30.0
rank_suf 87.0
rank_change 2.0
total_points 1482.0
result 1
rank_dif 57.0
points_by_rank 0.034483
team_points 3
country_classification Classe A
Name: 559, dtype: object
date 2019-03-25 00:00:00
team Moldova
score 0.0
suf_score 4.0
rank 170.0
rank_suf 41.0
rank_change 0.0
total_points 979.0
result 0
rank_dif -129.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 560, dtype: object
date 2019-03-25 00:00:00
team Albania
score 3.0
suf_score 0.0
rank 61.0
rank_suf 132.0
rank_change 1.0
total_points 1372.0
result 1
rank_dif 71.0
points_by_rank 0.022727
team_points 3
country_classification Classe B
Name: 561, dtype: object
date 2019-03-25 00:00:00
team Iceland
score 0.0
suf_score 4.0
rank 38.0
rank_suf 2.0
rank_change 1.0
total_points 1451.0
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 562, dtype: object
date 2019-03-26 00:00:00
team Tunisia
score 0.0
suf_score 1.0
rank 28.0
rank_suf 69.0
rank_change 2.0
total_points 1493.0
result 0
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 563, dtype: object
date 2019-03-26 00:00:00
team Jamaica
score 0.0
suf_score 1.0
rank 54.0
rank_suf 37.0
rank_change 0.0
total_points 1404.0
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 564, dtype: object
date 2019-03-26 00:00:00
team Brazil
score 3.0
suf_score 1.0
rank 3.0
rank_suf 44.0
rank_change 0.0
total_points 1676.0
result 1
rank_dif 41.0
points_by_rank 0.068182
team_points 3
country_classification Classe S-
Name: 565, dtype: object
date 2019-03-26 00:00:00
team Mauritania
score 1.0
suf_score 3.0
rank 101.0
rank_suf 52.0
rank_change 0.0
total_points 1222.0
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 566, dtype: object
date 2019-03-26 00:00:00
team Estonia
score 1.0
suf_score 0.0
rank 96.0
rank_suf 194.0
rank_change 0.0
total_points 1246.0
result 1
rank_dif 98.0
points_by_rank 0.015464
team_points 3
country_classification Classe B
Name: 567, dtype: object
date 2019-03-26 00:00:00
team Ecuador
score 0.0
suf_score 0.0
rank 58.0
rank_suf 63.0
rank_change 1.0
total_points 1382.0
result 2
rank_dif 5.0
points_by_rank 0.015873
team_points 1
country_classification Classe B
Name: 568, dtype: object
date 2019-03-26 00:00:00
team Bolivia
score 1.0
suf_score 0.0
rank 60.0
rank_suf 27.0
rank_change 1.0
total_points 1374.0
result 1
rank_dif -33.0
points_by_rank 0.111111
team_points 3
country_classification Classe B
Name: 569, dtype: object
date 2019-03-26 00:00:00
team Colombia
score 1.0
suf_score 2.0
rank 12.0
rank_suf 38.0
rank_change 0.0
total_points 1575.0
result 0
rank_dif 26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 570, dtype: object
date 2019-03-26 00:00:00
team Argentina
score 1.0
suf_score 0.0
rank 11.0
rank_suf 43.0
rank_change 0.0
total_points 1582.0
result 1
rank_dif 32.0
points_by_rank 0.069767
team_points 3
country_classification Classe A
Name: 571, dtype: object
date 2019-03-26 00:00:00
team Guatemala
score 1.0
suf_score 0.0
rank 149.0
rank_suf 128.0
rank_change 0.0
total_points 1061.0
result 1
rank_dif -21.0
points_by_rank 0.023438
team_points 3
country_classification Classe C
Name: 572, dtype: object
date 2019-03-26 00:00:00
team Egypt
score 0.0
suf_score 1.0
rank 57.0
rank_suf 46.0
rank_change 1.0
total_points 1393.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 573, dtype: object
date 2019-03-26 00:00:00
team Mexico
score 4.0
suf_score 2.0
rank 17.0
rank_suf 33.0
rank_change 0.0
total_points 1540.0
result 1
rank_dif 16.0
points_by_rank 0.090909
team_points 3
country_classification Classe A
Name: 574, dtype: object
date 2019-03-26 00:00:00
team El Salvador
score 2.0
suf_score 0.0
rank 73.0
rank_suf 20.0
rank_change 3.0
total_points 1327.0
result 1
rank_dif -53.0
points_by_rank 0.15
team_points 3
country_classification Classe B
Name: 575, dtype: object
date 2019-03-26 00:00:00
team Mali
score 1.0
suf_score 2.0
rank 65.0
rank_suf 24.0
rank_change 1.0
total_points 1363.0
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 576, dtype: object
date 2019-03-26 00:00:00
team Syria
score 0.0
suf_score 0.0
rank 83.0
rank_suf 67.0
rank_change 9.0
total_points 1286.0
result 2
rank_dif -16.0
points_by_rank 0.014925
team_points 1
country_classification Classe B
Name: 577, dtype: object
date 2019-03-26 00:00:00
team Chile
score 1.0
suf_score 1.0
rank 13.0
rank_suf 25.0
rank_change 0.0
total_points 1565.0
result 2
rank_dif 12.0
points_by_rank 0.04
team_points 1
country_classification Classe A
Name: 578, dtype: object
date 2019-03-26 00:00:00
team Georgia
score 0.0
suf_score 1.0
rank 91.0
rank_suf 34.0
rank_change 2.0
total_points 1269.0
result 0
rank_dif -57.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 579, dtype: object
date 2019-03-26 00:00:00
team Denmark
score 3.0
suf_score 3.0
rank 10.0
rank_suf 8.0
rank_change 0.0
total_points 1589.0
result 2
rank_dif -2.0
points_by_rank 0.125
team_points 1
country_classification Classe A
Name: 580, dtype: object
date 2019-03-26 00:00:00
team Spain
score 2.0
suf_score 0.0
rank 9.0
rank_suf 182.0
rank_change 0.0
total_points 1591.0
result 1
rank_dif 173.0
points_by_rank 0.016484
team_points 3
country_classification Classe A
Name: 581, dtype: object
date 2019-03-26 00:00:00
team Sweden
score 3.0
suf_score 3.0
rank 14.0
rank_suf 48.0
rank_change 0.0
total_points 1560.0
result 2
rank_dif 34.0
points_by_rank 0.020833
team_points 1
country_classification Classe A
Name: 582, dtype: object
date 2019-03-26 00:00:00
team Faroe Islands
score 1.0
suf_score 4.0
rank 97.0
rank_suf 25.0
rank_change -1.0
total_points 1238.0
result 0
rank_dif -72.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 583, dtype: object
date 2019-03-26 00:00:00
team Greece
score 2.0
suf_score 2.0
rank 45.0
rank_suf 35.0
rank_change 2.0
total_points 1428.0
result 2
rank_dif -10.0
points_by_rank 0.028571
team_points 1
country_classification Classe A
Name: 584, dtype: object
date 2019-03-26 00:00:00
team Liechtenstein
score 0.0
suf_score 6.0
rank 181.0
rank_suf 18.0
rank_change 0.0
total_points 937.0
result 0
rank_dif -163.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 585, dtype: object
date 2019-03-26 00:00:00
team Finland
score 2.0
suf_score 0.0
rank 59.0
rank_suf 101.0
rank_change 1.0
total_points 1375.0
result 1
rank_dif 42.0
points_by_rank 0.029703
team_points 3
country_classification Classe B
Name: 586, dtype: object
date 2019-04-20 00:00:00
team Seychelles
score 0.0
suf_score 2.0
rank 190.0
rank_suf 148.0
rank_change 1.0
total_points 908.0
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 587, dtype: object
date 2019-04-20 00:00:00
team Malawi
score 0.0
suf_score 0.0
rank 128.0
rank_suf 143.0
rank_change -1.0
total_points 1122.0
result 2
rank_dif 15.0
points_by_rank 0.006993
team_points 1
country_classification Classe C
Name: 588, dtype: object
date 2019-05-11 00:00:00
team Eswatini
score 1.0
suf_score 1.0
rank 143.0
rank_suf 128.0
rank_change 3.0
total_points 1074.0
result 2
rank_dif -15.0
points_by_rank 0.007812
team_points 1
country_classification Classe C
Name: 589, dtype: object
date 2019-05-11 00:00:00
team Botswana
score 3.0
suf_score 1.0
rank 148.0
rank_suf 190.0
rank_change 3.0
total_points 1060.0
result 1
rank_dif 42.0
points_by_rank 0.015789
team_points 3
country_classification Classe C
Name: 590, dtype: object
date 2019-05-25 00:00:00
team Mauritius
score 2.0
suf_score 2.0
rank 156.0
rank_suf 143.0
rank_change 0.0
total_points 1022.0
result 2
rank_dif -13.0
points_by_rank 0.006993
team_points 1
country_classification Classe C
Name: 591, dtype: object
date 2019-05-26 00:00:00
team Namibia
score 2.0
suf_score 1.0
rank 113.0
rank_suf 117.0
rank_change 3.0
total_points 1181.0
result 1
rank_dif 4.0
points_by_rank 0.025641
team_points 3
country_classification Classe C
Name: 592, dtype: object
date 2019-05-26 00:00:00
team Seychelles
score 0.0
suf_score 3.0
rank 190.0
rank_suf 128.0
rank_change 1.0
total_points 908.0
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 593, dtype: object
date 2019-05-27 00:00:00
team Comoros
score 2.0
suf_score 2.0
rank 147.0
rank_suf 143.0
rank_change 5.0
total_points 1071.0
result 2
rank_dif -4.0
points_by_rank 0.006993
team_points 1
country_classification Classe C
Name: 594, dtype: object
date 2019-05-28 00:00:00
team Mozambique
score 0.0
suf_score 0.0
rank 117.0
rank_suf 190.0
rank_change 1.0
total_points 1166.0
result 2
rank_dif 73.0
points_by_rank 0.005263
team_points 1
country_classification Classe C
Name: 595, dtype: object
date 2019-05-28 00:00:00
team Malawi
score 2.0
suf_score 1.0
rank 128.0
rank_suf 113.0
rank_change -1.0
total_points 1122.0
result 1
rank_dif -15.0
points_by_rank 0.026549
team_points 3
country_classification Classe C
Name: 596, dtype: object
date 2019-05-28 00:00:00
team Sri Lanka
score 1.0
suf_score 2.0
rank 202.0
rank_suf 184.0
rank_change 1.0
total_points 886.0
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 597, dtype: object
date 2019-05-29 00:00:00
team Mauritius
score 1.0
suf_score 2.0
rank 156.0
rank_suf 147.0
rank_change 0.0
total_points 1022.0
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 598, dtype: object
date 2019-05-30 00:00:00
team Malawi
score 1.0
suf_score 1.0
rank 128.0
rank_suf 117.0
rank_change -1.0
total_points 1122.0
result 2
rank_dif -11.0
points_by_rank 0.008547
team_points 1
country_classification Classe C
Name: 599, dtype: object
date 2019-05-30 00:00:00
team Seychelles
score 0.0
suf_score 3.0
rank 190.0
rank_suf 113.0
rank_change 1.0
total_points 908.0
result 0
rank_dif -77.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 600, dtype: object
date 2019-05-30 00:00:00
team Greece
score 1.0
suf_score 2.0
rank 43.0
rank_suf 39.0
rank_change -2.0
total_points 1433.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 601, dtype: object
date 2019-05-31 00:00:00
team Sri Lanka
score 2.0
suf_score 2.0
rank 202.0
rank_suf 184.0
rank_change 1.0
total_points 886.0
result 2
rank_dif -18.0
points_by_rank 0.005435
team_points 1
country_classification Classe D
Name: 602, dtype: object
date 2019-06-01 00:00:00
team Uganda
score 0.0
suf_score 0.0
rank 79.0
rank_suf 142.0
rank_change 2.0
total_points 1302.0
result 2
rank_dif 63.0
points_by_rank 0.007042
team_points 1
country_classification Classe B
Name: 603, dtype: object
date 2019-06-01 00:00:00
team Comoros
score 0.0
suf_score 2.0
rank 147.0
rank_suf 110.0
rank_change 5.0
total_points 1071.0
result 0
rank_dif -37.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 604, dtype: object
date 2019-06-01 00:00:00
team Ecuador
score 1.0
suf_score 1.0
rank 59.0
rank_suf 29.0
rank_change 1.0
total_points 1378.0
result 2
rank_dif -30.0
points_by_rank 0.034483
team_points 1
country_classification Classe B
Name: 605, dtype: object
date 2019-06-02 00:00:00
team Botswana
score 2.0
suf_score 2.0
rank 148.0
rank_suf 73.0
rank_change 3.0
total_points 1060.0
result 2
rank_dif -75.0
points_by_rank 0.013699
team_points 1
country_classification Classe C
Name: 606, dtype: object
date 2019-06-02 00:00:00
team Malawi
score 2.0
suf_score 2.0
rank 128.0
rank_suf 79.0
rank_change -1.0
total_points 1122.0
result 2
rank_dif -49.0
points_by_rank 0.012658
team_points 1
country_classification Classe C
Name: 607, dtype: object
date 2019-06-02 00:00:00
team Haiti
score 0.0
suf_score 1.0
rank 100.0
rank_suf 71.0
rank_change -3.0
total_points 1223.0
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 608, dtype: object
date 2019-06-02 00:00:00
team Bolivia
score 0.0
suf_score 2.0
rank 63.0
rank_suf 2.0
rank_change 3.0
total_points 1366.0
result 0
rank_dif -61.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 609, dtype: object
date 2019-06-02 00:00:00
team Madagascar
score 3.0
suf_score 3.0
rank 107.0
rank_suf 86.0
rank_change 0.0
total_points 1203.0
result 2
rank_dif -21.0
points_by_rank 0.011628
team_points 1
country_classification Classe B
Name: 610, dtype: object
date 2019-06-02 00:00:00
team Nepal
score 0.0
suf_score 2.0
rank 161.0
rank_suf 168.0
rank_change 0.0
total_points 996.0
result 0
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 611, dtype: object
date 2019-06-02 00:00:00
team Uzbekistan
score 0.0
suf_score 0.0
rank 85.0
rank_suf 39.0
rank_change -4.0
total_points 1279.0
result 2
rank_dif -46.0
points_by_rank 0.025641
team_points 1
country_classification Classe B
Name: 612, dtype: object
date 2019-06-03 00:00:00
team Panama
score 0.0
suf_score 3.0
rank 74.0
rank_suf 12.0
rank_change -2.0
total_points 1327.0
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 613, dtype: object
date 2019-06-03 00:00:00
team Tahiti
score 0.0
suf_score 2.0
rank 158.0
rank_suf 166.0
rank_change 1.0
total_points 1020.0
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 614, dtype: object
date 2019-06-04 00:00:00
team Malawi
score 2.0
suf_score 1.0
rank 128.0
rank_suf 147.0
rank_change -1.0
total_points 1122.0
result 1
rank_dif 19.0
points_by_rank 0.020408
team_points 3
country_classification Classe C
Name: 615, dtype: object
date 2019-06-04 00:00:00
team Uganda
score 1.0
suf_score 1.0
rank 79.0
rank_suf 73.0
rank_change 2.0
total_points 1302.0
result 2
rank_dif -6.0
points_by_rank 0.013699
team_points 1
country_classification Classe B
Name: 616, dtype: object
date 2019-06-05 00:00:00
team Botswana
score 2.0
suf_score 1.0
rank 148.0
rank_suf 142.0
rank_change 3.0
total_points 1060.0
result 1
rank_dif -6.0
points_by_rank 0.021127
team_points 3
country_classification Classe C
Name: 617, dtype: object
date 2019-06-05 00:00:00
team Zambia
score 0.0
suf_score 0.0
rank 79.0
rank_suf 110.0
rank_change -3.0
total_points 1302.0
result 2
rank_dif 31.0
points_by_rank 0.009091
team_points 1
country_classification Classe B
Name: 618, dtype: object
date 2019-06-05 00:00:00
team Qatar
score 0.0
suf_score 2.0
rank 55.0
rank_suf 3.0
rank_change 0.0
total_points 1398.0
result 0
rank_dif -52.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 619, dtype: object
date 2019-06-05 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 0.0
rank 93.0
rank_suf 26.0
rank_change 0.0
total_points 1258.0
result 2
rank_dif -67.0
points_by_rank 0.038462
team_points 1
country_classification Classe B
Name: 620, dtype: object
date 2019-06-05 00:00:00
team Venezuela
score 1.0
suf_score 3.0
rank 29.0
rank_suf 18.0
rank_change -3.0
total_points 1484.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 621, dtype: object
date 2019-06-05 00:00:00
team Honduras
score 1.0
suf_score 1.0
rank 61.0
rank_suf 36.0
rank_change -2.0
total_points 1369.0
result 2
rank_dif -25.0
points_by_rank 0.027778
team_points 1
country_classification Classe B
Name: 622, dtype: object
date 2019-06-05 00:00:00
team Costa Rica
score 0.0
suf_score 1.0
rank 38.0
rank_suf 21.0
rank_change 1.0
total_points 1458.0
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 623, dtype: object
date 2019-06-05 00:00:00
team Jamaica
score 1.0
suf_score 0.0
rank 56.0
rank_suf 24.0
rank_change 2.0
total_points 1391.0
result 1
rank_dif -32.0
points_by_rank 0.125
team_points 3
country_classification Classe B
Name: 624, dtype: object
date 2019-06-05 00:00:00
team Switzerland
score 1.0
suf_score 3.0
rank 8.0
rank_suf 7.0
rank_change 0.0
total_points 1604.0
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 625, dtype: object
date 2019-06-06 00:00:00
team Guyana
score 0.0
suf_score 1.0
rank 175.0
rank_suf 175.0
rank_change -2.0
total_points 959.0
result 0
rank_dif 0.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 626, dtype: object
date 2019-06-06 00:00:00
team Haiti
score 1.0
suf_score 2.0
rank 100.0
rank_suf 15.0
rank_change -3.0
total_points 1223.0
result 0
rank_dif -85.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 627, dtype: object
date 2019-06-06 00:00:00
team Syria
score 0.0
suf_score 5.0
rank 83.0
rank_suf 21.0
rank_change 0.0
total_points 1286.0
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 628, dtype: object
date 2019-06-06 00:00:00
team Jordan
score 1.0
suf_score 5.0
rank 97.0
rank_suf 32.0
rank_change 0.0
total_points 1229.0
result 0
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 629, dtype: object
date 2019-06-06 00:00:00
team Afghanistan
score 1.0
suf_score 1.0
rank 149.0
rank_suf 120.0
rank_change 2.0
total_points 1057.0
result 2
rank_dif -29.0
points_by_rank 0.008333
team_points 1
country_classification Classe C
Name: 630, dtype: object
date 2019-06-06 00:00:00
team Netherlands
score 3.0
suf_score 1.0
rank 16.0
rank_suf 4.0
rank_change 2.0
total_points 1554.0
result 1
rank_dif -12.0
points_by_rank 0.75
team_points 3
country_classification Classe A
Name: 631, dtype: object
date 2019-06-06 00:00:00
team Guam
score 0.0
suf_score 1.0
rank 193.0
rank_suf 186.0
rank_change 1.0
total_points 907.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 632, dtype: object
date 2019-06-06 00:00:00
team Pakistan
score 0.0
suf_score 2.0
rank 200.0
rank_suf 173.0
rank_change 1.0
total_points 888.0
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 633, dtype: object
date 2019-06-06 00:00:00
team Bangladesh
score 1.0
suf_score 0.0
rank 188.0
rank_suf 184.0
rank_change -4.0
total_points 909.0
result 1
rank_dif -4.0
points_by_rank 0.016304
team_points 3
country_classification Classe D
Name: 634, dtype: object
date 2019-06-06 00:00:00
team Sri Lanka
score 0.0
suf_score 1.0
rank 202.0
rank_suf 183.0
rank_change 1.0
total_points 886.0
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 635, dtype: object
date 2019-06-07 00:00:00
team Bulgaria
score 1.0
suf_score 2.0
rank 51.0
rank_suf 48.0
rank_change 3.0
total_points 1419.0
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 636, dtype: object
date 2019-06-07 00:00:00
team Kosovo
score 1.0
suf_score 1.0
rank 127.0
rank_suf 51.0
rank_change -3.0
total_points 1124.0
result 2
rank_dif -76.0
points_by_rank 0.019608
team_points 1
country_classification Classe C
Name: 637, dtype: object
date 2019-06-07 00:00:00
team Luxembourg
score 1.0
suf_score 1.0
rank 86.0
rank_suf 132.0
rank_change -1.0
total_points 1277.0
result 2
rank_dif 46.0
points_by_rank 0.007576
team_points 1
country_classification Classe B
Name: 638, dtype: object
date 2019-06-07 00:00:00
team Serbia
score 0.0
suf_score 5.0
rank 29.0
rank_suf 27.0
rank_change -2.0
total_points 1484.0
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 639, dtype: object
date 2019-06-07 00:00:00
team Gibraltar
score 0.0
suf_score 3.0
rank 195.0
rank_suf 94.0
rank_change 1.0
total_points 900.0
result 0
rank_dif -101.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 640, dtype: object
date 2019-06-07 00:00:00
team Republic of Ireland
score 1.0
suf_score 1.0
rank 29.0
rank_suf 10.0
rank_change -5.0
total_points 1484.0
result 2
rank_dif -19.0
points_by_rank 0.1
team_points 1
country_classification Classe A
Name: 641, dtype: object
date 2019-06-07 00:00:00
team Spain
score 4.0
suf_score 1.0
rank 9.0
rank_suf 102.0
rank_change 0.0
total_points 1601.0
result 1
rank_dif 93.0
points_by_rank 0.029412
team_points 3
country_classification Classe S-
Name: 642, dtype: object
date 2019-06-07 00:00:00
team Romania
score 2.0
suf_score 2.0
rank 25.0
rank_suf 50.0
rank_change 0.0
total_points 1496.0
result 2
rank_dif 25.0
points_by_rank 0.02
team_points 1
country_classification Classe A
Name: 643, dtype: object
date 2019-06-07 00:00:00
team Malta
score 0.0
suf_score 3.0
rank 180.0
rank_suf 14.0
rank_change -2.0
total_points 943.0
result 0
rank_dif -166.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 644, dtype: object
date 2019-06-07 00:00:00
team Slovenia
score 0.0
suf_score 1.0
rank 63.0
rank_suf 34.0
rank_change 0.0
total_points 1366.0
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 645, dtype: object
date 2019-06-07 00:00:00
team Israel
score 3.0
suf_score 0.0
rank 84.0
rank_suf 133.0
rank_change -8.0
total_points 1285.0
result 1
rank_dif 49.0
points_by_rank 0.022556
team_points 3
country_classification Classe B
Name: 646, dtype: object
date 2019-06-07 00:00:00
team Zimbabwe
score 2.0
suf_score 2.0
rank 110.0
rank_suf 142.0
rank_change -3.0
total_points 1190.0
result 2
rank_dif 32.0
points_by_rank 0.007042
team_points 1
country_classification Classe C
Name: 647, dtype: object
date 2019-06-07 00:00:00
team Malawi
score 0.0
suf_score 0.0
rank 128.0
rank_suf 73.0
rank_change -1.0
total_points 1122.0
result 2
rank_dif -55.0
points_by_rank 0.013699
team_points 1
country_classification Classe C
Name: 648, dtype: object
date 2019-06-07 00:00:00
team Nicaragua
score 1.0
suf_score 5.0
rank 129.0
rank_suf 11.0
rank_change 1.0
total_points 1120.0
result 0
rank_dif -118.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 649, dtype: object
date 2019-06-07 00:00:00
team Philippines
score 0.0
suf_score 2.0
rank 124.0
rank_suf 74.0
rank_change 1.0
total_points 1135.0
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 650, dtype: object
date 2019-06-07 00:00:00
team Tahiti
score 1.0
suf_score 1.0
rank 158.0
rank_suf 165.0
rank_change 1.0
total_points 1020.0
result 2
rank_dif 7.0
points_by_rank 0.006061
team_points 1
country_classification Classe C
Name: 651, dtype: object
date 2019-06-07 00:00:00
team Madagascar
score 0.0
suf_score 1.0
rank 107.0
rank_suf 108.0
rank_change 0.0
total_points 1203.0
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 652, dtype: object
date 2019-06-07 00:00:00
team Australia
score 0.0
suf_score 1.0
rank 41.0
rank_suf 37.0
rank_change -1.0
total_points 1441.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 653, dtype: object
date 2019-06-07 00:00:00
team Iraq
score 0.0
suf_score 2.0
rank 76.0
rank_suf 28.0
rank_change -4.0
total_points 1319.0
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 654, dtype: object
date 2019-06-07 00:00:00
team Panama
score 0.0
suf_score 3.0
rank 74.0
rank_suf 6.0
rank_change -2.0
total_points 1327.0
result 0
rank_dif -68.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 655, dtype: object
date 2019-06-07 00:00:00
team Timor-Leste
score 1.0
suf_score 7.0
rank 195.0
rank_suf 168.0
rank_change -1.0
total_points 900.0
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 656, dtype: object
date 2019-06-08 00:00:00
team Northern Ireland
score 2.0
suf_score 1.0
rank 33.0
rank_suf 96.0
rank_change -3.0
total_points 1481.0
result 1
rank_dif 63.0
points_by_rank 0.03125
team_points 3
country_classification Classe A
Name: 657, dtype: object
date 2019-06-08 00:00:00
team Germany
score 2.0
suf_score 0.0
rank 13.0
rank_suf 81.0
rank_change -3.0
total_points 1570.0
result 1
rank_dif 68.0
points_by_rank 0.037037
team_points 3
country_classification Classe A
Name: 658, dtype: object
date 2019-06-08 00:00:00
team Wales
score 1.0
suf_score 2.0
rank 19.0
rank_suf 5.0
rank_change 0.0
total_points 1539.0
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 659, dtype: object
date 2019-06-08 00:00:00
team Hungary
score 3.0
suf_score 1.0
rank 51.0
rank_suf 108.0
rank_change -1.0
total_points 1419.0
result 1
rank_dif 57.0
points_by_rank 0.027778
team_points 3
country_classification Classe A
Name: 660, dtype: object
date 2019-06-08 00:00:00
team Albania
score 0.0
suf_score 1.0
rank 62.0
rank_suf 40.0
rank_change 1.0
total_points 1368.0
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 661, dtype: object
date 2019-06-08 00:00:00
team Andorra
score 0.0
suf_score 1.0
rank 134.0
rank_suf 171.0
rank_change 2.0
total_points 1099.0
result 0
rank_dif 37.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 662, dtype: object
date 2019-06-08 00:00:00
team France
score 0.0
suf_score 2.0
rank 2.0
rank_suf 39.0
rank_change 0.0
total_points 1734.0
result 0
rank_dif 37.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 663, dtype: object
date 2019-06-08 00:00:00
team San Marino
score 0.0
suf_score 9.0
rank 211.0
rank_suf 46.0
rank_change 0.0
total_points 848.0
result 0
rank_dif -165.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 664, dtype: object
date 2019-06-08 00:00:00
team Cyprus
score 1.0
suf_score 2.0
rank 89.0
rank_suf 44.0
rank_change 2.0
total_points 1276.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 665, dtype: object
date 2019-06-08 00:00:00
team Kazakhstan
score 0.0
suf_score 3.0
rank 116.0
rank_suf 1.0
rank_change -1.0
total_points 1171.0
result 0
rank_dif -115.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 666, dtype: object
date 2019-06-08 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 2.0
rank 35.0
rank_suf 60.0
rank_change 0.0
total_points 1478.0
result 0
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 667, dtype: object
date 2019-06-08 00:00:00
team Liechtenstein
score 0.0
suf_score 3.0
rank 182.0
rank_suf 106.0
rank_change 1.0
total_points 932.0
result 0
rank_dif -76.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 668, dtype: object
date 2019-06-08 00:00:00
team Italy
score 3.0
suf_score 0.0
rank 17.0
rank_suf 43.0
rank_change -1.0
total_points 1550.0
result 1
rank_dif 26.0
points_by_rank 0.069767
team_points 3
country_classification Classe A
Name: 669, dtype: object
date 2019-06-08 00:00:00
team Zambia
score 1.0
suf_score 0.0
rank 79.0
rank_suf 148.0
rank_change -3.0
total_points 1302.0
result 1
rank_dif 69.0
points_by_rank 0.02027
team_points 3
country_classification Classe B
Name: 670, dtype: object
date 2019-06-08 00:00:00
team Guinea-Bissau
score 0.0
suf_score 2.0
rank 118.0
rank_suf 122.0
rank_change 0.0
total_points 1158.0
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 671, dtype: object
date 2019-06-08 00:00:00
team Zimbabwe
score 0.0
suf_score 0.0
rank 110.0
rank_suf 42.0
rank_change -3.0
total_points 1190.0
result 2
rank_dif -68.0
points_by_rank 0.02381
team_points 1
country_classification Classe C
Name: 672, dtype: object
date 2019-06-08 00:00:00
team Solomon Islands
score 3.0
suf_score 4.0
rank 139.0
rank_suf 160.0
rank_change -4.0
total_points 1083.0
result 0
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 673, dtype: object
date 2019-06-09 00:00:00
team Honduras
score 0.0
suf_score 7.0
rank 61.0
rank_suf 3.0
rank_change -2.0
total_points 1369.0
result 0
rank_dif -58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 674, dtype: object
date 2019-06-09 00:00:00
team Zambia
score 1.0
suf_score 2.0
rank 79.0
rank_suf 54.0
rank_change -3.0
total_points 1302.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 675, dtype: object
date 2019-06-09 00:00:00
team El Salvador
score 0.0
suf_score 2.0
rank 71.0
rank_suf 26.0
rank_change -2.0
total_points 1344.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 676, dtype: object
date 2019-06-09 00:00:00
team Ecuador
score 2.0
suf_score 3.0
rank 59.0
rank_suf 18.0
rank_change 1.0
total_points 1378.0
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 677, dtype: object
date 2019-06-09 00:00:00
team Guatemala
score 0.0
suf_score 2.0
rank 143.0
rank_suf 36.0
rank_change -6.0
total_points 1074.0
result 0
rank_dif -107.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 678, dtype: object
date 2019-06-09 00:00:00
team Colombia
score 3.0
suf_score 0.0
rank 12.0
rank_suf 21.0
rank_change 0.0
total_points 1573.0
result 1
rank_dif 9.0
points_by_rank 0.142857
team_points 3
country_classification Classe A
Name: 679, dtype: object
date 2019-06-09 00:00:00
team Uganda
score 0.0
suf_score 0.0
rank 79.0
rank_suf 136.0
rank_change 2.0
total_points 1302.0
result 2
rank_dif 57.0
points_by_rank 0.007353
team_points 1
country_classification Classe B
Name: 680, dtype: object
date 2019-06-09 00:00:00
team Venezuela
score 3.0
suf_score 0.0
rank 29.0
rank_suf 24.0
rank_change -3.0
total_points 1484.0
result 1
rank_dif -5.0
points_by_rank 0.125
team_points 3
country_classification Classe A
Name: 681, dtype: object
date 2019-06-09 00:00:00
team England
score 0.0
suf_score 0.0
rank 4.0
rank_suf 8.0
rank_change -1.0
total_points 1647.0
result 2
rank_dif 4.0
points_by_rank 0.125
team_points 1
country_classification Classe S-
Name: 682, dtype: object
date 2019-06-09 00:00:00
team Netherlands
score 0.0
suf_score 1.0
rank 16.0
rank_suf 7.0
rank_change 2.0
total_points 1554.0
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 683, dtype: object
date 2019-06-10 00:00:00
team Montenegro
score 0.0
suf_score 3.0
rank 51.0
rank_suf 48.0
rank_change 5.0
total_points 1419.0
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 684, dtype: object
date 2019-06-10 00:00:00
team Kosovo
score 3.0
suf_score 2.0
rank 127.0
rank_suf 51.0
rank_change -3.0
total_points 1124.0
result 1
rank_dif -76.0
points_by_rank 0.058824
team_points 3
country_classification Classe C
Name: 685, dtype: object
date 2019-06-10 00:00:00
team Lithuania
score 1.0
suf_score 4.0
rank 132.0
rank_suf 29.0
rank_change 0.0
total_points 1102.0
result 0
rank_dif -103.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 686, dtype: object
date 2019-06-10 00:00:00
team Luxembourg
score 0.0
suf_score 1.0
rank 86.0
rank_suf 27.0
rank_change -1.0
total_points 1277.0
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 687, dtype: object
date 2019-06-10 00:00:00
team Gibraltar
score 0.0
suf_score 2.0
rank 195.0
rank_suf 29.0
rank_change 1.0
total_points 900.0
result 0
rank_dif -166.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 688, dtype: object
date 2019-06-10 00:00:00
team Georgia
score 1.0
suf_score 5.0
rank 94.0
rank_suf 10.0
rank_change 3.0
total_points 1256.0
result 0
rank_dif -84.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 689, dtype: object
date 2019-06-10 00:00:00
team Norway
score 2.0
suf_score 0.0
rank 50.0
rank_suf 102.0
rank_change 2.0
total_points 1420.0
result 1
rank_dif 52.0
points_by_rank 0.029412
team_points 3
country_classification Classe A
Name: 690, dtype: object
date 2019-06-10 00:00:00
team Romania
score 4.0
suf_score 0.0
rank 25.0
rank_suf 180.0
rank_change 0.0
total_points 1496.0
result 1
rank_dif 155.0
points_by_rank 0.016667
team_points 3
country_classification Classe A
Name: 691, dtype: object
date 2019-06-10 00:00:00
team Sweden
score 0.0
suf_score 3.0
rank 14.0
rank_suf 9.0
rank_change 0.0
total_points 1567.0
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 692, dtype: object
date 2019-06-10 00:00:00
team Israel
score 0.0
suf_score 4.0
rank 84.0
rank_suf 20.0
rank_change -8.0
total_points 1285.0
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 693, dtype: object
date 2019-06-10 00:00:00
team Slovenia
score 5.0
suf_score 0.0
rank 63.0
rank_suf 133.0
rank_change 0.0
total_points 1366.0
result 1
rank_dif 70.0
points_by_rank 0.022556
team_points 3
country_classification Classe B
Name: 694, dtype: object
date 2019-06-10 00:00:00
team Fiji
score 0.0
suf_score 0.0
rank 165.0
rank_suf 166.0
rank_change -4.0
total_points 992.0
result 2
rank_dif 1.0
points_by_rank 0.006024
team_points 1
country_classification Classe D
Name: 695, dtype: object
date 2019-06-11 00:00:00
team Estonia
score 0.0
suf_score 8.0
rank 96.0
rank_suf 13.0
rank_change 0.0
total_points 1240.0
result 0
rank_dif -83.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 696, dtype: object
date 2019-06-11 00:00:00
team Northern Ireland
score 1.0
suf_score 0.0
rank 33.0
rank_suf 81.0
rank_change -3.0
total_points 1481.0
result 1
rank_dif 48.0
points_by_rank 0.037037
team_points 3
country_classification Classe A
Name: 697, dtype: object
date 2019-06-11 00:00:00
team Slovakia
score 5.0
suf_score 1.0
rank 32.0
rank_suf 108.0
rank_change 3.0
total_points 1482.0
result 1
rank_dif 76.0
points_by_rank 0.027778
team_points 3
country_classification Classe A
Name: 698, dtype: object
date 2019-06-11 00:00:00
team Wales
score 0.0
suf_score 1.0
rank 19.0
rank_suf 51.0
rank_change 0.0
total_points 1539.0
result 0
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 699, dtype: object
date 2019-06-11 00:00:00
team Turkey
score 1.0
suf_score 2.0
rank 39.0
rank_suf 40.0
rank_change -2.0
total_points 1457.0
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 700, dtype: object
date 2019-06-11 00:00:00
team Moldova
score 0.0
suf_score 2.0
rank 171.0
rank_suf 62.0
rank_change 1.0
total_points 974.0
result 0
rank_dif -109.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 701, dtype: object
date 2019-06-11 00:00:00
team France
score 4.0
suf_score 0.0
rank 2.0
rank_suf 134.0
rank_change 0.0
total_points 1734.0
result 1
rank_dif 132.0
points_by_rank 0.022388
team_points 3
country_classification Classe S
Name: 702, dtype: object
date 2019-06-11 00:00:00
team San Marino
score 0.0
suf_score 4.0
rank 211.0
rank_suf 116.0
rank_change 0.0
total_points 848.0
result 0
rank_dif -95.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 703, dtype: object
date 2019-06-11 00:00:00
team Scotland
score 0.0
suf_score 3.0
rank 44.0
rank_suf 1.0
rank_change 4.0
total_points 1430.0
result 0
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 704, dtype: object
date 2019-06-11 00:00:00
team Cyprus
score 0.0
suf_score 1.0
rank 89.0
rank_suf 46.0
rank_change 2.0
total_points 1276.0
result 0
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 705, dtype: object
date 2019-06-11 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 2.0
rank 35.0
rank_suf 17.0
rank_change 0.0
total_points 1478.0
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 706, dtype: object
date 2019-06-11 00:00:00
team Finland
score 2.0
suf_score 0.0
rank 60.0
rank_suf 182.0
rank_change 1.0
total_points 1375.0
result 1
rank_dif 122.0
points_by_rank 0.016484
team_points 3
country_classification Classe B
Name: 707, dtype: object
date 2019-06-11 00:00:00
team Armenia
score 3.0
suf_score 2.0
rank 106.0
rank_suf 43.0
rank_change 5.0
total_points 1206.0
result 1
rank_dif -63.0
points_by_rank 0.069767
team_points 3
country_classification Classe B
Name: 708, dtype: object
date 2019-06-11 00:00:00
team Burundi
score 1.0
suf_score 1.0
rank 136.0
rank_suf 70.0
rank_change -2.0
total_points 1089.0
result 2
rank_dif -66.0
points_by_rank 0.014286
team_points 1
country_classification Classe C
Name: 709, dtype: object
date 2019-06-11 00:00:00
team Guinea
score 0.0
suf_score 1.0
rank 68.0
rank_suf 91.0
rank_change 0.0
total_points 1350.0
result 0
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 710, dtype: object
date 2019-06-11 00:00:00
team Tajikistan
score 0.0
suf_score 1.0
rank 120.0
rank_suf 74.0
rank_change 0.0
total_points 1155.0
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 711, dtype: object
date 2019-06-11 00:00:00
team Tunisia
score 2.0
suf_score 1.0
rank 28.0
rank_suf 5.0
rank_change 0.0
total_points 1491.0
result 1
rank_dif -23.0
points_by_rank 0.6
team_points 3
country_classification Classe A
Name: 712, dtype: object
date 2019-06-11 00:00:00
team Indonesia
score 1.0
suf_score 4.0
rank 159.0
rank_suf 97.0
rank_change 0.0
total_points 1008.0
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 713, dtype: object
date 2019-06-11 00:00:00
team Iran
score 1.0
suf_score 1.0
rank 21.0
rank_suf 37.0
rank_change -1.0
total_points 1516.0
result 2
rank_dif 16.0
points_by_rank 0.027027
team_points 1
country_classification Classe A
Name: 714, dtype: object
date 2019-06-11 00:00:00
team Myanmar
score 2.0
suf_score 1.0
rank 140.0
rank_suf 160.0
rank_change 2.0
total_points 1080.0
result 1
rank_dif 20.0
points_by_rank 0.01875
team_points 3
country_classification Classe C
Name: 715, dtype: object
date 2019-06-11 00:00:00
team Syria
score 0.0
suf_score 2.0
rank 83.0
rank_suf 85.0
rank_change 0.0
total_points 1286.0
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 716, dtype: object
date 2019-06-11 00:00:00
team Laos
score 0.0
suf_score 0.0
rank 184.0
rank_suf 188.0
rank_change 0.0
total_points 923.0
result 2
rank_dif 4.0
points_by_rank 0.005319
team_points 1
country_classification Classe D
Name: 717, dtype: object
date 2019-06-11 00:00:00
team Bhutan
score 0.0
suf_score 5.0
rank 186.0
rank_suf 193.0
rank_change 0.0
total_points 917.0
result 0
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 718, dtype: object
date 2019-06-11 00:00:00
team Cambodia
score 2.0
suf_score 1.0
rank 173.0
rank_suf 200.0
rank_change 1.0
total_points 967.0
result 1
rank_dif 27.0
points_by_rank 0.015
team_points 3
country_classification Classe D
Name: 719, dtype: object
date 2019-06-11 00:00:00
team Macau
score 0.0
suf_score 3.0
rank 183.0
rank_suf 202.0
rank_change 0.0
total_points 925.0
result 0
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 720, dtype: object
date 2019-06-11 00:00:00
team Timor-Leste
score 1.0
suf_score 5.0
rank 195.0
rank_suf 168.0
rank_change -1.0
total_points 900.0
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 721, dtype: object
date 2019-06-12 00:00:00
team Gambia
score 1.0
suf_score 0.0
rank 163.0
rank_suf 45.0
rank_change -3.0
total_points 994.0
result 1
rank_dif -118.0
points_by_rank 0.066667
team_points 3
country_classification Classe D
Name: 722, dtype: object
date 2019-06-13 00:00:00
team Tanzania
score 0.0
suf_score 1.0
rank 131.0
rank_suf 57.0
rank_change -6.0
total_points 1105.0
result 0
rank_dif -74.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 723, dtype: object
date 2019-06-14 00:00:00
team Mali
score 1.0
suf_score 1.0
rank 62.0
rank_suf 51.0
rank_change -3.0
total_points 1365.0
result 2
rank_dif -11.0
points_by_rank 0.019608
team_points 1
country_classification Classe B
Name: 724, dtype: object
date 2019-06-14 00:00:00
team Mauritania
score 3.0
suf_score 1.0
rank 103.0
rank_suf 108.0
rank_change 0.0
total_points 1210.0
result 1
rank_dif 5.0
points_by_rank 0.027778
team_points 3
country_classification Classe B
Name: 725, dtype: object
date 2019-06-14 00:00:00
team Bolivia
score 0.0
suf_score 3.0
rank 62.0
rank_suf 3.0
rank_change -1.0
total_points 1365.0
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 726, dtype: object
date 2019-06-15 00:00:00
team Peru
score 0.0
suf_score 0.0
rank 21.0
rank_suf 33.0
rank_change 0.0
total_points 1516.0
result 2
rank_dif 12.0
points_by_rank 0.030303
team_points 1
country_classification Classe A
Name: 727, dtype: object
date 2019-06-15 00:00:00
team Colombia
score 2.0
suf_score 0.0
rank 13.0
rank_suf 11.0
rank_change 1.0
total_points 1580.0
result 1
rank_dif -2.0
points_by_rank 0.272727
team_points 3
country_classification Classe A
Name: 728, dtype: object
date 2019-06-15 00:00:00
team Cuba
score 0.0
suf_score 7.0
rank 175.0
rank_suf 18.0
rank_change 1.0
total_points 961.0
result 0
rank_dif -157.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 729, dtype: object
date 2019-06-15 00:00:00
team South Africa
score 0.0
suf_score 0.0
rank 72.0
rank_suf 50.0
rank_change -1.0
total_points 1335.0
result 2
rank_dif -22.0
points_by_rank 0.02
team_points 1
country_classification Classe B
Name: 730, dtype: object
date 2019-06-15 00:00:00
team Vanuatu
score 0.0
suf_score 6.0
rank 163.0
rank_suf 160.0
rank_change -3.0
total_points 997.0
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 731, dtype: object
date 2019-06-15 00:00:00
team Zimbabwe
score 1.0
suf_score 1.0
rank 109.0
rank_suf 131.0
rank_change -1.0
total_points 1192.0
result 2
rank_dif 22.0
points_by_rank 0.007634
team_points 1
country_classification Classe C
Name: 732, dtype: object
date 2019-06-16 00:00:00
team Qatar
score 2.0
suf_score 2.0
rank 55.0
rank_suf 36.0
rank_change 0.0
total_points 1396.0
result 2
rank_dif -19.0
points_by_rank 0.027778
team_points 1
country_classification Classe B
Name: 733, dtype: object
date 2019-06-16 00:00:00
team Ecuador
score 0.0
suf_score 4.0
rank 60.0
rank_suf 8.0
rank_change 1.0
total_points 1375.0
result 0
rank_dif -52.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 734, dtype: object
date 2019-06-16 00:00:00
team Bermuda
score 1.0
suf_score 2.0
rank 174.0
rank_suf 101.0
rank_change -1.0
total_points 964.0
result 0
rank_dif -73.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 735, dtype: object
date 2019-06-16 00:00:00
team Nicaragua
score 0.0
suf_score 4.0
rank 129.0
rank_suf 39.0
rank_change 0.0
total_points 1118.0
result 0
rank_dif -90.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 736, dtype: object
date 2019-06-16 00:00:00
team Mali
score 2.0
suf_score 3.0
rank 62.0
rank_suf 68.0
rank_change -3.0
total_points 1365.0
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 737, dtype: object
date 2019-06-16 00:00:00
team Guinea
score 1.0
suf_score 3.0
rank 71.0
rank_suf 58.0
rank_change 3.0
total_points 1336.0
result 0
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 738, dtype: object
date 2019-06-16 00:00:00
team Zambia
score 3.0
suf_score 2.0
rank 81.0
rank_suf 47.0
rank_change 2.0
total_points 1298.0
result 1
rank_dif -34.0
points_by_rank 0.06383
team_points 3
country_classification Classe B
Name: 739, dtype: object
date 2019-06-16 00:00:00
team Nigeria
score 0.0
suf_score 1.0
rank 45.0
rank_suf 22.0
rank_change 3.0
total_points 1433.0
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 740, dtype: object
date 2019-06-17 00:00:00
team Chile
score 4.0
suf_score 0.0
rank 16.0
rank_suf 28.0
rank_change 1.0
total_points 1561.0
result 1
rank_dif 12.0
points_by_rank 0.107143
team_points 3
country_classification Classe A
Name: 741, dtype: object
date 2019-06-17 00:00:00
team El Salvador
score 1.0
suf_score 0.0
rank 69.0
rank_suf 100.0
rank_change -2.0
total_points 1342.0
result 1
rank_dif 31.0
points_by_rank 0.03
team_points 3
country_classification Classe B
Name: 742, dtype: object
date 2019-06-17 00:00:00
team Honduras
score 2.0
suf_score 3.0
rank 61.0
rank_suf 54.0
rank_change 0.0
total_points 1368.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 743, dtype: object
date 2019-06-17 00:00:00
team Burundi
score 1.0
suf_score 2.0
rank 134.0
rank_suf 25.0
rank_change -2.0
total_points 1092.0
result 0
rank_dif -109.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 744, dtype: object
date 2019-06-18 00:00:00
team Peru
score 3.0
suf_score 1.0
rank 21.0
rank_suf 62.0
rank_change 0.0
total_points 1516.0
result 1
rank_dif 41.0
points_by_rank 0.048387
team_points 3
country_classification Classe A
Name: 745, dtype: object
date 2019-06-18 00:00:00
team Venezuela
score 0.0
suf_score 0.0
rank 33.0
rank_suf 3.0
rank_change 4.0
total_points 1485.0
result 2
rank_dif -30.0
points_by_rank 0.333333
team_points 1
country_classification Classe A
Name: 746, dtype: object
date 2019-06-18 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 2.0
rank 92.0
rank_suf 75.0
rank_change -1.0
total_points 1260.0
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 747, dtype: object
date 2019-06-18 00:00:00
team Guyana
score 0.0
suf_score 4.0
rank 177.0
rank_suf 30.0
rank_change 2.0
total_points 954.0
result 0
rank_dif -147.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 748, dtype: object
date 2019-06-18 00:00:00
team Mauritania
score 1.0
suf_score 3.0
rank 103.0
rank_suf 88.0
rank_change 0.0
total_points 1210.0
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 749, dtype: object
date 2019-06-19 00:00:00
team Qatar
score 0.0
suf_score 1.0
rank 55.0
rank_suf 13.0
rank_change 0.0
total_points 1396.0
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 750, dtype: object
date 2019-06-19 00:00:00
team Paraguay
score 1.0
suf_score 1.0
rank 36.0
rank_suf 11.0
rank_change 0.0
total_points 1468.0
result 2
rank_dif -25.0
points_by_rank 0.090909
team_points 1
country_classification Classe A
Name: 751, dtype: object
date 2019-06-19 00:00:00
team Canada
score 1.0
suf_score 3.0
rank 78.0
rank_suf 18.0
rank_change 0.0
total_points 1314.0
result 0
rank_dif -60.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 752, dtype: object
date 2019-06-20 00:00:00
team Japan
score 2.0
suf_score 2.0
rank 28.0
rank_suf 8.0
rank_change 2.0
total_points 1496.0
result 2
rank_dif -20.0
points_by_rank 0.125
team_points 1
country_classification Classe A
Name: 753, dtype: object
date 2019-06-20 00:00:00
team Haiti
score 2.0
suf_score 0.0
rank 101.0
rank_suf 129.0
rank_change 1.0
total_points 1219.0
result 1
rank_dif 28.0
points_by_rank 0.023256
team_points 3
country_classification Classe B
Name: 754, dtype: object
date 2019-06-20 00:00:00
team Bermuda
score 1.0
suf_score 2.0
rank 174.0
rank_suf 39.0
rank_change -1.0
total_points 964.0
result 0
rank_dif -135.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 755, dtype: object
date 2019-06-21 00:00:00
team Zimbabwe
score 0.0
suf_score 1.0
rank 109.0
rank_suf 58.0
rank_change -1.0
total_points 1192.0
result 0
rank_dif -51.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 756, dtype: object
date 2019-06-21 00:00:00
team Chile
score 2.0
suf_score 1.0
rank 16.0
rank_suf 60.0
rank_change 1.0
total_points 1561.0
result 1
rank_dif 44.0
points_by_rank 0.05
team_points 3
country_classification Classe A
Name: 757, dtype: object
date 2019-06-21 00:00:00
team Jamaica
score 0.0
suf_score 0.0
rank 54.0
rank_suf 69.0
rank_change -2.0
total_points 1397.0
result 2
rank_dif 15.0
points_by_rank 0.014493
team_points 1
country_classification Classe B
Name: 758, dtype: object
date 2019-06-21 00:00:00
team Curaçao
score 1.0
suf_score 0.0
rank 100.0
rank_suf 61.0
rank_change 0.0
total_points 1450.0
result 1
rank_dif -39.0
points_by_rank 0.04918
team_points 3
country_classification Classe A
Name: 759, dtype: object
date 2019-06-22 00:00:00
team Burundi
score 0.0
suf_score 1.0
rank 134.0
rank_suf 45.0
rank_change -2.0
total_points 1092.0
result 0
rank_dif -89.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 760, dtype: object
date 2019-06-22 00:00:00
team Madagascar
score 2.0
suf_score 2.0
rank 108.0
rank_suf 71.0
rank_change 1.0
total_points 1198.0
result 2
rank_dif -37.0
points_by_rank 0.014085
team_points 1
country_classification Classe C
Name: 761, dtype: object
date 2019-06-22 00:00:00
team Venezuela
score 3.0
suf_score 1.0
rank 33.0
rank_suf 62.0
rank_change 4.0
total_points 1485.0
result 1
rank_dif 29.0
points_by_rank 0.048387
team_points 3
country_classification Classe A
Name: 762, dtype: object
date 2019-06-22 00:00:00
team Panama
score 4.0
suf_score 2.0
rank 75.0
rank_suf 177.0
rank_change 1.0
total_points 1322.0
result 1
rank_dif 102.0
points_by_rank 0.016949
team_points 3
country_classification Classe B
Name: 763, dtype: object
date 2019-06-22 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 6.0
rank 92.0
rank_suf 30.0
rank_change -1.0
total_points 1260.0
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 764, dtype: object
date 2019-06-22 00:00:00
team Peru
score 0.0
suf_score 5.0
rank 21.0
rank_suf 3.0
rank_change 0.0
total_points 1516.0
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 765, dtype: object
date 2019-06-23 00:00:00
team Tanzania
score 0.0
suf_score 2.0
rank 131.0
rank_suf 22.0
rank_change 0.0
total_points 1105.0
result 0
rank_dif -109.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 766, dtype: object
date 2019-06-23 00:00:00
team Kenya
score 0.0
suf_score 2.0
rank 105.0
rank_suf 68.0
rank_change -3.0
total_points 1207.0
result 0
rank_dif -37.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 767, dtype: object
date 2019-06-23 00:00:00
team Namibia
score 0.0
suf_score 1.0
rank 113.0
rank_suf 47.0
rank_change 0.0
total_points 1182.0
result 0
rank_dif -66.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 768, dtype: object
date 2019-06-23 00:00:00
team Paraguay
score 0.0
suf_score 1.0
rank 36.0
rank_suf 13.0
rank_change 0.0
total_points 1468.0
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 769, dtype: object
date 2019-06-23 00:00:00
team Argentina
score 2.0
suf_score 0.0
rank 11.0
rank_suf 55.0
rank_change 0.0
total_points 1582.0
result 1
rank_dif 44.0
points_by_rank 0.054545
team_points 3
country_classification Classe A
Name: 770, dtype: object
date 2019-06-23 00:00:00
team Cuba
score 0.0
suf_score 7.0
rank 175.0
rank_suf 78.0
rank_change 1.0
total_points 961.0
result 0
rank_dif -97.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 771, dtype: object
date 2019-06-24 00:00:00
team Angola
score 1.0
suf_score 1.0
rank 123.0
rank_suf 25.0
rank_change 1.0
total_points 1142.0
result 2
rank_dif -98.0
points_by_rank 0.04
team_points 1
country_classification Classe C
Name: 772, dtype: object
date 2019-06-24 00:00:00
team Mauritania
score 1.0
suf_score 4.0
rank 103.0
rank_suf 62.0
rank_change 0.0
total_points 1210.0
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 773, dtype: object
date 2019-06-24 00:00:00
team Uruguay
score 1.0
suf_score 0.0
rank 8.0
rank_suf 16.0
rank_change 2.0
total_points 1615.0
result 1
rank_dif 8.0
points_by_rank 0.1875
team_points 3
country_classification Classe S-
Name: 774, dtype: object
date 2019-06-24 00:00:00
team Japan
score 1.0
suf_score 1.0
rank 28.0
rank_suf 60.0
rank_change 2.0
total_points 1496.0
result 2
rank_dif 32.0
points_by_rank 0.016667
team_points 1
country_classification Classe A
Name: 775, dtype: object
date 2019-06-24 00:00:00
team Nicaragua
score 0.0
suf_score 2.0
rank 129.0
rank_suf 174.0
rank_change 0.0
total_points 1118.0
result 0
rank_dif 45.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 776, dtype: object
date 2019-06-24 00:00:00
team Costa Rica
score 1.0
suf_score 2.0
rank 39.0
rank_suf 101.0
rank_change 1.0
total_points 1453.0
result 0
rank_dif 62.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 777, dtype: object
date 2019-06-25 00:00:00
team Guinea-Bissau
score 0.0
suf_score 2.0
rank 118.0
rank_suf 51.0
rank_change 0.0
total_points 1158.0
result 0
rank_dif -67.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 778, dtype: object
date 2019-06-25 00:00:00
team Benin
score 2.0
suf_score 2.0
rank 88.0
rank_suf 50.0
rank_change -3.0
total_points 1273.0
result 2
rank_dif -38.0
points_by_rank 0.02
team_points 1
country_classification Classe B
Name: 779, dtype: object
date 2019-06-25 00:00:00
team Curaçao
score 1.0
suf_score 1.0
rank 100.0
rank_suf 54.0
rank_change 0.0
total_points 1450.0
result 2
rank_dif -46.0
points_by_rank 0.018519
team_points 1
country_classification Classe A
Name: 780, dtype: object
date 2019-06-25 00:00:00
team El Salvador
score 0.0
suf_score 4.0
rank 69.0
rank_suf 61.0
rank_change -2.0
total_points 1342.0
result 0
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 781, dtype: object
date 2019-06-26 00:00:00
team Zimbabwe
score 1.0
suf_score 1.0
rank 109.0
rank_suf 80.0
rank_change -1.0
total_points 1192.0
result 2
rank_dif -29.0
points_by_rank 0.0125
team_points 1
country_classification Classe C
Name: 782, dtype: object
date 2019-06-26 00:00:00
team Guinea
score 0.0
suf_score 1.0
rank 71.0
rank_suf 45.0
rank_change 3.0
total_points 1336.0
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 783, dtype: object
date 2019-06-26 00:00:00
team Guyana
score 1.0
suf_score 1.0
rank 177.0
rank_suf 92.0
rank_change 2.0
total_points 954.0
result 2
rank_dif -85.0
points_by_rank 0.01087
team_points 1
country_classification Classe D
Name: 784, dtype: object
date 2019-06-26 00:00:00
team Panama
score 0.0
suf_score 1.0
rank 75.0
rank_suf 30.0
rank_change 1.0
total_points 1322.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 785, dtype: object
date 2019-06-27 00:00:00
team Burundi
score 0.0
suf_score 1.0
rank 134.0
rank_suf 108.0
rank_change -2.0
total_points 1092.0
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 786, dtype: object
date 2019-06-27 00:00:00
team Algeria
score 1.0
suf_score 0.0
rank 68.0
rank_suf 22.0
rank_change -2.0
total_points 1346.0
result 1
rank_dif -46.0
points_by_rank 0.136364
team_points 3
country_classification Classe B
Name: 787, dtype: object
date 2019-06-27 00:00:00
team Tanzania
score 2.0
suf_score 3.0
rank 131.0
rank_suf 105.0
rank_change 0.0
total_points 1105.0
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 788, dtype: object
date 2019-06-27 00:00:00
team Paraguay
score 0.0
suf_score 0.0
rank 36.0
rank_suf 3.0
rank_change 0.0
total_points 1468.0
result 2
rank_dif -33.0
points_by_rank 0.333333
team_points 1
country_classification Classe A
Name: 789, dtype: object
date 2019-06-28 00:00:00
team Namibia
score 0.0
suf_score 1.0
rank 113.0
rank_suf 72.0
rank_change 0.0
total_points 1182.0
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 790, dtype: object
date 2019-06-28 00:00:00
team Mali
score 1.0
suf_score 1.0
rank 62.0
rank_suf 25.0
rank_change -3.0
total_points 1365.0
result 2
rank_dif -37.0
points_by_rank 0.04
team_points 1
country_classification Classe B
Name: 791, dtype: object
date 2019-06-28 00:00:00
team Chile
score 0.0
suf_score 0.0
rank 16.0
rank_suf 13.0
rank_change 1.0
total_points 1561.0
result 2
rank_dif -3.0
points_by_rank 0.076923
team_points 1
country_classification Classe A
Name: 792, dtype: object
date 2019-06-28 00:00:00
team Argentina
score 2.0
suf_score 0.0
rank 11.0
rank_suf 33.0
rank_change 0.0
total_points 1582.0
result 1
rank_dif 22.0
points_by_rank 0.090909
team_points 3
country_classification Classe A
Name: 793, dtype: object
date 2019-06-29 00:00:00
team Angola
score 0.0
suf_score 0.0
rank 123.0
rank_suf 103.0
rank_change 1.0
total_points 1142.0
result 2
rank_dif -20.0
points_by_rank 0.009709
team_points 1
country_classification Classe C
Name: 794, dtype: object
date 2019-06-29 00:00:00
team Ghana
score 0.0
suf_score 0.0
rank 50.0
rank_suf 51.0
rank_change 1.0
total_points 1423.0
result 2
rank_dif 1.0
points_by_rank 0.019608
team_points 1
country_classification Classe A
Name: 795, dtype: object
date 2019-06-29 00:00:00
team Guinea-Bissau
score 0.0
suf_score 0.0
rank 118.0
rank_suf 88.0
rank_change 0.0
total_points 1158.0
result 2
rank_dif -30.0
points_by_rank 0.011364
team_points 1
country_classification Classe C
Name: 796, dtype: object
date 2019-06-29 00:00:00
team Peru
score 0.0
suf_score 0.0
rank 21.0
rank_suf 8.0
rank_change 0.0
total_points 1516.0
result 2
rank_dif -13.0
points_by_rank 0.125
team_points 1
country_classification Classe A
Name: 797, dtype: object
date 2019-06-29 00:00:00
team Canada
score 2.0
suf_score 3.0
rank 78.0
rank_suf 101.0
rank_change 0.0
total_points 1314.0
result 0
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 798, dtype: object
date 2019-06-29 00:00:00
team Costa Rica
score 1.0
suf_score 1.0
rank 39.0
rank_suf 18.0
rank_change 1.0
total_points 1453.0
result 2
rank_dif -21.0
points_by_rank 0.055556
team_points 1
country_classification Classe A
Name: 799, dtype: object
date 2019-06-30 00:00:00
team Uganda
score 0.0
suf_score 2.0
rank 80.0
rank_suf 58.0
rank_change 1.0
total_points 1299.0
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 800, dtype: object
date 2019-06-30 00:00:00
team Guinea
score 2.0
suf_score 0.0
rank 71.0
rank_suf 134.0
rank_change 3.0
total_points 1336.0
result 1
rank_dif 63.0
points_by_rank 0.022388
team_points 3
country_classification Classe B
Name: 801, dtype: object
date 2019-06-30 00:00:00
team Nigeria
score 0.0
suf_score 2.0
rank 45.0
rank_suf 108.0
rank_change 3.0
total_points 1433.0
result 0
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 802, dtype: object
date 2019-06-30 00:00:00
team Panama
score 0.0
suf_score 1.0
rank 75.0
rank_suf 54.0
rank_change 1.0
total_points 1322.0
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 803, dtype: object
date 2019-06-30 00:00:00
team Curaçao
score 0.0
suf_score 1.0
rank 100.0
rank_suf 30.0
rank_change 0.0
total_points 1450.0
result 0
rank_dif -70.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 804, dtype: object
date 2019-07-01 00:00:00
team Senegal
score 3.0
suf_score 0.0
rank 22.0
rank_suf 105.0
rank_change -1.0
total_points 1515.0
result 1
rank_dif 83.0
points_by_rank 0.028571
team_points 3
country_classification Classe A
Name: 805, dtype: object
date 2019-07-01 00:00:00
team Algeria
score 3.0
suf_score 0.0
rank 68.0
rank_suf 131.0
rank_change -2.0
total_points 1346.0
result 1
rank_dif 63.0
points_by_rank 0.022901
team_points 3
country_classification Classe B
Name: 806, dtype: object
date 2019-07-01 00:00:00
team Morocco
score 1.0
suf_score 0.0
rank 47.0
rank_suf 72.0
rank_change 2.0
total_points 1429.0
result 1
rank_dif 25.0
points_by_rank 0.041667
team_points 3
country_classification Classe A
Name: 807, dtype: object
date 2019-07-02 00:00:00
team Mali
score 1.0
suf_score 0.0
rank 62.0
rank_suf 123.0
rank_change -3.0
total_points 1365.0
result 1
rank_dif 61.0
points_by_rank 0.02439
team_points 3
country_classification Classe B
Name: 808, dtype: object
date 2019-07-02 00:00:00
team Tunisia
score 0.0
suf_score 0.0
rank 25.0
rank_suf 103.0
rank_change -3.0
total_points 1501.0
result 2
rank_dif 78.0
points_by_rank 0.009709
team_points 1
country_classification Classe A
Name: 809, dtype: object
date 2019-07-02 00:00:00
team Cameroon
score 0.0
suf_score 0.0
rank 51.0
rank_suf 88.0
rank_change -3.0
total_points 1404.0
result 2
rank_dif 37.0
points_by_rank 0.011364
team_points 1
country_classification Classe A
Name: 810, dtype: object
date 2019-07-02 00:00:00
team Ghana
score 2.0
suf_score 0.0
rank 50.0
rank_suf 118.0
rank_change 1.0
total_points 1423.0
result 1
rank_dif 68.0
points_by_rank 0.025424
team_points 3
country_classification Classe A
Name: 811, dtype: object
date 2019-07-02 00:00:00
team Argentina
score 0.0
suf_score 2.0
rank 11.0
rank_suf 3.0
rank_change 0.0
total_points 1582.0
result 0
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 812, dtype: object
date 2019-07-02 00:00:00
team Mexico
score 1.0
suf_score 0.0
rank 18.0
rank_suf 101.0
rank_change 0.0
total_points 1557.0
result 1
rank_dif 83.0
points_by_rank 0.029703
team_points 3
country_classification Classe A
Name: 813, dtype: object
date 2019-07-03 00:00:00
team Peru
score 3.0
suf_score 0.0
rank 21.0
rank_suf 16.0
rank_change 0.0
total_points 1516.0
result 1
rank_dif -5.0
points_by_rank 0.1875
team_points 3
country_classification Classe A
Name: 814, dtype: object
date 2019-07-03 00:00:00
team Jamaica
score 1.0
suf_score 3.0
rank 54.0
rank_suf 30.0
rank_change -2.0
total_points 1397.0
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 815, dtype: object
date 2019-07-05 00:00:00
team Benin
score 1.0
suf_score 1.0
rank 88.0
rank_suf 47.0
rank_change -3.0
total_points 1273.0
result 2
rank_dif -41.0
points_by_rank 0.021277
team_points 1
country_classification Classe B
Name: 816, dtype: object
date 2019-07-05 00:00:00
team Senegal
score 1.0
suf_score 0.0
rank 22.0
rank_suf 80.0
rank_change -1.0
total_points 1515.0
result 1
rank_dif 58.0
points_by_rank 0.0375
team_points 3
country_classification Classe A
Name: 817, dtype: object
date 2019-07-06 00:00:00
team South Africa
score 1.0
suf_score 0.0
rank 72.0
rank_suf 58.0
rank_change -1.0
total_points 1335.0
result 1
rank_dif -14.0
points_by_rank 0.051724
team_points 3
country_classification Classe B
Name: 818, dtype: object
date 2019-07-06 00:00:00
team Cameroon
score 2.0
suf_score 3.0
rank 51.0
rank_suf 45.0
rank_change -3.0
total_points 1404.0
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 819, dtype: object
date 2019-07-06 00:00:00
team Chile
score 1.0
suf_score 2.0
rank 16.0
rank_suf 11.0
rank_change 1.0
total_points 1561.0
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 820, dtype: object
date 2019-07-07 00:00:00
team Guinea
score 0.0
suf_score 3.0
rank 71.0
rank_suf 68.0
rank_change 3.0
total_points 1336.0
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 821, dtype: object
date 2019-07-07 00:00:00
team Peru
score 1.0
suf_score 3.0
rank 21.0
rank_suf 3.0
rank_change 0.0
total_points 1516.0
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 822, dtype: object
date 2019-07-07 00:00:00
team Mexico
score 1.0
suf_score 0.0
rank 18.0
rank_suf 30.0
rank_change 0.0
total_points 1557.0
result 1
rank_dif 12.0
points_by_rank 0.1
team_points 3
country_classification Classe A
Name: 823, dtype: object
date 2019-07-07 00:00:00
team Tajikistan
score 4.0
suf_score 2.0
rank 120.0
rank_suf 101.0
rank_change 0.0
total_points 1151.0
result 1
rank_dif -19.0
points_by_rank 0.029703
team_points 3
country_classification Classe C
Name: 824, dtype: object
date 2019-07-08 00:00:00
team Tunisia
score 1.0
suf_score 1.0
rank 25.0
rank_suf 50.0
rank_change -3.0
total_points 1501.0
result 2
rank_dif 25.0
points_by_rank 0.02
team_points 1
country_classification Classe A
Name: 825, dtype: object
date 2019-07-08 00:00:00
team Papua New Guinea
score 6.0
suf_score 0.0
rank 171.0
rank_suf 195.0
rank_change 2.0
total_points 984.0
result 1
rank_dif 24.0
points_by_rank 0.015385
team_points 3
country_classification Classe D
Name: 826, dtype: object
date 2019-07-08 00:00:00
team New Caledonia
score 5.0
suf_score 0.0
rank 155.0
rank_suf 190.0
rank_change 0.0
total_points 1026.0
result 1
rank_dif 35.0
points_by_rank 0.015789
team_points 3
country_classification Classe C
Name: 827, dtype: object
date 2019-07-08 00:00:00
team Fiji
score 2.0
suf_score 1.0
rank 167.0
rank_suf 158.0
rank_change 2.0
total_points 992.0
result 1
rank_dif -9.0
points_by_rank 0.018987
team_points 3
country_classification Classe D
Name: 828, dtype: object
date 2019-07-10 00:00:00
team South Africa
score 1.0
suf_score 2.0
rank 72.0
rank_suf 45.0
rank_change -1.0
total_points 1335.0
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 829, dtype: object
date 2019-07-10 00:00:00
team Benin
score 0.0
suf_score 1.0
rank 88.0
rank_suf 22.0
rank_change -3.0
total_points 1273.0
result 0
rank_dif -66.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 830, dtype: object
date 2019-07-10 00:00:00
team Vanuatu
score 0.0
suf_score 2.0
rank 163.0
rank_suf 171.0
rank_change -3.0
total_points 997.0
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 831, dtype: object
date 2019-07-10 00:00:00
team Fiji
score 9.0
suf_score 0.0
rank 167.0
rank_suf 190.0
rank_change 2.0
total_points 992.0
result 1
rank_dif 23.0
points_by_rank 0.015789
team_points 3
country_classification Classe D
Name: 832, dtype: object
date 2019-07-10 00:00:00
team New Caledonia
score 2.0
suf_score 0.0
rank 155.0
rank_suf 140.0
rank_change 0.0
total_points 1026.0
result 1
rank_dif -15.0
points_by_rank 0.021429
team_points 3
country_classification Classe C
Name: 833, dtype: object
date 2019-07-10 00:00:00
team Syria
score 0.0
suf_score 2.0
rank 85.0
rank_suf 120.0
rank_change 2.0
total_points 1278.0
result 0
rank_dif 35.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 834, dtype: object
date 2019-07-11 00:00:00
team Tunisia
score 3.0
suf_score 0.0
rank 25.0
rank_suf 108.0
rank_change -3.0
total_points 1501.0
result 1
rank_dif 83.0
points_by_rank 0.027778
team_points 3
country_classification Classe A
Name: 835, dtype: object
date 2019-07-12 00:00:00
team Tonga
score 0.0
suf_score 2.0
rank 202.0
rank_suf 195.0
rank_change -1.0
total_points 868.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 836, dtype: object
date 2019-07-12 00:00:00
team Tahiti
score 3.0
suf_score 0.0
rank 158.0
rank_suf 140.0
rank_change 0.0
total_points 1015.0
result 1
rank_dif -18.0
points_by_rank 0.021429
team_points 3
country_classification Classe C
Name: 837, dtype: object
date 2019-07-12 00:00:00
team Fiji
score 0.0
suf_score 1.0
rank 167.0
rank_suf 155.0
rank_change 2.0
total_points 992.0
result 0
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 838, dtype: object
date 2019-07-14 00:00:00
team Nigeria
score 1.0
suf_score 2.0
rank 45.0
rank_suf 68.0
rank_change 3.0
total_points 1433.0
result 0
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 839, dtype: object
date 2019-07-14 00:00:00
team Tunisia
score 0.0
suf_score 1.0
rank 25.0
rank_suf 22.0
rank_change -3.0
total_points 1501.0
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 840, dtype: object
date 2019-07-15 00:00:00
team Vanuatu
score 14.0
suf_score 0.0
rank 163.0
rank_suf 202.0
rank_change -3.0
total_points 997.0
result 1
rank_dif 39.0
points_by_rank 0.014851
team_points 3
country_classification Classe D
Name: 841, dtype: object
date 2019-07-15 00:00:00
team American Samoa
score 0.0
suf_score 13.0
rank 190.0
rank_suf 140.0
rank_change 0.0
total_points 908.0
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 842, dtype: object
date 2019-07-15 00:00:00
team New Caledonia
score 3.0
suf_score 0.0
rank 155.0
rank_suf 158.0
rank_change 0.0
total_points 1026.0
result 1
rank_dif 3.0
points_by_rank 0.018987
team_points 3
country_classification Classe C
Name: 843, dtype: object
date 2019-07-16 00:00:00
team Syria
score 1.0
suf_score 1.0
rank 85.0
rank_suf 101.0
rank_change 2.0
total_points 1278.0
result 2
rank_dif 16.0
points_by_rank 0.009901
team_points 1
country_classification Classe B
Name: 844, dtype: object
date 2019-07-17 00:00:00
team Nigeria
score 1.0
suf_score 0.0
rank 45.0
rank_suf 25.0
rank_change 3.0
total_points 1433.0
result 1
rank_dif -20.0
points_by_rank 0.12
team_points 3
country_classification Classe A
Name: 845, dtype: object
date 2019-07-18 00:00:00
team Tonga
score 0.0
suf_score 8.0
rank 202.0
rank_suf 171.0
rank_change -1.0
total_points 868.0
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 846, dtype: object
date 2019-07-18 00:00:00
team Vanuatu
score 11.0
suf_score 0.0
rank 163.0
rank_suf 195.0
rank_change -3.0
total_points 997.0
result 1
rank_dif 32.0
points_by_rank 0.015385
team_points 3
country_classification Classe D
Name: 847, dtype: object
date 2019-07-18 00:00:00
team Tahiti
score 1.0
suf_score 8.0
rank 158.0
rank_suf 190.0
rank_change 0.0
total_points 1015.0
result 0
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 848, dtype: object
date 2019-07-18 00:00:00
team Solomon Islands
score 4.0
suf_score 4.0
rank 140.0
rank_suf 167.0
rank_change 1.0
total_points 1077.0
result 2
rank_dif 27.0
points_by_rank 0.005988
team_points 1
country_classification Classe C
Name: 849, dtype: object
date 2019-07-19 00:00:00
team Algeria
score 1.0
suf_score 0.0
rank 68.0
rank_suf 22.0
rank_change -2.0
total_points 1346.0
result 1
rank_dif -46.0
points_by_rank 0.136364
team_points 3
country_classification Classe B
Name: 850, dtype: object
date 2019-07-20 00:00:00
team Fiji
score 1.0
suf_score 1.0
rank 167.0
rank_suf 171.0
rank_change 2.0
total_points 992.0
result 2
rank_dif 4.0
points_by_rank 0.005848
team_points 1
country_classification Classe D
Name: 851, dtype: object
date 2019-07-21 00:00:00
team Liberia
score 1.0
suf_score 1.0
rank 153.0
rank_suf 141.0
rank_change 0.0
total_points 1044.0
result 2
rank_dif -12.0
points_by_rank 0.007092
team_points 1
country_classification Classe C
Name: 852, dtype: object
date 2019-07-26 00:00:00
team Ethiopia
score 1.0
suf_score 0.0
rank 150.0
rank_suf 195.0
rank_change 0.0
total_points 1049.0
result 1
rank_dif 45.0
points_by_rank 0.015385
team_points 3
country_classification Classe C
Name: 853, dtype: object
date 2019-07-26 00:00:00
team Zambia
score 0.0
suf_score 0.0
rank 81.0
rank_suf 147.0
rank_change 0.0
total_points 1299.0
result 2
rank_dif 66.0
points_by_rank 0.006803
team_points 1
country_classification Classe B
Name: 854, dtype: object
date 2019-07-26 00:00:00
team Namibia
score 2.0
suf_score 0.0
rank 121.0
rank_suf 146.0
rank_change 8.0
total_points 1148.0
result 1
rank_dif 25.0
points_by_rank 0.020548
team_points 3
country_classification Classe C
Name: 855, dtype: object
date 2019-07-27 00:00:00
team South Sudan
score 0.0
suf_score 2.0
rank 169.0
rank_suf 148.0
rank_change 1.0
total_points 989.0
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 856, dtype: object
date 2019-07-27 00:00:00
team Uganda
score 3.0
suf_score 1.0
rank 80.0
rank_suf 202.0
rank_change 0.0
total_points 1305.0
result 1
rank_dif 122.0
points_by_rank 0.014851
team_points 3
country_classification Classe B
Name: 857, dtype: object
date 2019-07-27 00:00:00
team Mali
score 4.0
suf_score 0.0
rank 59.0
rank_suf 123.0
rank_change -3.0
total_points 1389.0
result 1
rank_dif 64.0
points_by_rank 0.02439
team_points 3
country_classification Classe B
Name: 858, dtype: object
date 2019-07-28 00:00:00
team Equatorial Guinea
score 3.0
suf_score 3.0
rank 139.0
rank_suf 175.0
rank_change -2.0
total_points 1074.0
result 2
rank_dif 36.0
points_by_rank 0.005714
team_points 1
country_classification Classe C
Name: 859, dtype: object
date 2019-07-28 00:00:00
team Kenya
score 0.0
suf_score 0.0
rank 107.0
rank_suf 137.0
rank_change 2.0
total_points 1201.0
result 2
rank_dif 30.0
points_by_rank 0.007299
team_points 1
country_classification Classe B
Name: 860, dtype: object
date 2019-07-28 00:00:00
team South Africa
score 2.0
suf_score 3.0
rank 70.0
rank_suf 144.0
rank_change -2.0
total_points 1338.0
result 0
rank_dif 74.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 861, dtype: object
date 2019-07-28 00:00:00
team Mozambique
score 0.0
suf_score 1.0
rank 116.0
rank_suf 96.0
rank_change -1.0
total_points 1163.0
result 0
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 862, dtype: object
date 2019-07-28 00:00:00
team Angola
score 1.0
suf_score 1.0
rank 122.0
rank_suf 139.0
rank_change -1.0
total_points 1144.0
result 2
rank_dif 17.0
points_by_rank 0.007194
team_points 1
country_classification Classe C
Name: 863, dtype: object
date 2019-07-28 00:00:00
team Senegal
score 0.0
suf_score 1.0
rank 20.0
rank_suf 152.0
rank_change -2.0
total_points 1550.0
result 0
rank_dif 132.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 864, dtype: object
date 2019-07-28 00:00:00
team Togo
score 0.0
suf_score 0.0
rank 128.0
rank_suf 82.0
rank_change 0.0
total_points 1127.0
result 2
rank_dif -46.0
points_by_rank 0.012195
team_points 1
country_classification Classe C
Name: 865, dtype: object
date 2019-07-29 00:00:00
team Zimbabwe
score 4.0
suf_score 0.0
rank 112.0
rank_suf 157.0
rank_change 3.0
total_points 1174.0
result 1
rank_dif 45.0
points_by_rank 0.019108
team_points 3
country_classification Classe C
Name: 866, dtype: object
date 2019-08-03 00:00:00
team Somalia
score 1.0
suf_score 4.0
rank 202.0
rank_suf 80.0
rank_change 0.0
total_points 868.0
result 0
rank_dif -122.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 867, dtype: object
date 2019-08-03 00:00:00
team Eswatini
score 1.0
suf_score 1.0
rank 139.0
rank_suf 122.0
rank_change -2.0
total_points 1074.0
result 2
rank_dif -17.0
points_by_rank 0.008197
team_points 1
country_classification Classe C
Name: 868, dtype: object
date 2019-08-03 00:00:00
team Botswana
score 2.0
suf_score 3.0
rank 147.0
rank_suf 81.0
rank_change 0.0
total_points 1069.0
result 0
rank_dif -66.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 869, dtype: object
date 2019-08-03 00:00:00
team Liberia
score 0.0
suf_score 3.0
rank 152.0
rank_suf 20.0
rank_change -1.0
total_points 1044.0
result 0
rank_dif -132.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 870, dtype: object
date 2019-08-04 00:00:00
team Chad
score 1.0
suf_score 2.0
rank 175.0
rank_suf 139.0
rank_change -1.0
total_points 956.0
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 871, dtype: object
date 2019-08-04 00:00:00
team Djibouti
score 3.0
suf_score 4.0
rank 195.0
rank_suf 150.0
rank_change 0.0
total_points 896.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 872, dtype: object
date 2019-08-04 00:00:00
team Tanzania
score 0.0
suf_score 0.0
rank 137.0
rank_suf 107.0
rank_change 6.0
total_points 1075.0
result 2
rank_dif -30.0
points_by_rank 0.009346
team_points 1
country_classification Classe C
Name: 873, dtype: object
date 2019-08-04 00:00:00
team Burundi
score 2.0
suf_score 1.0
rank 148.0
rank_suf 169.0
rank_change 14.0
total_points 1061.0
result 1
rank_dif 21.0
points_by_rank 0.017751
team_points 3
country_classification Classe C
Name: 874, dtype: object
date 2019-08-04 00:00:00
team Madagascar
score 2.0
suf_score 3.0
rank 96.0
rank_suf 116.0
rank_change -12.0
total_points 1251.0
result 0
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 875, dtype: object
date 2019-08-04 00:00:00
team Comoros
score 0.0
suf_score 0.0
rank 146.0
rank_suf 121.0
rank_change -2.0
total_points 1071.0
result 2
rank_dif -25.0
points_by_rank 0.008264
team_points 1
country_classification Classe C
Name: 876, dtype: object
date 2019-08-04 00:00:00
team Lesotho
score 3.0
suf_score 0.0
rank 144.0
rank_suf 70.0
rank_change -1.0
total_points 1072.0
result 1
rank_dif -74.0
points_by_rank 0.042857
team_points 3
country_classification Classe C
Name: 877, dtype: object
date 2019-08-04 00:00:00
team Mauritius
score 1.0
suf_score 3.0
rank 157.0
rank_suf 112.0
rank_change 0.0
total_points 1019.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 878, dtype: object
date 2019-08-04 00:00:00
team Guinea-Bissau
score 0.0
suf_score 3.0
rank 123.0
rank_suf 59.0
rank_change 5.0
total_points 1143.0
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 879, dtype: object
date 2019-08-04 00:00:00
team Benin
score 0.0
suf_score 1.0
rank 82.0
rank_suf 128.0
rank_change -6.0
total_points 1295.0
result 0
rank_dif 46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 880, dtype: object
date 2019-08-14 00:00:00
team Guatemala
score 0.0
suf_score 0.0
rank 144.0
rank_suf 155.0
rank_change -1.0
total_points 1072.0
result 2
rank_dif 11.0
points_by_rank 0.006452
team_points 1
country_classification Classe C
Name: 881, dtype: object
date 2019-08-29 00:00:00
team Dominican Republic
score 0.0
suf_score 4.0
rank 155.0
rank_suf 65.0
rank_change 1.0
total_points 1028.0
result 0
rank_dif -90.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 882, dtype: object
date 2019-08-30 00:00:00
team Myanmar
score 1.0
suf_score 4.0
rank 135.0
rank_suf 71.0
rank_change -3.0
total_points 1084.0
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 883, dtype: object
date 2019-08-30 00:00:00
team Jordan
score 1.0
suf_score 0.0
rank 99.0
rank_suf 159.0
rank_change 1.0
total_points 1229.0
result 1
rank_dif 60.0
points_by_rank 0.018868
team_points 3
country_classification Classe B
Name: 884, dtype: object
date 2019-08-31 00:00:00
team Sri Lanka
score 1.0
suf_score 5.0
rank 200.0
rank_suf 65.0
rank_change -1.0
total_points 886.0
result 0
rank_dif -135.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 885, dtype: object
date 2019-09-04 00:00:00
team Burkina Faso
score 1.0
suf_score 0.0
rank 61.0
rank_suf 105.0
rank_change 2.0
total_points 1381.0
result 1
rank_dif 44.0
points_by_rank 0.028571
team_points 3
country_classification Classe B
Name: 886, dtype: object
date 2019-09-04 00:00:00
team Tanzania
score 1.0
suf_score 1.0
rank 137.0
rank_suf 148.0
rank_change 6.0
total_points 1075.0
result 2
rank_dif 11.0
points_by_rank 0.006757
team_points 1
country_classification Classe C
Name: 887, dtype: object
date 2019-09-04 00:00:00
team Eswatini
score 1.0
suf_score 2.0
rank 139.0
rank_suf 195.0
rank_change -2.0
total_points 1074.0
result 0
rank_dif 56.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 888, dtype: object
date 2019-09-04 00:00:00
team Namibia
score 2.0
suf_score 1.0
rank 121.0
rank_suf 202.0
rank_change 8.0
total_points 1148.0
result 1
rank_dif 81.0
points_by_rank 0.014851
team_points 3
country_classification Classe C
Name: 889, dtype: object
date 2019-09-04 00:00:00
team Lesotho
score 0.0
suf_score 0.0
rank 144.0
rank_suf 150.0
rank_change -1.0
total_points 1072.0
result 2
rank_dif 6.0
points_by_rank 0.006667
team_points 1
country_classification Classe C
Name: 890, dtype: object
date 2019-09-04 00:00:00
team Sierra Leone
score 1.0
suf_score 3.0
rank 114.0
rank_suf 152.0
rank_change -1.0
total_points 1172.0
result 0
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 891, dtype: object
date 2019-09-04 00:00:00
team Mozambique
score 1.0
suf_score 0.0
rank 116.0
rank_suf 157.0
rank_change -1.0
total_points 1163.0
result 1
rank_dif 41.0
points_by_rank 0.019108
team_points 3
country_classification Classe C
Name: 892, dtype: object
date 2019-09-04 00:00:00
team Equatorial Guinea
score 1.0
suf_score 1.0
rank 139.0
rank_suf 169.0
rank_change -2.0
total_points 1074.0
result 2
rank_dif 30.0
points_by_rank 0.005917
team_points 1
country_classification Classe C
Name: 893, dtype: object
date 2019-09-05 00:00:00
team Chile
score 0.0
suf_score 0.0
rank 14.0
rank_suf 10.0
rank_change -2.0
total_points 1583.0
result 2
rank_dif -4.0
points_by_rank 0.1
team_points 1
country_classification Classe A
Name: 894, dtype: object
date 2019-09-05 00:00:00
team Puerto Rico
score 0.0
suf_score 4.0
rank 180.0
rank_suf 67.0
rank_change 0.0
total_points 940.0
result 0
rank_dif -113.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 895, dtype: object
date 2019-09-05 00:00:00
team Georgia
score 2.0
suf_score 2.0
rank 94.0
rank_suf 37.0
rank_change 0.0
total_points 1255.0
result 2
rank_dif -57.0
points_by_rank 0.027027
team_points 1
country_classification Classe B
Name: 896, dtype: object
date 2019-09-05 00:00:00
team Hungary
score 1.0
suf_score 2.0
rank 45.0
rank_suf 55.0
rank_change 3.0
total_points 1442.0
result 0
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 897, dtype: object
date 2019-09-05 00:00:00
team Luxembourg
score 0.0
suf_score 1.0
rank 91.0
rank_suf 29.0
rank_change 1.0
total_points 1265.0
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 898, dtype: object
date 2019-09-05 00:00:00
team Ecuador
score 1.0
suf_score 0.0
rank 66.0
rank_suf 19.0
rank_change 6.0
total_points 1359.0
result 1
rank_dif -47.0
points_by_rank 0.157895
team_points 3
country_classification Classe B
Name: 899, dtype: object
date 2019-09-05 00:00:00
team Mali
score 1.0
suf_score 1.0
rank 59.0
rank_suf 68.0
rank_change -3.0
total_points 1389.0
result 2
rank_dif 9.0
points_by_rank 0.014706
team_points 1
country_classification Classe B
Name: 900, dtype: object
date 2019-09-05 00:00:00
team Switzerland
score 1.0
suf_score 1.0
rank 11.0
rank_suf 32.0
rank_change 2.0
total_points 1605.0
result 2
rank_dif 21.0
points_by_rank 0.03125
team_points 1
country_classification Classe S-
Name: 901, dtype: object
date 2019-09-05 00:00:00
team Denmark
score 6.0
suf_score 0.0
rank 13.0
rank_suf 198.0
rank_change 3.0
total_points 1589.0
result 1
rank_dif 185.0
points_by_rank 0.015152
team_points 3
country_classification Classe A
Name: 902, dtype: object
date 2019-09-05 00:00:00
team Sweden
score 4.0
suf_score 0.0
rank 18.0
rank_suf 108.0
rank_change 1.0
total_points 1558.0
result 1
rank_dif 90.0
points_by_rank 0.027778
team_points 3
country_classification Classe A
Name: 903, dtype: object
date 2019-09-05 00:00:00
team Malta
score 0.0
suf_score 2.0
rank 181.0
rank_suf 50.0
rank_change 0.0
total_points 939.0
result 0
rank_dif -131.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 904, dtype: object
date 2019-09-05 00:00:00
team Spain
score 2.0
suf_score 1.0
rank 9.0
rank_suf 28.0
rank_change 2.0
total_points 1617.0
result 1
rank_dif 19.0
points_by_rank 0.107143
team_points 3
country_classification Classe S-
Name: 905, dtype: object
date 2019-09-05 00:00:00
team North Macedonia
score 1.0
suf_score 1.0
rank 71.0
rank_suf 84.0
rank_change -2.0
total_points 1333.0
result 2
rank_dif 13.0
points_by_rank 0.011905
team_points 1
country_classification Classe B
Name: 906, dtype: object
date 2019-09-05 00:00:00
team Italy
score 3.0
suf_score 1.0
rank 16.0
rank_suf 98.0
rank_change 2.0
total_points 1569.0
result 1
rank_dif 82.0
points_by_rank 0.030612
team_points 3
country_classification Classe A
Name: 907, dtype: object
date 2019-09-05 00:00:00
team Liechtenstein
score 0.0
suf_score 5.0
rank 182.0
rank_suf 42.0
rank_change -1.0
total_points 922.0
result 0
rank_dif -140.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 908, dtype: object
date 2019-09-05 00:00:00
team Greece
score 0.0
suf_score 1.0
rank 54.0
rank_suf 57.0
rank_change 2.0
total_points 1403.0
result 0
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 909, dtype: object
date 2019-09-05 00:00:00
team Paraguay
score 0.0
suf_score 2.0
rank 39.0
rank_suf 33.0
rank_change 3.0
total_points 1464.0
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 910, dtype: object
date 2019-09-05 00:00:00
team Panama
score 4.0
suf_score 1.0
rank 74.0
rank_suf 174.0
rank_change -1.0
total_points 1331.0
result 1
rank_dif 100.0
points_by_rank 0.017241
team_points 3
country_classification Classe B
Name: 911, dtype: object
date 2019-09-05 00:00:00
team Suriname
score 2.0
suf_score 1.0
rank 151.0
rank_suf 176.0
rank_change -1.0
total_points 1045.0
result 1
rank_dif 25.0
points_by_rank 0.017045
team_points 3
country_classification Classe C
Name: 912, dtype: object
date 2019-09-05 00:00:00
team Anguilla
score 0.0
suf_score 10.0
rank 209.0
rank_suf 144.0
rank_change 0.0
total_points 857.0
result 0
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 913, dtype: object
date 2019-09-05 00:00:00
team Maldives
score 1.0
suf_score 0.0
rank 152.0
rank_suf 190.0
rank_change 1.0
total_points 1044.0
result 1
rank_dif 38.0
points_by_rank 0.015789
team_points 3
country_classification Classe C
Name: 914, dtype: object
date 2019-09-05 00:00:00
team Syria
score 5.0
suf_score 2.0
rank 87.0
rank_suf 126.0
rank_change 2.0
total_points 1277.0
result 1
rank_dif 39.0
points_by_rank 0.02381
team_points 3
country_classification Classe B
Name: 915, dtype: object
date 2019-09-05 00:00:00
team Nepal
score 0.0
suf_score 7.0
rank 166.0
rank_suf 156.0
rank_change 1.0
total_points 995.0
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 916, dtype: object
date 2019-09-05 00:00:00
team Hong Kong
score 1.0
suf_score 1.0
rank 139.0
rank_suf 170.0
rank_change -2.0
total_points 1074.0
result 2
rank_dif 31.0
points_by_rank 0.005882
team_points 1
country_classification Classe C
Name: 917, dtype: object
date 2019-09-05 00:00:00
team Iraq
score 1.0
suf_score 1.0
rank 77.0
rank_suf 109.0
rank_change 0.0
total_points 1315.0
result 2
rank_dif 32.0
points_by_rank 0.009174
team_points 1
country_classification Classe B
Name: 918, dtype: object
date 2019-09-05 00:00:00
team Uzbekistan
score 0.0
suf_score 2.0
rank 84.0
rank_suf 102.0
rank_change 2.0
total_points 1286.0
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 919, dtype: object
date 2019-09-05 00:00:00
team Yemen
score 2.0
suf_score 2.0
rank 142.0
rank_suf 162.0
rank_change -2.0
total_points 1073.0
result 2
rank_dif 20.0
points_by_rank 0.006173
team_points 1
country_classification Classe C
Name: 920, dtype: object
date 2019-09-05 00:00:00
team Oman
score 2.0
suf_score 1.0
rank 87.0
rank_suf 103.0
rank_change 1.0
total_points 1277.0
result 1
rank_dif 16.0
points_by_rank 0.029126
team_points 3
country_classification Classe B
Name: 921, dtype: object
date 2019-09-05 00:00:00
team Afghanistan
score 0.0
suf_score 6.0
rank 149.0
rank_suf 62.0
rank_change 0.0
total_points 1058.0
result 0
rank_dif -87.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 922, dtype: object
date 2019-09-05 00:00:00
team Myanmar
score 0.0
suf_score 1.0
rank 135.0
rank_suf 187.0
rank_change -3.0
total_points 1084.0
result 0
rank_dif 52.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 923, dtype: object
date 2019-09-05 00:00:00
team Vietnam
score 0.0
suf_score 0.0
rank 97.0
rank_suf 115.0
rank_change 1.0
total_points 1232.0
result 2
rank_dif 18.0
points_by_rank 0.008696
team_points 1
country_classification Classe B
Name: 924, dtype: object
date 2019-09-05 00:00:00
team Malaysia
score 3.0
suf_score 2.0
rank 159.0
rank_suf 160.0
rank_change 0.0
total_points 1009.0
result 1
rank_dif 1.0
points_by_rank 0.01875
team_points 3
country_classification Classe C
Name: 925, dtype: object
date 2019-09-05 00:00:00
team Turkmenistan
score 2.0
suf_score 0.0
rank 132.0
rank_suf 200.0
rank_change -3.0
total_points 1091.0
result 1
rank_dif 68.0
points_by_rank 0.015
team_points 3
country_classification Classe C
Name: 926, dtype: object
date 2019-09-05 00:00:00
team Sudan
score 3.0
suf_score 1.0
rank 129.0
rank_suf 175.0
rank_change -1.0
total_points 1106.0
result 1
rank_dif 46.0
points_by_rank 0.017143
team_points 3
country_classification Classe C
Name: 927, dtype: object
date 2019-09-05 00:00:00
team Rwanda
score 3.0
suf_score 0.0
rank 133.0
rank_suf 192.0
rank_change -3.0
total_points 1088.0
result 1
rank_dif 59.0
points_by_rank 0.015625
team_points 3
country_classification Classe C
Name: 928, dtype: object
date 2019-09-05 00:00:00
team Zimbabwe
score 0.0
suf_score 1.0
rank 112.0
rank_suf 202.0
rank_change 3.0
total_points 1174.0
result 0
rank_dif 90.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 929, dtype: object
date 2019-09-06 00:00:00
team Colombia
score 2.0
suf_score 2.0
rank 8.0
rank_suf 2.0
rank_change -5.0
total_points 1622.0
result 2
rank_dif -6.0
points_by_rank 0.5
team_points 1
country_classification Classe S-
Name: 930, dtype: object
date 2019-09-06 00:00:00
team Uruguay
score 2.0
suf_score 1.0
rank 5.0
rank_suf 44.0
rank_change -3.0
total_points 1637.0
result 1
rank_dif 39.0
points_by_rank 0.068182
team_points 3
country_classification Classe S-
Name: 931, dtype: object
date 2019-09-06 00:00:00
team Burkina Faso
score 1.0
suf_score 1.0
rank 61.0
rank_suf 41.0
rank_change 2.0
total_points 1381.0
result 2
rank_dif -20.0
points_by_rank 0.02439
team_points 1
country_classification Classe B
Name: 932, dtype: object
date 2019-09-06 00:00:00
team Mauritania
score 0.0
suf_score 1.0
rank 106.0
rank_suf 29.0
rank_change 3.0
total_points 1205.0
result 0
rank_dif -77.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 933, dtype: object
date 2019-09-06 00:00:00
team Mexico
score 3.0
suf_score 0.0
rank 12.0
rank_suf 22.0
rank_change -6.0
total_points 1604.0
result 1
rank_dif 10.0
points_by_rank 0.136364
team_points 3
country_classification Classe S-
Name: 934, dtype: object
date 2019-09-06 00:00:00
team Belarus
score 2.0
suf_score 1.0
rank 84.0
rank_suf 100.0
rank_change 2.0
total_points 1286.0
result 1
rank_dif 16.0
points_by_rank 0.03
team_points 3
country_classification Classe B
Name: 935, dtype: object
date 2019-09-06 00:00:00
team Netherlands
score 4.0
suf_score 2.0
rank 16.0
rank_suf 15.0
rank_change 2.0
total_points 1569.0
result 1
rank_dif -1.0
points_by_rank 0.2
team_points 3
country_classification Classe A
Name: 936, dtype: object
date 2019-09-06 00:00:00
team Azerbaijan
score 1.0
suf_score 2.0
rank 109.0
rank_suf 24.0
rank_change -1.0
total_points 1188.0
result 0
rank_dif -85.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 937, dtype: object
date 2019-09-06 00:00:00
team Croatia
score 4.0
suf_score 0.0
rank 7.0
rank_suf 31.0
rank_change 1.0
total_points 1625.0
result 1
rank_dif 24.0
points_by_rank 0.096774
team_points 3
country_classification Classe S-
Name: 938, dtype: object
date 2019-09-06 00:00:00
team Latvia
score 0.0
suf_score 6.0
rank 134.0
rank_suf 27.0
rank_change -3.0
total_points 1086.0
result 0
rank_dif -107.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 939, dtype: object
date 2019-09-06 00:00:00
team Poland
score 0.0
suf_score 2.0
rank 20.0
rank_suf 63.0
rank_change 1.0
total_points 1550.0
result 0
rank_dif 43.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 940, dtype: object
date 2019-09-06 00:00:00
team Kazakhstan
score 1.0
suf_score 1.0
rank 112.0
rank_suf 93.0
rank_change -2.0
total_points 1174.0
result 2
rank_dif -19.0
points_by_rank 0.010753
team_points 1
country_classification Classe C
Name: 941, dtype: object
date 2019-09-06 00:00:00
team Russia
score 2.0
suf_score 1.0
rank 46.0
rank_suf 48.0
rank_change 3.0
total_points 1436.0
result 1
rank_dif 2.0
points_by_rank 0.0625
team_points 3
country_classification Classe A
Name: 942, dtype: object
date 2019-09-06 00:00:00
team Belgium
score 4.0
suf_score 0.0
rank 1.0
rank_suf 211.0
rank_change 0.0
total_points 1746.0
result 1
rank_dif 210.0
points_by_rank 0.014218
team_points 3
country_classification Classe S
Name: 943, dtype: object
date 2019-09-06 00:00:00
team Guyana
score 1.0
suf_score 0.0
rank 178.0
rank_suf 189.0
rank_change 1.0
total_points 953.0
result 1
rank_dif 11.0
points_by_rank 0.015873
team_points 3
country_classification Classe D
Name: 944, dtype: object
date 2019-09-06 00:00:00
team Antigua and Barbuda
score 0.0
suf_score 6.0
rank 124.0
rank_suf 52.0
rank_change 0.0
total_points 1136.0
result 0
rank_dif -72.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 945, dtype: object
date 2019-09-06 00:00:00
team Togo
score 1.0
suf_score 1.0
rank 128.0
rank_suf 146.0
rank_change 0.0
total_points 1127.0
result 2
rank_dif 18.0
points_by_rank 0.006849
team_points 1
country_classification Classe C
Name: 946, dtype: object
date 2019-09-06 00:00:00
team Angola
score 1.0
suf_score 0.0
rank 122.0
rank_suf 161.0
rank_change -1.0
total_points 1144.0
result 1
rank_dif 39.0
points_by_rank 0.018634
team_points 3
country_classification Classe C
Name: 947, dtype: object
date 2019-09-07 00:00:00
team Niger
score 0.0
suf_score 2.0
rank 104.0
rank_suf 105.0
rank_change 0.0
total_points 1209.0
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 948, dtype: object
date 2019-09-07 00:00:00
team Czech Republic
score 1.0
suf_score 2.0
rank 43.0
rank_suf 120.0
rank_change 2.0
total_points 1448.0
result 0
rank_dif 77.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 949, dtype: object
date 2019-09-07 00:00:00
team Bulgaria
score 0.0
suf_score 4.0
rank 60.0
rank_suf 4.0
rank_change 3.0
total_points 1388.0
result 0
rank_dif -56.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 950, dtype: object
date 2019-09-07 00:00:00
team Ukraine
score 3.0
suf_score 0.0
rank 25.0
rank_suf 130.0
rank_change 1.0
total_points 1513.0
result 1
rank_dif 105.0
points_by_rank 0.023077
team_points 3
country_classification Classe A
Name: 951, dtype: object
date 2019-09-07 00:00:00
team Portugal
score 4.0
suf_score 2.0
rank 6.0
rank_suf 35.0
rank_change 1.0
total_points 1631.0
result 1
rank_dif 29.0
points_by_rank 0.085714
team_points 3
country_classification Classe S-
Name: 952, dtype: object
date 2019-09-07 00:00:00
team Moldova
score 0.0
suf_score 3.0
rank 171.0
rank_suf 36.0
rank_change 1.0
total_points 985.0
result 0
rank_dif -135.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 953, dtype: object
date 2019-09-07 00:00:00
team Albania
score 1.0
suf_score 4.0
rank 64.0
rank_suf 3.0
rank_change -2.0
total_points 1362.0
result 0
rank_dif -61.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 954, dtype: object
date 2019-09-07 00:00:00
team Andorra
score 0.0
suf_score 1.0
rank 136.0
rank_suf 37.0
rank_change -3.0
total_points 1082.0
result 0
rank_dif -99.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 955, dtype: object
date 2019-09-07 00:00:00
team Cuba
score 0.0
suf_score 6.0
rank 179.0
rank_suf 78.0
rank_change 4.0
total_points 950.0
result 0
rank_dif -101.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 956, dtype: object
date 2019-09-07 00:00:00
team Haiti
score 0.0
suf_score 1.0
rank 83.0
rank_suf 100.0
rank_change -18.0
total_points 1288.0
result 0
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 957, dtype: object
date 2019-09-07 00:00:00
team Dominican Republic
score 1.0
suf_score 2.0
rank 155.0
rank_suf 196.0
rank_change 1.0
total_points 1028.0
result 0
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 958, dtype: object
date 2019-09-07 00:00:00
team Malawi
score 0.0
suf_score 0.0
rank 126.0
rank_suf 147.0
rank_change 0.0
total_points 1131.0
result 2
rank_dif 21.0
points_by_rank 0.006803
team_points 1
country_classification Classe C
Name: 959, dtype: object
date 2019-09-08 00:00:00
team Uganda
score 1.0
suf_score 1.0
rank 80.0
rank_suf 107.0
rank_change 0.0
total_points 1305.0
result 2
rank_dif 27.0
points_by_rank 0.009346
team_points 1
country_classification Classe B
Name: 960, dtype: object
date 2019-09-08 00:00:00
team Gibraltar
score 0.0
suf_score 4.0
rank 198.0
rank_suf 11.0
rank_change 0.0
total_points 893.0
result 0
rank_dif -187.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 961, dtype: object
date 2019-09-08 00:00:00
team Denmark
score 0.0
suf_score 0.0
rank 13.0
rank_suf 94.0
rank_change 3.0
total_points 1589.0
result 2
rank_dif 81.0
points_by_rank 0.010638
team_points 1
country_classification Classe A
Name: 962, dtype: object
date 2019-09-08 00:00:00
team Malta
score 0.0
suf_score 1.0
rank 181.0
rank_suf 28.0
rank_change 0.0
total_points 939.0
result 0
rank_dif -153.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 963, dtype: object
date 2019-09-08 00:00:00
team Faroe Islands
score 0.0
suf_score 4.0
rank 108.0
rank_suf 9.0
rank_change 1.0
total_points 1200.0
result 0
rank_dif -99.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 964, dtype: object
date 2019-09-08 00:00:00
team Norway
score 1.0
suf_score 1.0
rank 50.0
rank_suf 18.0
rank_change 3.0
total_points 1429.0
result 2
rank_dif -32.0
points_by_rank 0.055556
team_points 1
country_classification Classe A
Name: 965, dtype: object
date 2019-09-08 00:00:00
team Bosnia and Herzegovina
score 2.0
suf_score 4.0
rank 42.0
rank_suf 98.0
rank_change 3.0
total_points 1453.0
result 0
rank_dif 56.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 966, dtype: object
date 2019-09-08 00:00:00
team Italy
score 2.0
suf_score 1.0
rank 16.0
rank_suf 57.0
rank_change 2.0
total_points 1569.0
result 1
rank_dif 41.0
points_by_rank 0.052632
team_points 3
country_classification Classe A
Name: 967, dtype: object
date 2019-09-08 00:00:00
team Liechtenstein
score 1.0
suf_score 1.0
rank 182.0
rank_suf 54.0
rank_change -1.0
total_points 922.0
result 2
rank_dif -128.0
points_by_rank 0.018519
team_points 1
country_classification Classe D
Name: 968, dtype: object
date 2019-09-08 00:00:00
team Bermuda
score 2.0
suf_score 0.0
rank 174.0
rank_suf 74.0
rank_change 0.0
total_points 972.0
result 1
rank_dif -100.0
points_by_rank 0.040541
team_points 3
country_classification Classe D
Name: 969, dtype: object
date 2019-09-08 00:00:00
team Grenada
score 2.0
suf_score 1.0
rank 173.0
rank_suf 167.0
rank_change 0.0
total_points 973.0
result 1
rank_dif -6.0
points_by_rank 0.017964
team_points 3
country_classification Classe D
Name: 970, dtype: object
date 2019-09-08 00:00:00
team Nicaragua
score 0.0
suf_score 6.0
rank 137.0
rank_suf 151.0
rank_change 8.0
total_points 1075.0
result 0
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 971, dtype: object
date 2019-09-08 00:00:00
team Barbados
score 2.0
suf_score 3.0
rank 163.0
rank_suf 204.0
rank_change -1.0
total_points 996.0
result 0
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 972, dtype: object
date 2019-09-08 00:00:00
team South Sudan
score 0.0
suf_score 1.0
rank 169.0
rank_suf 139.0
rank_change 1.0
total_points 989.0
result 0
rank_dif -30.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 973, dtype: object
date 2019-09-08 00:00:00
team Ethiopia
score 1.0
suf_score 1.0
rank 150.0
rank_suf 144.0
rank_change 0.0
total_points 1049.0
result 2
rank_dif -6.0
points_by_rank 0.006944
team_points 1
country_classification Classe C
Name: 974, dtype: object
date 2019-09-08 00:00:00
team Liberia
score 0.0
suf_score 1.0
rank 152.0
rank_suf 114.0
rank_change -1.0
total_points 1044.0
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 975, dtype: object
date 2019-09-08 00:00:00
team Burundi
score 1.0
suf_score 1.0
rank 148.0
rank_suf 137.0
rank_change 14.0
total_points 1061.0
result 2
rank_dif -11.0
points_by_rank 0.007299
team_points 1
country_classification Classe C
Name: 976, dtype: object
date 2019-09-09 00:00:00
team Benin
score 0.0
suf_score 1.0
rank 82.0
rank_suf 40.0
rank_change -6.0
total_points 1295.0
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 977, dtype: object
date 2019-09-09 00:00:00
team Uzbekistan
score 0.0
suf_score 0.0
rank 84.0
rank_suf 77.0
rank_change 2.0
total_points 1286.0
result 2
rank_dif -7.0
points_by_rank 0.012987
team_points 1
country_classification Classe B
Name: 978, dtype: object
date 2019-09-09 00:00:00
team Belarus
score 0.0
suf_score 1.0
rank 84.0
rank_suf 24.0
rank_change 2.0
total_points 1286.0
result 0
rank_dif -60.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 979, dtype: object
date 2019-09-09 00:00:00
team Germany
score 2.0
suf_score 0.0
rank 15.0
rank_suf 29.0
rank_change 4.0
total_points 1582.0
result 1
rank_dif 14.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 980, dtype: object
date 2019-09-09 00:00:00
team Netherlands
score 4.0
suf_score 0.0
rank 16.0
rank_suf 100.0
rank_change 2.0
total_points 1569.0
result 1
rank_dif 84.0
points_by_rank 0.03
team_points 3
country_classification Classe A
Name: 981, dtype: object
date 2019-09-09 00:00:00
team Croatia
score 1.0
suf_score 1.0
rank 7.0
rank_suf 109.0
rank_change 1.0
total_points 1625.0
result 2
rank_dif 102.0
points_by_rank 0.009174
team_points 1
country_classification Classe S-
Name: 982, dtype: object
date 2019-09-09 00:00:00
team Slovakia
score 2.0
suf_score 1.0
rank 31.0
rank_suf 45.0
rank_change 0.0
total_points 1491.0
result 1
rank_dif 14.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 983, dtype: object
date 2019-09-09 00:00:00
team Austria
score 0.0
suf_score 0.0
rank 27.0
rank_suf 20.0
rank_change 1.0
total_points 1498.0
result 2
rank_dif -7.0
points_by_rank 0.05
team_points 1
country_classification Classe A
Name: 984, dtype: object
date 2019-09-09 00:00:00
team Israel
score 2.0
suf_score 3.0
rank 84.0
rank_suf 63.0
rank_change 2.0
total_points 1286.0
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 985, dtype: object
date 2019-09-09 00:00:00
team North Macedonia
score 2.0
suf_score 0.0
rank 71.0
rank_suf 134.0
rank_change -2.0
total_points 1333.0
result 1
rank_dif 63.0
points_by_rank 0.022388
team_points 3
country_classification Classe B
Name: 986, dtype: object
date 2019-09-09 00:00:00
team Belgium
score 4.0
suf_score 0.0
rank 1.0
rank_suf 48.0
rank_change 0.0
total_points 1746.0
result 1
rank_dif 47.0
points_by_rank 0.0625
team_points 3
country_classification Classe S
Name: 987, dtype: object
date 2019-09-09 00:00:00
team Kazakhstan
score 0.0
suf_score 1.0
rank 112.0
rank_suf 46.0
rank_change -2.0
total_points 1174.0
result 0
rank_dif -66.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 988, dtype: object
date 2019-09-09 00:00:00
team Cyprus
score 4.0
suf_score 0.0
rank 93.0
rank_suf 211.0
rank_change 0.0
total_points 1258.0
result 1
rank_dif 118.0
points_by_rank 0.014218
team_points 3
country_classification Classe B
Name: 989, dtype: object
date 2019-09-09 00:00:00
team Aruba
score 1.0
suf_score 2.0
rank 189.0
rank_suf 124.0
rank_change 0.0
total_points 909.0
result 0
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 990, dtype: object
date 2019-09-09 00:00:00
team Jamaica
score 4.0
suf_score 0.0
rank 52.0
rank_suf 178.0
rank_change -2.0
total_points 1425.0
result 1
rank_dif 126.0
points_by_rank 0.016854
team_points 3
country_classification Classe A
Name: 991, dtype: object
date 2019-09-10 00:00:00
team Mexico
score 0.0
suf_score 4.0
rank 12.0
rank_suf 10.0
rank_change -6.0
total_points 1604.0
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 992, dtype: object
date 2019-09-10 00:00:00
team Peru
score 1.0
suf_score 0.0
rank 19.0
rank_suf 2.0
rank_change -2.0
total_points 1552.0
result 1
rank_dif -17.0
points_by_rank 1.5
team_points 3
country_classification Classe A
Name: 993, dtype: object
date 2019-09-10 00:00:00
team Venezuela
score 0.0
suf_score 0.0
rank 26.0
rank_suf 8.0
rank_change -7.0
total_points 1505.0
result 2
rank_dif -18.0
points_by_rank 0.125
team_points 1
country_classification Classe A
Name: 994, dtype: object
date 2019-09-10 00:00:00
team Bolivia
score 0.0
suf_score 3.0
rank 73.0
rank_suf 66.0
rank_change 11.0
total_points 1332.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 995, dtype: object
date 2019-09-10 00:00:00
team Chile
score 1.0
suf_score 2.0
rank 14.0
rank_suf 67.0
rank_change -2.0
total_points 1583.0
result 0
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 996, dtype: object
date 2019-09-10 00:00:00
team Paraguay
score 4.0
suf_score 2.0
rank 39.0
rank_suf 99.0
rank_change 3.0
total_points 1464.0
result 1
rank_dif 60.0
points_by_rank 0.030303
team_points 3
country_classification Classe A
Name: 997, dtype: object
date 2019-09-10 00:00:00
team Niger
score 0.0
suf_score 1.0
rank 104.0
rank_suf 41.0
rank_change 0.0
total_points 1209.0
result 0
rank_dif -63.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 998, dtype: object
date 2019-09-10 00:00:00
team Lebanon
score 0.0
suf_score 1.0
rank 87.0
rank_suf 87.0
rank_change 1.0
total_points 1277.0
result 0
rank_dif 0.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 999, dtype: object
date 2019-09-10 00:00:00
team Bulgaria
score 1.0
suf_score 3.0
rank 60.0
rank_suf 32.0
rank_change 3.0
total_points 1388.0
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1000, dtype: object
date 2019-09-10 00:00:00
team Nigeria
score 2.0
suf_score 2.0
rank 33.0
rank_suf 25.0
rank_change -12.0
total_points 1481.0
result 2
rank_dif -8.0
points_by_rank 0.04
team_points 1
country_classification Classe A
Name: 1001, dtype: object
date 2019-09-10 00:00:00
team Uruguay
score 1.0
suf_score 1.0
rank 5.0
rank_suf 22.0
rank_change -3.0
total_points 1637.0
result 2
rank_dif 17.0
points_by_rank 0.045455
team_points 1
country_classification Classe S-
Name: 1002, dtype: object
date 2019-09-10 00:00:00
team Kosovo
score 3.0
suf_score 5.0
rank 120.0
rank_suf 4.0
rank_change -1.0
total_points 1149.0
result 0
rank_dif -116.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1003, dtype: object
date 2019-09-10 00:00:00
team Czech Republic
score 3.0
suf_score 0.0
rank 43.0
rank_suf 55.0
rank_change 2.0
total_points 1448.0
result 1
rank_dif 12.0
points_by_rank 0.054545
team_points 3
country_classification Classe A
Name: 1004, dtype: object
date 2019-09-10 00:00:00
team Serbia
score 3.0
suf_score 1.0
rank 35.0
rank_suf 91.0
rank_change 1.0
total_points 1477.0
result 1
rank_dif 56.0
points_by_rank 0.032967
team_points 3
country_classification Classe A
Name: 1005, dtype: object
date 2019-09-10 00:00:00
team Portugal
score 5.0
suf_score 1.0
rank 6.0
rank_suf 130.0
rank_change 1.0
total_points 1631.0
result 1
rank_dif 124.0
points_by_rank 0.023077
team_points 3
country_classification Classe S-
Name: 1006, dtype: object
date 2019-09-10 00:00:00
team Iceland
score 2.0
suf_score 4.0
rank 36.0
rank_suf 64.0
rank_change 1.0
total_points 1473.0
result 0
rank_dif 28.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1007, dtype: object
date 2019-09-10 00:00:00
team Andorra
score 0.0
suf_score 3.0
rank 136.0
rank_suf 3.0
rank_change -3.0
total_points 1082.0
result 0
rank_dif -133.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1008, dtype: object
date 2019-09-10 00:00:00
team Turkey
score 4.0
suf_score 0.0
rank 37.0
rank_suf 171.0
rank_change 0.0
total_points 1467.0
result 1
rank_dif 134.0
points_by_rank 0.017544
team_points 3
country_classification Classe A
Name: 1009, dtype: object
date 2019-09-10 00:00:00
team Canada
score 1.0
suf_score 0.0
rank 78.0
rank_suf 179.0
rank_change 0.0
total_points 1312.0
result 1
rank_dif 101.0
points_by_rank 0.01676
team_points 3
country_classification Classe B
Name: 1010, dtype: object
date 2019-09-10 00:00:00
team Curaçao
score 1.0
suf_score 1.0
rank 100.0
rank_suf 83.0
rank_change 0.0
total_points 1450.0
result 2
rank_dif -17.0
points_by_rank 0.012048
team_points 1
country_classification Classe A
Name: 1011, dtype: object
date 2019-09-10 00:00:00
team El Salvador
score 0.0
suf_score 1.0
rank 68.0
rank_suf 155.0
rank_change -1.0
total_points 1342.0
result 0
rank_dif 87.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1012, dtype: object
date 2019-09-10 00:00:00
team Guatemala
score 5.0
suf_score 0.0
rank 144.0
rank_suf 180.0
rank_change -1.0
total_points 1072.0
result 1
rank_dif 36.0
points_by_rank 0.016667
team_points 3
country_classification Classe C
Name: 1013, dtype: object
date 2019-09-10 00:00:00
team Philippines
score 4.0
suf_score 1.0
rank 126.0
rank_suf 190.0
rank_change 0.0
total_points 1131.0
result 1
rank_dif 64.0
points_by_rank 0.015789
team_points 3
country_classification Classe C
Name: 1014, dtype: object
date 2019-09-10 00:00:00
team China PR
score 5.0
suf_score 0.0
rank 71.0
rank_suf 152.0
rank_change -2.0
total_points 1333.0
result 1
rank_dif 81.0
points_by_rank 0.019737
team_points 3
country_classification Classe B
Name: 1015, dtype: object
date 2019-09-10 00:00:00
team Australia
score 3.0
suf_score 0.0
rank 46.0
rank_suf 156.0
rank_change 3.0
total_points 1436.0
result 1
rank_dif 110.0
points_by_rank 0.019231
team_points 3
country_classification Classe A
Name: 1016, dtype: object
date 2019-09-10 00:00:00
team Bahrain
score 1.0
suf_score 0.0
rank 109.0
rank_suf 170.0
rank_change -1.0
total_points 1188.0
result 1
rank_dif 61.0
points_by_rank 0.017647
team_points 3
country_classification Classe C
Name: 1017, dtype: object
date 2019-09-10 00:00:00
team Iran
score 2.0
suf_score 0.0
rank 23.0
rank_suf 139.0
rank_change 3.0
total_points 1518.0
result 1
rank_dif 116.0
points_by_rank 0.021583
team_points 3
country_classification Classe A
Name: 1018, dtype: object
date 2019-09-10 00:00:00
team Saudi Arabia
score 2.0
suf_score 2.0
rank 68.0
rank_suf 142.0
rank_change -1.0
total_points 1342.0
result 2
rank_dif 74.0
points_by_rank 0.007042
team_points 1
country_classification Classe B
Name: 1019, dtype: object
date 2019-09-10 00:00:00
team Palestine
score 1.0
suf_score 2.0
rank 102.0
rank_suf 162.0
rank_change 2.0
total_points 1224.0
result 0
rank_dif 60.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1020, dtype: object
date 2019-09-10 00:00:00
team Bangladesh
score 0.0
suf_score 1.0
rank 182.0
rank_suf 149.0
rank_change -1.0
total_points 922.0
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1021, dtype: object
date 2019-09-10 00:00:00
team India
score 0.0
suf_score 0.0
rank 103.0
rank_suf 62.0
rank_change 2.0
total_points 1214.0
result 2
rank_dif -41.0
points_by_rank 0.016129
team_points 1
country_classification Classe B
Name: 1022, dtype: object
date 2019-09-10 00:00:00
team Tajikistan
score 1.0
suf_score 0.0
rank 119.0
rank_suf 187.0
rank_change -1.0
total_points 1152.0
result 1
rank_dif 68.0
points_by_rank 0.016043
team_points 3
country_classification Classe C
Name: 1023, dtype: object
date 2019-09-10 00:00:00
team Japan
score 2.0
suf_score 0.0
rank 33.0
rank_suf 135.0
rank_change 5.0
total_points 1481.0
result 1
rank_dif 102.0
points_by_rank 0.022222
team_points 3
country_classification Classe A
Name: 1024, dtype: object
date 2019-09-10 00:00:00
team Thailand
score 3.0
suf_score 0.0
rank 115.0
rank_suf 160.0
rank_change -1.0
total_points 1165.0
result 1
rank_dif 45.0
points_by_rank 0.01875
team_points 3
country_classification Classe C
Name: 1025, dtype: object
date 2019-09-10 00:00:00
team United Arab Emirates
score 2.0
suf_score 1.0
rank 65.0
rank_suf 159.0
rank_change -2.0
total_points 1360.0
result 1
rank_dif 94.0
points_by_rank 0.018868
team_points 3
country_classification Classe B
Name: 1026, dtype: object
date 2019-09-10 00:00:00
team South Korea
score 2.0
suf_score 0.0
rank 37.0
rank_suf 132.0
rank_change 0.0
total_points 1467.0
result 1
rank_dif 95.0
points_by_rank 0.022727
team_points 3
country_classification Classe A
Name: 1027, dtype: object
date 2019-09-10 00:00:00
team Gambia
score 1.0
suf_score 2.0
rank 161.0
rank_suf 122.0
rank_change 0.0
total_points 1006.0
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1028, dtype: object
date 2019-09-10 00:00:00
team Botswana
score 0.0
suf_score 1.0
rank 147.0
rank_suf 126.0
rank_change 0.0
total_points 1069.0
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1029, dtype: object
date 2019-09-10 00:00:00
team Mauritius
score 0.0
suf_score 2.0
rank 157.0
rank_suf 116.0
rank_change 0.0
total_points 1019.0
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1030, dtype: object
date 2019-09-10 00:00:00
team Eritrea
score 0.0
suf_score 2.0
rank 202.0
rank_suf 121.0
rank_change 0.0
total_points 868.0
result 0
rank_dif -81.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1031, dtype: object
date 2019-09-10 00:00:00
team Seychelles
score 0.0
suf_score 7.0
rank 192.0
rank_suf 133.0
rank_change -2.0
total_points 904.0
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1032, dtype: object
date 2019-09-10 00:00:00
team Chad
score 0.0
suf_score 0.0
rank 175.0
rank_suf 129.0
rank_change -1.0
total_points 956.0
result 2
rank_dif -46.0
points_by_rank 0.007752
team_points 1
country_classification Classe D
Name: 1033, dtype: object
date 2019-09-10 00:00:00
team Djibouti
score 0.0
suf_score 0.0
rank 195.0
rank_suf 139.0
rank_change 0.0
total_points 896.0
result 2
rank_dif -56.0
points_by_rank 0.007194
team_points 1
country_classification Classe D
Name: 1034, dtype: object
date 2019-09-10 00:00:00
team Comoros
score 0.0
suf_score 2.0
rank 146.0
rank_suf 128.0
rank_change -2.0
total_points 1071.0
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1035, dtype: object
date 2019-09-10 00:00:00
team Somalia
score 1.0
suf_score 3.0
rank 202.0
rank_suf 112.0
rank_change 0.0
total_points 868.0
result 0
rank_dif -90.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1036, dtype: object
date 2019-09-21 00:00:00
team Uganda
score 3.0
suf_score 0.0
rank 80.0
rank_suf 144.0
rank_change 0.0
total_points 1305.0
result 1
rank_dif 64.0
points_by_rank 0.020833
team_points 3
country_classification Classe B
Name: 1037, dtype: object
date 2019-09-21 00:00:00
team Morocco
score 0.0
suf_score 0.0
rank 39.0
rank_suf 38.0
rank_change -2.0
total_points 1463.0
result 2
rank_dif -1.0
points_by_rank 0.026316
team_points 1
country_classification Classe A
Name: 1038, dtype: object
date 2019-09-21 00:00:00
team Libya
score 0.0
suf_score 1.0
rank 102.0
rank_suf 29.0
rank_change -3.0
total_points 1212.0
result 0
rank_dif -73.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1039, dtype: object
date 2019-09-21 00:00:00
team Mali
score 0.0
suf_score 0.0
rank 57.0
rank_suf 105.0
rank_change -2.0
total_points 1391.0
result 2
rank_dif 48.0
points_by_rank 0.009524
team_points 1
country_classification Classe B
Name: 1040, dtype: object
date 2019-09-21 00:00:00
team Guinea
score 0.0
suf_score 1.0
rank 74.0
rank_suf 20.0
rank_change -1.0
total_points 1325.0
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1041, dtype: object
date 2019-09-22 00:00:00
team Congo
score 2.0
suf_score 2.0
rank 90.0
rank_suf 134.0
rank_change -1.0
total_points 1265.0
result 2
rank_dif 44.0
points_by_rank 0.007463
team_points 1
country_classification Classe B
Name: 1042, dtype: object
date 2019-09-22 00:00:00
team Rwanda
score 1.0
suf_score 0.0
rank 130.0
rank_suf 151.0
rank_change -3.0
total_points 1104.0
result 1
rank_dif 21.0
points_by_rank 0.019868
team_points 3
country_classification Classe C
Name: 1043, dtype: object
date 2019-09-22 00:00:00
team Sudan
score 1.0
suf_score 0.0
rank 128.0
rank_suf 135.0
rank_change -1.0
total_points 1111.0
result 1
rank_dif 7.0
points_by_rank 0.022222
team_points 3
country_classification Classe C
Name: 1044, dtype: object
date 2019-09-22 00:00:00
team Namibia
score 0.0
suf_score 1.0
rank 120.0
rank_suf 95.0
rank_change -1.0
total_points 1162.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1045, dtype: object
date 2019-09-22 00:00:00
team Zambia
score 1.0
suf_score 0.0
rank 81.0
rank_suf 150.0
rank_change 0.0
total_points 1299.0
result 1
rank_dif 69.0
points_by_rank 0.02
team_points 3
country_classification Classe B
Name: 1046, dtype: object
date 2019-09-22 00:00:00
team Lesotho
score 1.0
suf_score 3.0
rank 137.0
rank_suf 118.0
rank_change -7.0
total_points 1078.0
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1047, dtype: object
date 2019-09-22 00:00:00
team Burkina Faso
score 1.0
suf_score 0.0
rank 61.0
rank_suf 51.0
rank_change 0.0
total_points 1381.0
result 1
rank_dif -10.0
points_by_rank 0.058824
team_points 3
country_classification Classe B
Name: 1048, dtype: object
date 2019-09-22 00:00:00
team Nigeria
score 1.0
suf_score 4.0
rank 34.0
rank_suf 124.0
rank_change 1.0
total_points 1482.0
result 0
rank_dif 90.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1049, dtype: object
date 2019-09-29 00:00:00
team Bhutan
score 1.0
suf_score 4.0
rank 185.0
rank_suf 187.0
rank_change -1.0
total_points 916.0
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1050, dtype: object
date 2019-09-30 00:00:00
team Liberia
score 0.0
suf_score 0.0
rank 152.0
rank_suf 148.0
rank_change 0.0
total_points 1053.0
result 2
rank_dif -4.0
points_by_rank 0.006757
team_points 1
country_classification Classe C
Name: 1051, dtype: object
date 2019-10-02 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 2.0
rank 100.0
rank_suf 12.0
rank_change -1.0
total_points 1226.0
result 0
rank_dif -88.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1052, dtype: object
date 2019-10-03 00:00:00
team Bhutan
score 0.0
suf_score 2.0
rank 185.0
rank_suf 187.0
rank_change -1.0
total_points 916.0
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1053, dtype: object
date 2019-10-05 00:00:00
team Singapore
score 0.0
suf_score 0.0
rank 157.0
rank_suf 98.0
rank_change -5.0
total_points 1019.0
result 2
rank_dif -59.0
points_by_rank 0.010204
team_points 1
country_classification Classe C
Name: 1054, dtype: object
date 2019-10-05 00:00:00
team Sri Lanka
score 0.0
suf_score 6.0
rank 202.0
rank_suf 158.0
rank_change 2.0
total_points 872.0
result 0
rank_dif -44.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1055, dtype: object
date 2019-10-09 00:00:00
team Gambia
score 1.0
suf_score 1.0
rank 166.0
rank_suf 186.0
rank_change 5.0
total_points 988.0
result 2
rank_dif 20.0
points_by_rank 0.005376
team_points 1
country_classification Classe D
Name: 1056, dtype: object
date 2019-10-09 00:00:00
team Chad
score 0.0
suf_score 1.0
rank 177.0
rank_suf 152.0
rank_change 2.0
total_points 950.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1057, dtype: object
date 2019-10-09 00:00:00
team Seychelles
score 1.0
suf_score 2.0
rank 198.0
rank_suf 173.0
rank_change 6.0
total_points 888.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1058, dtype: object
date 2019-10-09 00:00:00
team Azerbaijan
score 3.0
suf_score 2.0
rank 109.0
rank_suf 105.0
rank_change 0.0
total_points 1191.0
result 1
rank_dif -4.0
points_by_rank 0.028571
team_points 3
country_classification Classe C
Name: 1059, dtype: object
date 2019-10-09 00:00:00
team Argentina
score 2.0
suf_score 2.0
rank 10.0
rank_suf 16.0
rank_change 0.0
total_points 1614.0
result 2
rank_dif 6.0
points_by_rank 0.0625
team_points 1
country_classification Classe S-
Name: 1060, dtype: object
date 2019-10-10 00:00:00
team Estonia
score 0.0
suf_score 0.0
rank 102.0
rank_suf 82.0
rank_change 2.0
total_points 1212.0
result 2
rank_dif -20.0
points_by_rank 0.012195
team_points 1
country_classification Classe B
Name: 1061, dtype: object
date 2019-10-10 00:00:00
team Northern Ireland
score 1.0
suf_score 3.0
rank 33.0
rank_suf 13.0
rank_change 4.0
total_points 1488.0
result 0
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1062, dtype: object
date 2019-10-10 00:00:00
team Hungary
score 0.0
suf_score 3.0
rank 50.0
rank_suf 8.0
rank_change 5.0
total_points 1430.0
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1063, dtype: object
date 2019-10-10 00:00:00
team Wales
score 1.0
suf_score 1.0
rank 23.0
rank_suf 29.0
rank_change -1.0
total_points 1522.0
result 2
rank_dif 6.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 1064, dtype: object
date 2019-10-10 00:00:00
team Israel
score 1.0
suf_score 3.0
rank 86.0
rank_suf 27.0
rank_change 2.0
total_points 1277.0
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1065, dtype: object
date 2019-10-10 00:00:00
team Slovenia
score 1.0
suf_score 2.0
rank 58.0
rank_suf 69.0
rank_change -5.0
total_points 1390.0
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1066, dtype: object
date 2019-10-10 00:00:00
team Poland
score 3.0
suf_score 0.0
rank 22.0
rank_suf 139.0
rank_change 2.0
total_points 1532.0
result 1
rank_dif 117.0
points_by_rank 0.021583
team_points 3
country_classification Classe A
Name: 1067, dtype: object
date 2019-10-10 00:00:00
team Cyprus
score 2.0
suf_score 1.0
rank 92.0
rank_suf 116.0
rank_change -1.0
total_points 1261.0
result 1
rank_dif 24.0
points_by_rank 0.025862
team_points 3
country_classification Classe B
Name: 1068, dtype: object
date 2019-10-10 00:00:00
team San Marino
score 0.0
suf_score 9.0
rank 210.0
rank_suf 1.0
rank_change -1.0
total_points 835.0
result 0
rank_dif -209.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1069, dtype: object
date 2019-10-10 00:00:00
team Scotland
score 0.0
suf_score 4.0
rank 52.0
rank_suf 42.0
rank_change 4.0
total_points 1415.0
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1070, dtype: object
date 2019-10-10 00:00:00
team Senegal
score 1.0
suf_score 1.0
rank 20.0
rank_suf 3.0
rank_change 0.0
total_points 1546.0
result 2
rank_dif -17.0
points_by_rank 0.333333
team_points 1
country_classification Classe A
Name: 1071, dtype: object
date 2019-10-10 00:00:00
team Burkina Faso
score 0.0
suf_score 1.0
rank 61.0
rank_suf 88.0
rank_change 0.0
total_points 1381.0
result 0
rank_dif 27.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1072, dtype: object
date 2019-10-10 00:00:00
team Gibraltar
score 0.0
suf_score 1.0
rank 197.0
rank_suf 119.0
rank_change -1.0
total_points 889.0
result 0
rank_dif -78.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1073, dtype: object
date 2019-10-10 00:00:00
team Zambia
score 1.0
suf_score 1.0
rank 81.0
rank_suf 107.0
rank_change 0.0
total_points 1299.0
result 2
rank_dif 26.0
points_by_rank 0.009346
team_points 1
country_classification Classe B
Name: 1074, dtype: object
date 2019-10-10 00:00:00
team Paraguay
score 0.0
suf_score 1.0
rank 40.0
rank_suf 35.0
rank_change 1.0
total_points 1462.0
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1075, dtype: object
date 2019-10-10 00:00:00
team Congo
score 1.0
suf_score 1.0
rank 90.0
rank_suf 114.0
rank_change -1.0
total_points 1265.0
result 2
rank_dif 24.0
points_by_rank 0.008772
team_points 1
country_classification Classe B
Name: 1076, dtype: object
date 2019-10-10 00:00:00
team Bolivia
score 1.0
suf_score 4.0
rank 72.0
rank_suf 26.0
rank_change -1.0
total_points 1327.0
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1077, dtype: object
date 2019-10-10 00:00:00
team Honduras
score 2.0
suf_score 0.0
rank 67.0
rank_suf 100.0
rank_change 0.0
total_points 1359.0
result 1
rank_dif 33.0
points_by_rank 0.03
team_points 3
country_classification Classe B
Name: 1078, dtype: object
date 2019-10-10 00:00:00
team Costa Rica
score 1.0
suf_score 1.0
rank 43.0
rank_suf 86.0
rank_change -1.0
total_points 1442.0
result 2
rank_dif 43.0
points_by_rank 0.011628
team_points 1
country_classification Classe A
Name: 1079, dtype: object
date 2019-10-10 00:00:00
team Bahamas
score 4.0
suf_score 0.0
rank 208.0
rank_suf 203.0
rank_change -2.0
total_points 855.0
result 1
rank_dif -5.0
points_by_rank 0.014778
team_points 3
country_classification Classe D
Name: 1080, dtype: object
date 2019-10-10 00:00:00
team Maldives
score 1.0
suf_score 2.0
rank 153.0
rank_suf 85.0
rank_change 1.0
total_points 1047.0
result 0
rank_dif -68.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1081, dtype: object
date 2019-10-10 00:00:00
team Guam
score 0.0
suf_score 7.0
rank 195.0
rank_suf 68.0
rank_change 5.0
total_points 890.0
result 0
rank_dif -127.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1082, dtype: object
date 2019-10-10 00:00:00
team Kuwait
score 0.0
suf_score 0.0
rank 156.0
rank_suf 98.0
rank_change 0.0
total_points 1029.0
result 2
rank_dif -58.0
points_by_rank 0.010204
team_points 1
country_classification Classe C
Name: 1083, dtype: object
date 2019-10-10 00:00:00
team Nepal
score 0.0
suf_score 5.0
rank 161.0
rank_suf 44.0
rank_change -5.0
total_points 999.0
result 0
rank_dif -117.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1084, dtype: object
date 2019-10-10 00:00:00
team Cambodia
score 0.0
suf_score 14.0
rank 169.0
rank_suf 23.0
rank_change -1.0
total_points 982.0
result 0
rank_dif -146.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1085, dtype: object
date 2019-10-10 00:00:00
team Hong Kong
score 0.0
suf_score 2.0
rank 143.0
rank_suf 79.0
rank_change 4.0
total_points 1068.0
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1086, dtype: object
date 2019-10-10 00:00:00
team Yemen
score 0.0
suf_score 5.0
rank 137.0
rank_suf 88.0
rank_change -5.0
total_points 1078.0
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1087, dtype: object
date 2019-10-10 00:00:00
team Singapore
score 0.0
suf_score 3.0
rank 157.0
rank_suf 70.0
rank_change -5.0
total_points 1019.0
result 0
rank_dif -87.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1088, dtype: object
date 2019-10-10 00:00:00
team Qatar
score 2.0
suf_score 0.0
rank 62.0
rank_suf 187.0
rank_change 0.0
total_points 1377.0
result 1
rank_dif 125.0
points_by_rank 0.016043
team_points 3
country_classification Classe B
Name: 1089, dtype: object
date 2019-10-10 00:00:00
team Afghanistan
score 0.0
suf_score 3.0
rank 146.0
rank_suf 84.0
rank_change -3.0
total_points 1062.0
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1090, dtype: object
date 2019-10-10 00:00:00
team Mongolia
score 0.0
suf_score 6.0
rank 183.0
rank_suf 31.0
rank_change -4.0
total_points 923.0
result 0
rank_dif -152.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1091, dtype: object
date 2019-10-10 00:00:00
team Indonesia
score 0.0
suf_score 5.0
rank 167.0
rank_suf 66.0
rank_change 7.0
total_points 987.0
result 0
rank_dif -101.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1092, dtype: object
date 2019-10-10 00:00:00
team Malaysia
score 0.0
suf_score 1.0
rank 158.0
rank_suf 99.0
rank_change -1.0
total_points 1015.0
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1093, dtype: object
date 2019-10-10 00:00:00
team Turkmenistan
score 1.0
suf_score 2.0
rank 131.0
rank_suf 94.0
rank_change -1.0
total_points 1094.0
result 0
rank_dif -37.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1094, dtype: object
date 2019-10-10 00:00:00
team Sri Lanka
score 0.0
suf_score 8.0
rank 202.0
rank_suf 37.0
rank_change 2.0
total_points 872.0
result 0
rank_dif -165.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1095, dtype: object
date 2019-10-11 00:00:00
team England
score 1.0
suf_score 2.0
rank 4.0
rank_suf 44.0
rank_change 0.0
total_points 1662.0
result 0
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1096, dtype: object
date 2019-10-11 00:00:00
team Bulgaria
score 0.0
suf_score 0.0
rank 62.0
rank_suf 59.0
rank_change 2.0
total_points 1377.0
result 2
rank_dif -3.0
points_by_rank 0.016949
team_points 1
country_classification Classe B
Name: 1097, dtype: object
date 2019-10-11 00:00:00
team Luxembourg
score 0.0
suf_score 3.0
rank 93.0
rank_suf 5.0
rank_change 2.0
total_points 1255.0
result 0
rank_dif -88.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1098, dtype: object
date 2019-10-11 00:00:00
team Lithuania
score 0.0
suf_score 2.0
rank 131.0
rank_suf 25.0
rank_change 1.0
total_points 1094.0
result 0
rank_dif -106.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1099, dtype: object
date 2019-10-11 00:00:00
team France
score 1.0
suf_score 0.0
rank 2.0
rank_suf 41.0
rank_change -1.0
total_points 1725.0
result 1
rank_dif 39.0
points_by_rank 0.073171
team_points 3
country_classification Classe S
Name: 1100, dtype: object
date 2019-10-11 00:00:00
team Moldova
score 0.0
suf_score 1.0
rank 172.0
rank_suf 139.0
rank_change 1.0
total_points 978.0
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1101, dtype: object
date 2019-10-11 00:00:00
team Albania
score 0.0
suf_score 1.0
rank 64.0
rank_suf 36.0
rank_change 0.0
total_points 1372.0
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1102, dtype: object
date 2019-10-11 00:00:00
team Libya
score 1.0
suf_score 1.0
rank 102.0
rank_suf 39.0
rank_change -3.0
total_points 1212.0
result 2
rank_dif -63.0
points_by_rank 0.025641
team_points 1
country_classification Classe B
Name: 1103, dtype: object
date 2019-10-11 00:00:00
team Peru
score 0.0
suf_score 1.0
rank 19.0
rank_suf 6.0
rank_change 0.0
total_points 1551.0
result 0
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1104, dtype: object
date 2019-10-11 00:00:00
team Cuba
score 0.0
suf_score 7.0
rank 178.0
rank_suf 21.0
rank_change -1.0
total_points 940.0
result 0
rank_dif -157.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1105, dtype: object
date 2019-10-11 00:00:00
team Mexico
score 5.0
suf_score 1.0
rank 12.0
rank_suf 167.0
rank_change 0.0
total_points 1603.0
result 1
rank_dif 155.0
points_by_rank 0.017964
team_points 3
country_classification Classe S-
Name: 1106, dtype: object
date 2019-10-11 00:00:00
team Guyana
score 1.0
suf_score 2.0
rank 176.0
rank_suf 126.0
rank_change -2.0
total_points 960.0
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1107, dtype: object
date 2019-10-11 00:00:00
team Dominica
score 1.0
suf_score 3.0
rank 180.0
rank_suf 148.0
rank_change 4.0
total_points 932.0
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1108, dtype: object
date 2019-10-12 00:00:00
team Republic of Ireland
score 0.0
suf_score 0.0
rank 28.0
rank_suf 91.0
rank_change -4.0
total_points 1496.0
result 2
rank_dif 63.0
points_by_rank 0.010989
team_points 1
country_classification Classe A
Name: 1109, dtype: object
date 2019-10-12 00:00:00
team Switzerland
score 0.0
suf_score 1.0
rank 11.0
rank_suf 14.0
rank_change 0.0
total_points 1604.0
result 0
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1110, dtype: object
date 2019-10-12 00:00:00
team Romania
score 3.0
suf_score 0.0
rank 31.0
rank_suf 109.0
rank_change 3.0
total_points 1490.0
result 1
rank_dif 78.0
points_by_rank 0.027523
team_points 3
country_classification Classe A
Name: 1111, dtype: object
date 2019-10-12 00:00:00
team Sweden
score 4.0
suf_score 0.0
rank 18.0
rank_suf 179.0
rank_change 0.0
total_points 1560.0
result 1
rank_dif 161.0
points_by_rank 0.01676
team_points 3
country_classification Classe A
Name: 1112, dtype: object
date 2019-10-12 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 7.0
rank_suf 47.0
rank_change -2.0
total_points 1631.0
result 2
rank_dif 40.0
points_by_rank 0.021277
team_points 1
country_classification Classe S-
Name: 1113, dtype: object
date 2019-10-12 00:00:00
team Finland
score 1.0
suf_score 4.0
rank 54.0
rank_suf 46.0
rank_change -3.0
total_points 1398.0
result 0
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1114, dtype: object
date 2019-10-12 00:00:00
team Greece
score 0.0
suf_score 2.0
rank 60.0
rank_suf 15.0
rank_change 6.0
total_points 1382.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1115, dtype: object
date 2019-10-12 00:00:00
team Armenia
score 1.0
suf_score 1.0
rank 96.0
rank_suf 182.0
rank_change -2.0
total_points 1242.0
result 2
rank_dif 86.0
points_by_rank 0.005495
team_points 1
country_classification Classe B
Name: 1116, dtype: object
date 2019-10-12 00:00:00
team Chile
score 0.0
suf_score 0.0
rank 17.0
rank_suf 9.0
rank_change 3.0
total_points 1576.0
result 2
rank_dif -8.0
points_by_rank 0.111111
team_points 1
country_classification Classe A
Name: 1117, dtype: object
date 2019-10-12 00:00:00
team Comoros
score 1.0
suf_score 0.0
rank 147.0
rank_suf 74.0
rank_change 1.0
total_points 1060.0
result 1
rank_dif -73.0
points_by_rank 0.040541
team_points 3
country_classification Classe C
Name: 1118, dtype: object
date 2019-10-12 00:00:00
team Cameroon
score 0.0
suf_score 0.0
rank 53.0
rank_suf 29.0
rank_change 0.0
total_points 1409.0
result 2
rank_dif -24.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 1119, dtype: object
date 2019-10-12 00:00:00
team El Salvador
score 2.0
suf_score 0.0
rank 72.0
rank_suf 187.0
rank_change 4.0
total_points 1327.0
result 1
rank_dif 115.0
points_by_rank 0.016043
team_points 3
country_classification Classe B
Name: 1120, dtype: object
date 2019-10-12 00:00:00
team Aruba
score 0.0
suf_score 2.0
rank 195.0
rank_suf 47.0
rank_change 6.0
total_points 890.0
result 0
rank_dif -148.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1121, dtype: object
date 2019-10-12 00:00:00
team Guatemala
score 5.0
suf_score 0.0
rank 133.0
rank_suf 209.0
rank_change -11.0
total_points 1088.0
result 1
rank_dif 76.0
points_by_rank 0.014354
team_points 3
country_classification Classe C
Name: 1122, dtype: object
date 2019-10-13 00:00:00
team Netherlands
score 2.0
suf_score 1.0
rank 13.0
rank_suf 82.0
rank_change -3.0
total_points 1586.0
result 1
rank_dif 69.0
points_by_rank 0.036585
team_points 3
country_classification Classe A
Name: 1123, dtype: object
date 2019-10-13 00:00:00
team Germany
score 3.0
suf_score 0.0
rank 16.0
rank_suf 102.0
rank_change 1.0
total_points 1580.0
result 1
rank_dif 86.0
points_by_rank 0.029412
team_points 3
country_classification Classe A
Name: 1124, dtype: object
date 2019-10-13 00:00:00
team Azerbaijan
score 0.0
suf_score 1.0
rank 109.0
rank_suf 50.0
rank_change 0.0
total_points 1191.0
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1125, dtype: object
date 2019-10-13 00:00:00
team Croatia
score 1.0
suf_score 1.0
rank 8.0
rank_suf 23.0
rank_change 1.0
total_points 1625.0
result 2
rank_dif 15.0
points_by_rank 0.043478
team_points 1
country_classification Classe S-
Name: 1126, dtype: object
date 2019-10-13 00:00:00
team North Macedonia
score 0.0
suf_score 2.0
rank 69.0
rank_suf 22.0
rank_change -2.0
total_points 1339.0
result 0
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1127, dtype: object
date 2019-10-13 00:00:00
team Austria
score 1.0
suf_score 0.0
rank 27.0
rank_suf 58.0
rank_change 0.0
total_points 1503.0
result 1
rank_dif 31.0
points_by_rank 0.051724
team_points 3
country_classification Classe A
Name: 1128, dtype: object
date 2019-10-13 00:00:00
team San Marino
score 0.0
suf_score 6.0
rank 210.0
rank_suf 52.0
rank_change -1.0
total_points 835.0
result 0
rank_dif -158.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1129, dtype: object
date 2019-10-13 00:00:00
team Russia
score 5.0
suf_score 0.0
rank 42.0
rank_suf 92.0
rank_change -4.0
total_points 1455.0
result 1
rank_dif 50.0
points_by_rank 0.032609
team_points 3
country_classification Classe A
Name: 1130, dtype: object
date 2019-10-13 00:00:00
team Belgium
score 2.0
suf_score 0.0
rank 1.0
rank_suf 116.0
rank_change 0.0
total_points 1752.0
result 1
rank_dif 115.0
points_by_rank 0.025862
team_points 3
country_classification Classe S
Name: 1131, dtype: object
date 2019-10-13 00:00:00
team Djibouti
score 1.0
suf_score 1.0
rank 186.0
rank_suf 166.0
rank_change -9.0
total_points 913.0
result 2
rank_dif -20.0
points_by_rank 0.006024
team_points 1
country_classification Classe D
Name: 1132, dtype: object
date 2019-10-13 00:00:00
team Liberia
score 0.0
suf_score 1.0
rank 152.0
rank_suf 177.0
rank_change 0.0
total_points 1053.0
result 0
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1133, dtype: object
date 2019-10-13 00:00:00
team South Sudan
score 1.0
suf_score 0.0
rank 173.0
rank_suf 198.0
rank_change 4.0
total_points 977.0
result 1
rank_dif 25.0
points_by_rank 0.015152
team_points 3
country_classification Classe D
Name: 1134, dtype: object
date 2019-10-13 00:00:00
team Zambia
score 2.0
suf_score 2.0
rank 81.0
rank_suf 83.0
rank_change 0.0
total_points 1299.0
result 2
rank_dif 2.0
points_by_rank 0.012048
team_points 1
country_classification Classe B
Name: 1135, dtype: object
date 2019-10-13 00:00:00
team Nigeria
score 1.0
suf_score 1.0
rank 34.0
rank_suf 3.0
rank_change 1.0
total_points 1482.0
result 2
rank_dif -31.0
points_by_rank 0.333333
team_points 1
country_classification Classe A
Name: 1136, dtype: object
date 2019-10-13 00:00:00
team Argentina
score 6.0
suf_score 1.0
rank 10.0
rank_suf 65.0
rank_change 0.0
total_points 1614.0
result 1
rank_dif 55.0
points_by_rank 0.046154
team_points 3
country_classification Classe S-
Name: 1137, dtype: object
date 2019-10-13 00:00:00
team Togo
score 1.0
suf_score 1.0
rank 124.0
rank_suf 134.0
rank_change -4.0
total_points 1140.0
result 2
rank_dif 10.0
points_by_rank 0.007463
team_points 1
country_classification Classe C
Name: 1138, dtype: object
date 2019-10-13 00:00:00
team Uganda
score 1.0
suf_score 0.0
rank 80.0
rank_suf 151.0
rank_change 0.0
total_points 1305.0
result 1
rank_dif 71.0
points_by_rank 0.019868
team_points 3
country_classification Classe B
Name: 1139, dtype: object
date 2019-10-13 00:00:00
team Mozambique
score 1.0
suf_score 0.0
rank 112.0
rank_suf 107.0
rank_change -4.0
total_points 1181.0
result 1
rank_dif -5.0
points_by_rank 0.028037
team_points 3
country_classification Classe C
Name: 1140, dtype: object
date 2019-10-13 00:00:00
team Malawi
score 1.0
suf_score 1.0
rank 124.0
rank_suf 137.0
rank_change -2.0
total_points 1140.0
result 2
rank_dif 13.0
points_by_rank 0.007299
team_points 1
country_classification Classe C
Name: 1141, dtype: object
date 2019-10-13 00:00:00
team Central African Republic
score 2.0
suf_score 0.0
rank 111.0
rank_suf 107.0
rank_change 0.0
total_points 1184.0
result 1
rank_dif -4.0
points_by_rank 0.028037
team_points 3
country_classification Classe C
Name: 1142, dtype: object
date 2019-10-13 00:00:00
team Paraguay
score 1.0
suf_score 1.0
rank 40.0
rank_suf 29.0
rank_change 1.0
total_points 1462.0
result 2
rank_dif -11.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 1143, dtype: object
date 2019-10-13 00:00:00
team Mali
score 1.0
suf_score 2.0
rank 57.0
rank_suf 71.0
rank_change -2.0
total_points 1391.0
result 0
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1144, dtype: object
date 2019-10-13 00:00:00
team Curaçao
score 0.0
suf_score 0.0
rank 100.0
rank_suf 43.0
rank_change 0.0
total_points 1450.0
result 2
rank_dif -57.0
points_by_rank 0.023256
team_points 1
country_classification Classe A
Name: 1145, dtype: object
date 2019-10-14 00:00:00
team Montenegro
score 0.0
suf_score 2.0
rank 59.0
rank_suf 119.0
rank_change 4.0
total_points 1389.0
result 0
rank_dif 60.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1146, dtype: object
date 2019-10-14 00:00:00
team England
score 6.0
suf_score 0.0
rank 4.0
rank_suf 62.0
rank_change 0.0
total_points 1662.0
result 1
rank_dif 58.0
points_by_rank 0.048387
team_points 3
country_classification Classe S-
Name: 1147, dtype: object
date 2019-10-14 00:00:00
team Serbia
score 2.0
suf_score 1.0
rank 35.0
rank_suf 131.0
rank_change 0.0
total_points 1476.0
result 1
rank_dif 96.0
points_by_rank 0.022901
team_points 3
country_classification Classe A
Name: 1148, dtype: object
date 2019-10-14 00:00:00
team Portugal
score 1.0
suf_score 2.0
rank 5.0
rank_suf 25.0
rank_change -1.0
total_points 1643.0
result 0
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1149, dtype: object
date 2019-10-14 00:00:00
team Andorra
score 0.0
suf_score 2.0
rank 139.0
rank_suf 41.0
rank_change 3.0
total_points 1075.0
result 0
rank_dif -98.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1150, dtype: object
date 2019-10-14 00:00:00
team Turkey
score 1.0
suf_score 1.0
rank 36.0
rank_suf 2.0
rank_change -1.0
total_points 1475.0
result 2
rank_dif -34.0
points_by_rank 0.5
team_points 1
country_classification Classe A
Name: 1151, dtype: object
date 2019-10-14 00:00:00
team Albania
score 4.0
suf_score 0.0
rank 64.0
rank_suf 172.0
rank_change 0.0
total_points 1372.0
result 1
rank_dif 108.0
points_by_rank 0.017442
team_points 3
country_classification Classe B
Name: 1152, dtype: object
date 2019-10-14 00:00:00
team Northern Ireland
score 3.0
suf_score 2.0
rank 33.0
rank_suf 44.0
rank_change 4.0
total_points 1488.0
result 1
rank_dif 11.0
points_by_rank 0.068182
team_points 3
country_classification Classe A
Name: 1153, dtype: object
date 2019-10-14 00:00:00
team Botswana
score 0.0
suf_score 1.0
rank 148.0
rank_suf 49.0
rank_change 1.0
total_points 1059.0
result 0
rank_dif -99.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1154, dtype: object
date 2019-10-14 00:00:00
team Tanzania
score 0.0
suf_score 0.0
rank 135.0
rank_suf 130.0
rank_change -2.0
total_points 1083.0
result 2
rank_dif -5.0
points_by_rank 0.007692
team_points 1
country_classification Classe C
Name: 1155, dtype: object
date 2019-10-14 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 2.0
rank 100.0
rank_suf 26.0
rank_change -1.0
total_points 1226.0
result 0
rank_dif -74.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1156, dtype: object
date 2019-10-14 00:00:00
team Antigua and Barbuda
score 1.0
suf_score 5.0
rank 126.0
rank_suf 176.0
rank_change 2.0
total_points 1137.0
result 0
rank_dif 50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1157, dtype: object
date 2019-10-14 00:00:00
team Nicaragua
score 4.0
suf_score 0.0
rank 148.0
rank_suf 180.0
rank_change 11.0
total_points 1059.0
result 1
rank_dif 32.0
points_by_rank 0.016667
team_points 3
country_classification Classe C
Name: 1158, dtype: object
date 2019-10-15 00:00:00
team Georgia
score 3.0
suf_score 2.0
rank 91.0
rank_suf 197.0
rank_change -3.0
total_points 1264.0
result 1
rank_dif 106.0
points_by_rank 0.015228
team_points 3
country_classification Classe B
Name: 1159, dtype: object
date 2019-10-15 00:00:00
team Republic of Ireland
score 0.0
suf_score 2.0
rank 28.0
rank_suf 11.0
rank_change -4.0
total_points 1496.0
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1160, dtype: object
date 2019-10-15 00:00:00
team Malta
score 0.0
suf_score 1.0
rank 179.0
rank_suf 109.0
rank_change -2.0
total_points 933.0
result 0
rank_dif -70.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1161, dtype: object
date 2019-10-15 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 7.0
rank_suf 18.0
rank_change -2.0
total_points 1631.0
result 2
rank_dif 11.0
points_by_rank 0.055556
team_points 1
country_classification Classe S-
Name: 1162, dtype: object
date 2019-10-15 00:00:00
team Norway
score 1.0
suf_score 1.0
rank 47.0
rank_suf 31.0
rank_change -3.0
total_points 1435.0
result 2
rank_dif -16.0
points_by_rank 0.032258
team_points 1
country_classification Classe A
Name: 1163, dtype: object
date 2019-10-15 00:00:00
team Latvia
score 1.0
suf_score 3.0
rank 139.0
rank_suf 86.0
rank_change 5.0
total_points 1075.0
result 0
rank_dif -53.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1164, dtype: object
date 2019-10-15 00:00:00
team Armenia
score 0.0
suf_score 3.0
rank 96.0
rank_suf 54.0
rank_change -2.0
total_points 1242.0
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1165, dtype: object
date 2019-10-15 00:00:00
team Italy
score 5.0
suf_score 0.0
rank 15.0
rank_suf 182.0
rank_change -1.0
total_points 1583.0
result 1
rank_dif 167.0
points_by_rank 0.016484
team_points 3
country_classification Classe A
Name: 1166, dtype: object
date 2019-10-15 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 2.0
rank 46.0
rank_suf 60.0
rank_change 4.0
total_points 1438.0
result 0
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1167, dtype: object
date 2019-10-15 00:00:00
team Colombia
score 0.0
suf_score 3.0
rank 9.0
rank_suf 38.0
rank_change 1.0
total_points 1622.0
result 0
rank_dif 29.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1168, dtype: object
date 2019-10-15 00:00:00
team Guatemala
score 0.0
suf_score 0.0
rank 133.0
rank_suf 167.0
rank_change -11.0
total_points 1088.0
result 2
rank_dif 34.0
points_by_rank 0.005988
team_points 1
country_classification Classe C
Name: 1169, dtype: object
date 2019-10-15 00:00:00
team Haiti
score 1.0
suf_score 3.0
rank 86.0
rank_suf 72.0
rank_change 3.0
total_points 1277.0
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1170, dtype: object
date 2019-10-15 00:00:00
team Guinea
score 2.0
suf_score 3.0
rank 74.0
rank_suf 17.0
rank_change -1.0
total_points 1325.0
result 0
rank_dif -57.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1171, dtype: object
date 2019-10-15 00:00:00
team Luxembourg
score 0.0
suf_score 4.0
rank 93.0
rank_suf 14.0
rank_change 2.0
total_points 1255.0
result 0
rank_dif -79.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1172, dtype: object
date 2019-10-15 00:00:00
team Turkmenistan
score 1.0
suf_score 1.0
rank 131.0
rank_suf 156.0
rank_change -1.0
total_points 1094.0
result 2
rank_dif 25.0
points_by_rank 0.00641
team_points 1
country_classification Classe C
Name: 1173, dtype: object
date 2019-10-15 00:00:00
team Libya
score 0.0
suf_score 0.0
rank 102.0
rank_suf 105.0
rank_change -3.0
total_points 1212.0
result 2
rank_dif 3.0
points_by_rank 0.009524
team_points 1
country_classification Classe B
Name: 1174, dtype: object
date 2019-10-15 00:00:00
team Gabon
score 3.0
suf_score 2.0
rank 88.0
rank_suf 39.0
rank_change -2.0
total_points 1272.0
result 1
rank_dif -49.0
points_by_rank 0.076923
team_points 3
country_classification Classe B
Name: 1175, dtype: object
date 2019-10-15 00:00:00
team Uruguay
score 1.0
suf_score 1.0
rank 6.0
rank_suf 19.0
rank_change 1.0
total_points 1639.0
result 2
rank_dif 13.0
points_by_rank 0.052632
team_points 1
country_classification Classe S-
Name: 1176, dtype: object
date 2019-10-15 00:00:00
team United States
score 0.0
suf_score 2.0
rank 21.0
rank_suf 75.0
rank_change -1.0
total_points 1545.0
result 0
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1177, dtype: object
date 2019-10-15 00:00:00
team Panama
score 1.0
suf_score 3.0
rank 77.0
rank_suf 12.0
rank_change 3.0
total_points 1316.0
result 0
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1178, dtype: object
date 2019-10-15 00:00:00
team Montserrat
score 0.0
suf_score 0.0
rank 187.0
rank_suf 155.0
rank_change -9.0
total_points 912.0
result 2
rank_dif -32.0
points_by_rank 0.006452
team_points 1
country_classification Classe D
Name: 1179, dtype: object
date 2019-10-15 00:00:00
team Jamaica
score 6.0
suf_score 0.0
rank 47.0
rank_suf 195.0
rank_change -5.0
total_points 1435.0
result 1
rank_dif 148.0
points_by_rank 0.015385
team_points 3
country_classification Classe A
Name: 1180, dtype: object
date 2019-10-15 00:00:00
team Puerto Rico
score 3.0
suf_score 2.0
rank 181.0
rank_suf 209.0
rank_change 1.0
total_points 929.0
result 1
rank_dif 28.0
points_by_rank 0.014354
team_points 3
country_classification Classe D
Name: 1181, dtype: object
date 2019-10-15 00:00:00
team Guam
score 0.0
suf_score 4.0
rank 195.0
rank_suf 85.0
rank_change 5.0
total_points 890.0
result 0
rank_dif -110.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1182, dtype: object
date 2019-10-15 00:00:00
team China PR
score 0.0
suf_score 0.0
rank 68.0
rank_suf 127.0
rank_change -3.0
total_points 1340.0
result 2
rank_dif 59.0
points_by_rank 0.007874
team_points 1
country_classification Classe B
Name: 1183, dtype: object
date 2019-10-15 00:00:00
team Nepal
score 0.0
suf_score 3.0
rank 161.0
rank_suf 98.0
rank_change -5.0
total_points 999.0
result 0
rank_dif -63.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1184, dtype: object
date 2019-10-15 00:00:00
team Iraq
score 4.0
suf_score 0.0
rank 79.0
rank_suf 169.0
rank_change 2.0
total_points 1314.0
result 1
rank_dif 90.0
points_by_rank 0.017751
team_points 3
country_classification Classe B
Name: 1185, dtype: object
date 2019-10-15 00:00:00
team Iran
score 0.0
suf_score 1.0
rank 23.0
rank_suf 105.0
rank_change 0.0
total_points 1522.0
result 0
rank_dif 82.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1186, dtype: object
date 2019-10-15 00:00:00
team Saudi Arabia
score 0.0
suf_score 0.0
rank 70.0
rank_suf 101.0
rank_change 2.0
total_points 1336.0
result 2
rank_dif 31.0
points_by_rank 0.009901
team_points 1
country_classification Classe B
Name: 1187, dtype: object
date 2019-10-15 00:00:00
team Uzbekistan
score 3.0
suf_score 1.0
rank 88.0
rank_suf 157.0
rank_change 4.0
total_points 1272.0
result 1
rank_dif 69.0
points_by_rank 0.019108
team_points 3
country_classification Classe B
Name: 1188, dtype: object
date 2019-10-15 00:00:00
team Bangladesh
score 1.0
suf_score 1.0
rank 187.0
rank_suf 104.0
rank_change 5.0
total_points 912.0
result 2
rank_dif -83.0
points_by_rank 0.009615
team_points 1
country_classification Classe D
Name: 1189, dtype: object
date 2019-10-15 00:00:00
team Oman
score 1.0
suf_score 2.0
rank 84.0
rank_suf 62.0
rank_change -3.0
total_points 1292.0
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1190, dtype: object
date 2019-10-15 00:00:00
team Japan
score 3.0
suf_score 0.0
rank 31.0
rank_suf 115.0
rank_change -2.0
total_points 1490.0
result 1
rank_dif 84.0
points_by_rank 0.026087
team_points 3
country_classification Classe A
Name: 1191, dtype: object
date 2019-10-15 00:00:00
team United Arab Emirates
score 1.0
suf_score 2.0
rank 66.0
rank_suf 114.0
rank_change 1.0
total_points 1365.0
result 0
rank_dif 48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1192, dtype: object
date 2019-10-15 00:00:00
team Vietnam
score 3.0
suf_score 1.0
rank 99.0
rank_suf 167.0
rank_change 2.0
total_points 1231.0
result 1
rank_dif 68.0
points_by_rank 0.017964
team_points 3
country_classification Classe B
Name: 1193, dtype: object
date 2019-10-15 00:00:00
team Lebanon
score 3.0
suf_score 0.0
rank 94.0
rank_suf 202.0
rank_change 7.0
total_points 1253.0
result 1
rank_dif 108.0
points_by_rank 0.014851
team_points 3
country_classification Classe B
Name: 1194, dtype: object
date 2019-10-18 00:00:00
team Tanzania
score 2.0
suf_score 1.0
rank 135.0
rank_suf 128.0
rank_change -2.0
total_points 1083.0
result 1
rank_dif -7.0
points_by_rank 0.023438
team_points 3
country_classification Classe C
Name: 1195, dtype: object
date 2019-10-19 00:00:00
team Ethiopia
score 1.0
suf_score 1.0
rank 151.0
rank_suf 130.0
rank_change 1.0
total_points 1054.0
result 2
rank_dif -21.0
points_by_rank 0.007692
team_points 1
country_classification Classe C
Name: 1196, dtype: object
date 2019-10-19 00:00:00
team Burundi
score 0.0
suf_score 3.0
rank 144.0
rank_suf 80.0
rank_change -4.0
total_points 1065.0
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1197, dtype: object
date 2019-10-19 00:00:00
team Algeria
score 0.0
suf_score 3.0
rank 38.0
rank_suf 39.0
rank_change -2.0
total_points 1466.0
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1198, dtype: object
date 2019-10-19 00:00:00
team Madagascar
score 0.0
suf_score 2.0
rank 95.0
rank_suf 120.0
rank_change -1.0
total_points 1249.0
result 0
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1199, dtype: object
date 2019-10-19 00:00:00
team Eswatini
score 2.0
suf_score 2.0
rank 150.0
rank_suf 81.0
rank_change 11.0
total_points 1055.0
result 2
rank_dif -69.0
points_by_rank 0.012346
team_points 1
country_classification Classe C
Name: 1200, dtype: object
date 2019-10-19 00:00:00
team Togo
score 0.0
suf_score 2.0
rank 124.0
rank_suf 34.0
rank_change -4.0
total_points 1140.0
result 0
rank_dif -90.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1201, dtype: object
date 2019-10-20 00:00:00
team Equatorial Guinea
score 0.0
suf_score 1.0
rank 134.0
rank_suf 90.0
rank_change -5.0
total_points 1084.0
result 0
rank_dif -44.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1202, dtype: object
date 2019-10-20 00:00:00
team Tunisia
score 2.0
suf_score 1.0
rank 29.0
rank_suf 102.0
rank_change 0.0
total_points 1493.0
result 1
rank_dif 73.0
points_by_rank 0.029412
team_points 3
country_classification Classe A
Name: 1203, dtype: object
date 2019-10-20 00:00:00
team Zimbabwe
score 0.0
suf_score 0.0
rank 118.0
rank_suf 137.0
rank_change 6.0
total_points 1165.0
result 2
rank_dif 19.0
points_by_rank 0.007299
team_points 1
country_classification Classe C
Name: 1204, dtype: object
date 2019-10-20 00:00:00
team Senegal
score 0.0
suf_score 1.0
rank 20.0
rank_suf 74.0
rank_change 0.0
total_points 1546.0
result 0
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1205, dtype: object
date 2019-10-20 00:00:00
team Mauritania
score 0.0
suf_score 2.0
rank 105.0
rank_suf 57.0
rank_change -1.0
total_points 1206.0
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1206, dtype: object
date 2019-10-20 00:00:00
team Ghana
score 0.0
suf_score 0.0
rank 51.0
rank_suf 61.0
rank_change 1.0
total_points 1429.0
result 2
rank_dif 10.0
points_by_rank 0.016393
team_points 1
country_classification Classe A
Name: 1207, dtype: object
date 2019-11-07 00:00:00
team Liberia
score 0.0
suf_score 1.0
rank 152.0
rank_suf 49.0
rank_change 0.0
total_points 1047.0
result 0
rank_dif -103.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1208, dtype: object
date 2019-11-07 00:00:00
team Cuba
score 0.0
suf_score 0.0
rank 179.0
rank_suf 137.0
rank_change 1.0
total_points 938.0
result 2
rank_dif -42.0
points_by_rank 0.007299
team_points 1
country_classification Classe D
Name: 1209, dtype: object
date 2019-11-09 00:00:00
team Tajikistan
score 0.0
suf_score 1.0
rank 116.0
rank_suf 158.0
rank_change 1.0
total_points 1168.0
result 0
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1210, dtype: object
date 2019-11-09 00:00:00
team Zambia
score 2.0
suf_score 0.0
rank 81.0
rank_suf 119.0
rank_change 0.0
total_points 1299.0
result 1
rank_dif 38.0
points_by_rank 0.02521
team_points 3
country_classification Classe B
Name: 1211, dtype: object
date 2019-11-10 00:00:00
team Cuba
score 1.0
suf_score 0.0
rank 179.0
rank_suf 137.0
rank_change 1.0
total_points 938.0
result 1
rank_dif -42.0
points_by_rank 0.021898
team_points 3
country_classification Classe D
Name: 1212, dtype: object
date 2019-11-10 00:00:00
team Anguilla
score 0.0
suf_score 15.0
rank 209.0
rank_suf 102.0
rank_change 0.0
total_points 831.0
result 0
rank_dif -107.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1213, dtype: object
date 2019-11-13 00:00:00
team Chad
score 1.0
suf_score 2.0
rank 176.0
rank_suf 119.0
rank_change -1.0
total_points 955.0
result 0
rank_dif -57.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1214, dtype: object
date 2019-11-13 00:00:00
team South Sudan
score 0.0
suf_score 1.0
rank 162.0
rank_suf 124.0
rank_change -11.0
total_points 997.0
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1215, dtype: object
date 2019-11-13 00:00:00
team Uganda
score 0.0
suf_score 0.0
rank 79.0
rank_suf 60.0
rank_change -1.0
total_points 1311.0
result 2
rank_dif -19.0
points_by_rank 0.016667
team_points 1
country_classification Classe B
Name: 1216, dtype: object
date 2019-11-13 00:00:00
team Gambia
score 3.0
suf_score 1.0
rank 166.0
rank_suf 120.0
rank_change 0.0
total_points 990.0
result 1
rank_dif -46.0
points_by_rank 0.025
team_points 3
country_classification Classe D
Name: 1217, dtype: object
date 2019-11-13 00:00:00
team Burundi
score 0.0
suf_score 2.0
rank 143.0
rank_suf 112.0
rank_change -1.0
total_points 1063.0
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1218, dtype: object
date 2019-11-13 00:00:00
team Eswatini
score 0.0
suf_score 3.0
rank 147.0
rank_suf 123.0
rank_change -3.0
total_points 1055.0
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1219, dtype: object
date 2019-11-13 00:00:00
team Congo
score 0.0
suf_score 2.0
rank 92.0
rank_suf 20.0
rank_change 2.0
total_points 1265.0
result 0
rank_dif -72.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1220, dtype: object
date 2019-11-13 00:00:00
team Benin
score 1.0
suf_score 2.0
rank 82.0
rank_suf 35.0
rank_change -1.0
total_points 1293.0
result 0
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1221, dtype: object
date 2019-11-13 00:00:00
team Lesotho
score 1.0
suf_score 1.0
rank 138.0
rank_suf 117.0
rank_change 1.0
total_points 1076.0
result 2
rank_dif -21.0
points_by_rank 0.008547
team_points 1
country_classification Classe C
Name: 1222, dtype: object
date 2019-11-14 00:00:00
team Guinea
score 2.0
suf_score 2.0
rank 78.0
rank_suf 59.0
rank_change 4.0
total_points 1317.0
result 2
rank_dif -19.0
points_by_rank 0.016949
team_points 1
country_classification Classe B
Name: 1223, dtype: object
date 2019-11-14 00:00:00
team South Africa
score 0.0
suf_score 2.0
rank 72.0
rank_suf 51.0
rank_change 1.0
total_points 1337.0
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1224, dtype: object
date 2019-11-14 00:00:00
team Rwanda
score 0.0
suf_score 2.0
rank 129.0
rank_suf 112.0
rank_change -1.0
total_points 1106.0
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1225, dtype: object
date 2019-11-14 00:00:00
team Kenya
score 1.0
suf_score 1.0
rank 108.0
rank_suf 49.0
rank_change 1.0
total_points 1195.0
result 2
rank_dif -59.0
points_by_rank 0.020408
team_points 1
country_classification Classe C
Name: 1226, dtype: object
date 2019-11-14 00:00:00
team Comoros
score 1.0
suf_score 0.0
rank 142.0
rank_suf 124.0
rank_change -5.0
total_points 1067.0
result 1
rank_dif -18.0
points_by_rank 0.024194
team_points 3
country_classification Classe C
Name: 1227, dtype: object
date 2019-11-14 00:00:00
team Zambia
score 0.0
suf_score 5.0
rank 81.0
rank_suf 38.0
rank_change 0.0
total_points 1299.0
result 0
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1228, dtype: object
date 2019-11-14 00:00:00
team Montenegro
score 0.0
suf_score 7.0
rank 61.0
rank_suf 4.0
rank_change 2.0
total_points 1371.0
result 0
rank_dif -57.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1229, dtype: object
date 2019-11-14 00:00:00
team Kosovo
score 1.0
suf_score 2.0
rank 114.0
rank_suf 43.0
rank_change -5.0
total_points 1184.0
result 0
rank_dif -71.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1230, dtype: object
date 2019-11-14 00:00:00
team Lithuania
score 0.0
suf_score 6.0
rank 132.0
rank_suf 6.0
rank_change 1.0
total_points 1086.0
result 0
rank_dif -126.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1231, dtype: object
date 2019-11-14 00:00:00
team Luxembourg
score 2.0
suf_score 3.0
rank 96.0
rank_suf 33.0
rank_change 3.0
total_points 1248.0
result 0
rank_dif -63.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1232, dtype: object
date 2019-11-14 00:00:00
team Iceland
score 0.0
suf_score 0.0
rank 40.0
rank_suf 32.0
rank_change -1.0
total_points 1460.0
result 2
rank_dif -8.0
points_by_rank 0.03125
team_points 1
country_classification Classe A
Name: 1233, dtype: object
date 2019-11-14 00:00:00
team Andorra
score 2.0
suf_score 2.0
rank 136.0
rank_suf 65.0
rank_change -3.0
total_points 1080.0
result 2
rank_dif -71.0
points_by_rank 0.015385
team_points 1
country_classification Classe C
Name: 1234, dtype: object
date 2019-11-14 00:00:00
team Moldova
score 1.0
suf_score 2.0
rank 175.0
rank_suf 2.0
rank_change 3.0
total_points 963.0
result 0
rank_dif -173.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1235, dtype: object
date 2019-11-14 00:00:00
team Costa Rica
score 2.0
suf_score 1.0
rank 47.0
rank_suf 100.0
rank_change 4.0
total_points 1436.0
result 1
rank_dif 53.0
points_by_rank 0.03
team_points 3
country_classification Classe A
Name: 1236, dtype: object
date 2019-11-14 00:00:00
team British Virgin Islands
score 0.0
suf_score 3.0
rank 208.0
rank_suf 201.0
rank_change 5.0
total_points 854.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1237, dtype: object
date 2019-11-14 00:00:00
team Paraguay
score 1.0
suf_score 0.0
rank 41.0
rank_suf 61.0
rank_change 1.0
total_points 1458.0
result 1
rank_dif 20.0
points_by_rank 0.04918
team_points 3
country_classification Classe A
Name: 1238, dtype: object
date 2019-11-14 00:00:00
team Mongolia
score 1.0
suf_score 1.0
rank 186.0
rank_suf 172.0
rank_change 3.0
total_points 915.0
result 2
rank_dif -14.0
points_by_rank 0.005814
team_points 1
country_classification Classe D
Name: 1239, dtype: object
date 2019-11-14 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 3.0
rank 102.0
rank_suf 63.0
rank_change 2.0
total_points 1213.0
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1240, dtype: object
date 2019-11-14 00:00:00
team Singapore
score 0.0
suf_score 2.0
rank 159.0
rank_suf 57.0
rank_change 2.0
total_points 1008.0
result 0
rank_dif -102.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1241, dtype: object
date 2019-11-14 00:00:00
team New Zealand
score 1.0
suf_score 3.0
rank 121.0
rank_suf 36.0
rank_change -1.0
total_points 1157.0
result 0
rank_dif -85.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1242, dtype: object
date 2019-11-14 00:00:00
team Estonia
score 0.0
suf_score 1.0
rank 104.0
rank_suf 22.0
rank_change 2.0
total_points 1209.0
result 0
rank_dif -82.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1243, dtype: object
date 2019-11-14 00:00:00
team Philippines
score 2.0
suf_score 1.0
rank 126.0
rank_suf 154.0
rank_change -1.0
total_points 1134.0
result 1
rank_dif 28.0
points_by_rank 0.019481
team_points 3
country_classification Classe C
Name: 1244, dtype: object
date 2019-11-14 00:00:00
team China PR
score 1.0
suf_score 2.0
rank 69.0
rank_suf 83.0
rank_change 1.0
total_points 1339.0
result 0
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1245, dtype: object
date 2019-11-14 00:00:00
team Australia
score 1.0
suf_score 0.0
rank 44.0
rank_suf 98.0
rank_change 0.0
total_points 1450.0
result 1
rank_dif 54.0
points_by_rank 0.030612
team_points 3
country_classification Classe A
Name: 1246, dtype: object
date 2019-11-14 00:00:00
team Iran
score 1.0
suf_score 2.0
rank 27.0
rank_suf 74.0
rank_change 4.0
total_points 1505.0
result 0
rank_dif 47.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1247, dtype: object
date 2019-11-14 00:00:00
team Bahrain
score 0.0
suf_score 0.0
rank 101.0
rank_suf 145.0
rank_change -4.0
total_points 1220.0
result 2
rank_dif 44.0
points_by_rank 0.006897
team_points 1
country_classification Classe B
Name: 1248, dtype: object
date 2019-11-14 00:00:00
team Saudi Arabia
score 3.0
suf_score 2.0
rank 69.0
rank_suf 85.0
rank_change -1.0
total_points 1339.0
result 1
rank_dif 16.0
points_by_rank 0.035294
team_points 3
country_classification Classe B
Name: 1249, dtype: object
date 2019-11-14 00:00:00
team Palestine
score 0.0
suf_score 1.0
rank 99.0
rank_suf 141.0
rank_change -2.0
total_points 1226.0
result 0
rank_dif 42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1250, dtype: object
date 2019-11-14 00:00:00
team India
score 1.0
suf_score 1.0
rank 106.0
rank_suf 149.0
rank_change 2.0
total_points 1201.0
result 2
rank_dif 43.0
points_by_rank 0.006711
team_points 1
country_classification Classe B
Name: 1251, dtype: object
date 2019-11-14 00:00:00
team Bangladesh
score 1.0
suf_score 4.0
rank 184.0
rank_suf 84.0
rank_change -3.0
total_points 920.0
result 0
rank_dif -100.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1252, dtype: object
date 2019-11-14 00:00:00
team Tajikistan
score 3.0
suf_score 4.0
rank 116.0
rank_suf 147.0
rank_change 1.0
total_points 1168.0
result 0
rank_dif 31.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1253, dtype: object
date 2019-11-14 00:00:00
team United Arab Emirates
score 0.0
suf_score 1.0
rank 67.0
rank_suf 97.0
rank_change 1.0
total_points 1353.0
result 0
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1254, dtype: object
date 2019-11-14 00:00:00
team Thailand
score 1.0
suf_score 2.0
rank 109.0
rank_suf 158.0
rank_change -5.0
total_points 1193.0
result 0
rank_dif 49.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1255, dtype: object
date 2019-11-14 00:00:00
team South Korea
score 0.0
suf_score 0.0
rank 39.0
rank_suf 91.0
rank_change 2.0
total_points 1466.0
result 2
rank_dif 52.0
points_by_rank 0.010989
team_points 1
country_classification Classe A
Name: 1256, dtype: object
date 2019-11-15 00:00:00
team Mauritania
score 0.0
suf_score 0.0
rank 105.0
rank_suf 42.0
rank_change 0.0
total_points 1205.0
result 2
rank_dif -63.0
points_by_rank 0.02381
team_points 1
country_classification Classe B
Name: 1257, dtype: object
date 2019-11-15 00:00:00
team Botswana
score 0.0
suf_score 0.0
rank 146.0
rank_suf 117.0
rank_change -2.0
total_points 1057.0
result 2
rank_dif -29.0
points_by_rank 0.008547
team_points 1
country_classification Classe C
Name: 1258, dtype: object
date 2019-11-15 00:00:00
team Equatorial Guinea
score 1.0
suf_score 2.0
rank 135.0
rank_suf 133.0
rank_change 1.0
total_points 1083.0
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1259, dtype: object
date 2019-11-15 00:00:00
team Libya
score 1.0
suf_score 4.0
rank 103.0
rank_suf 29.0
rank_change 1.0
total_points 1211.0
result 0
rank_dif -74.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1260, dtype: object
date 2019-11-15 00:00:00
team Gibraltar
score 0.0
suf_score 6.0
rank 196.0
rank_suf 14.0
rank_change -1.0
total_points 882.0
result 0
rank_dif -182.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1261, dtype: object
date 2019-11-15 00:00:00
team Georgia
score 0.0
suf_score 1.0
rank 90.0
rank_suf 13.0
rank_change -1.0
total_points 1274.0
result 0
rank_dif -77.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1262, dtype: object
date 2019-11-15 00:00:00
team Faroe Islands
score 0.0
suf_score 4.0
rank 110.0
rank_suf 45.0
rank_change 1.0
total_points 1192.0
result 0
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1263, dtype: object
date 2019-11-15 00:00:00
team Malta
score 0.0
suf_score 7.0
rank 182.0
rank_suf 8.0
rank_change 3.0
total_points 924.0
result 0
rank_dif -174.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1264, dtype: object
date 2019-11-15 00:00:00
team Sweden
score 2.0
suf_score 0.0
rank 18.0
rank_suf 29.0
rank_change 0.0
total_points 1563.0
result 1
rank_dif 11.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 1265, dtype: object
date 2019-11-15 00:00:00
team Liechtenstein
score 0.0
suf_score 3.0
rank 181.0
rank_suf 55.0
rank_change -1.0
total_points 933.0
result 0
rank_dif -126.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1266, dtype: object
date 2019-11-15 00:00:00
team Argentina
score 1.0
suf_score 0.0
rank 9.0
rank_suf 3.0
rank_change -1.0
total_points 1617.0
result 1
rank_dif -6.0
points_by_rank 1.0
team_points 3
country_classification Classe S-
Name: 1267, dtype: object
date 2019-11-15 00:00:00
team Italy
score 3.0
suf_score 0.0
rank 15.0
rank_suf 48.0
rank_change 0.0
total_points 1593.0
result 1
rank_dif 33.0
points_by_rank 0.0625
team_points 3
country_classification Classe A
Name: 1268, dtype: object
date 2019-11-15 00:00:00
team Greece
score 1.0
suf_score 0.0
rank 58.0
rank_suf 99.0
rank_change -2.0
total_points 1388.0
result 1
rank_dif 41.0
points_by_rank 0.030303
team_points 3
country_classification Classe B
Name: 1269, dtype: object
date 2019-11-15 00:00:00
team Canada
score 1.0
suf_score 4.0
rank 69.0
rank_suf 23.0
rank_change -6.0
total_points 1339.0
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1270, dtype: object
date 2019-11-15 00:00:00
team Mexico
score 3.0
suf_score 0.0
rank 11.0
rank_suf 80.0
rank_change -1.0
total_points 1613.0
result 1
rank_dif 69.0
points_by_rank 0.0375
team_points 3
country_classification Classe S-
Name: 1271, dtype: object
date 2019-11-15 00:00:00
team Jamaica
score 2.0
suf_score 0.0
rank 45.0
rank_suf 127.0
rank_change -2.0
total_points 1441.0
result 1
rank_dif 82.0
points_by_rank 0.023622
team_points 3
country_classification Classe A
Name: 1272, dtype: object
date 2019-11-15 00:00:00
team Aruba
score 2.0
suf_score 4.0
rank 195.0
rank_suf 174.0
rank_change 0.0
total_points 885.0
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1273, dtype: object
date 2019-11-15 00:00:00
team Dominica
score 0.0
suf_score 4.0
rank 187.0
rank_suf 150.0
rank_change 7.0
total_points 913.0
result 0
rank_dif -37.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1274, dtype: object
date 2019-11-15 00:00:00
team Peru
score 0.0
suf_score 1.0
rank 19.0
rank_suf 10.0
rank_change 0.0
total_points 1548.0
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1275, dtype: object
date 2019-11-15 00:00:00
team Uruguay
score 2.0
suf_score 1.0
rank 5.0
rank_suf 50.0
rank_change -1.0
total_points 1642.0
result 1
rank_dif 45.0
points_by_rank 0.06
team_points 3
country_classification Classe S-
Name: 1276, dtype: object
date 2019-11-16 00:00:00
team Ethiopia
score 0.0
suf_score 1.0
rank 151.0
rank_suf 95.0
rank_change 0.0
total_points 1049.0
result 0
rank_dif -56.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1277, dtype: object
date 2019-11-16 00:00:00
team Netherlands
score 0.0
suf_score 0.0
rank 12.0
rank_suf 34.0
rank_change -1.0
total_points 1602.0
result 2
rank_dif 22.0
points_by_rank 0.029412
team_points 1
country_classification Classe S-
Name: 1278, dtype: object
date 2019-11-16 00:00:00
team Belarus
score 0.0
suf_score 4.0
rank 86.0
rank_suf 16.0
rank_change 4.0
total_points 1286.0
result 0
rank_dif -70.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1279, dtype: object
date 2019-11-16 00:00:00
team Slovakia
score 1.0
suf_score 3.0
rank 31.0
rank_suf 7.0
rank_change 2.0
total_points 1493.0
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1280, dtype: object
date 2019-11-16 00:00:00
team Wales
score 2.0
suf_score 0.0
rank 24.0
rank_suf 111.0
rank_change 1.0
total_points 1524.0
result 1
rank_dif 87.0
points_by_rank 0.027027
team_points 3
country_classification Classe A
Name: 1281, dtype: object
date 2019-11-16 00:00:00
team Latvia
score 0.0
suf_score 1.0
rank 143.0
rank_suf 65.0
rank_change 4.0
total_points 1063.0
result 0
rank_dif -78.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1282, dtype: object
date 2019-11-16 00:00:00
team North Macedonia
score 1.0
suf_score 2.0
rank 68.0
rank_suf 25.0
rank_change -1.0
total_points 1344.0
result 0
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1283, dtype: object
date 2019-11-16 00:00:00
team Poland
score 2.0
suf_score 1.0
rank 21.0
rank_suf 89.0
rank_change -1.0
total_points 1544.0
result 1
rank_dif 68.0
points_by_rank 0.033708
team_points 3
country_classification Classe A
Name: 1284, dtype: object
date 2019-11-16 00:00:00
team Scotland
score 2.0
suf_score 1.0
rank 53.0
rank_suf 93.0
rank_change 1.0
total_points 1406.0
result 1
rank_dif 40.0
points_by_rank 0.032258
team_points 3
country_classification Classe A
Name: 1285, dtype: object
date 2019-11-16 00:00:00
team Kazakhstan
score 3.0
suf_score 1.0
rank 121.0
rank_suf 209.0
rank_change 5.0
total_points 1157.0
result 1
rank_dif 88.0
points_by_rank 0.014354
team_points 3
country_classification Classe C
Name: 1286, dtype: object
date 2019-11-16 00:00:00
team Belgium
score 4.0
suf_score 1.0
rank 1.0
rank_suf 37.0
rank_change 0.0
total_points 1755.0
result 1
rank_dif 36.0
points_by_rank 0.081081
team_points 3
country_classification Classe S
Name: 1287, dtype: object
date 2019-11-16 00:00:00
team Montserrat
score 0.0
suf_score 1.0
rank 189.0
rank_suf 73.0
rank_change 2.0
total_points 911.0
result 0
rank_dif -116.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1288, dtype: object
date 2019-11-16 00:00:00
team Puerto Rico
score 0.0
suf_score 5.0
rank 178.0
rank_suf 131.0
rank_change -3.0
total_points 940.0
result 0
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1289, dtype: object
date 2019-11-17 00:00:00
team Mali
score 2.0
suf_score 0.0
rank 59.0
rank_suf 176.0
rank_change 2.0
total_points 1386.0
result 1
rank_dif 117.0
points_by_rank 0.017045
team_points 3
country_classification Classe B
Name: 1290, dtype: object
date 2019-11-17 00:00:00
team Namibia
score 0.0
suf_score 2.0
rank 119.0
rank_suf 78.0
rank_change -1.0
total_points 1163.0
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1291, dtype: object
date 2019-11-17 00:00:00
team Burkina Faso
score 2.0
suf_score 1.0
rank 60.0
rank_suf 162.0
rank_change -1.0
total_points 1378.0
result 1
rank_dif 102.0
points_by_rank 0.018519
team_points 3
country_classification Classe B
Name: 1292, dtype: object
date 2019-11-17 00:00:00
team Malawi
score 0.0
suf_score 2.0
rank 124.0
rank_suf 79.0
rank_change 0.0
total_points 1140.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1293, dtype: object
date 2019-11-17 00:00:00
team Sudan
score 0.0
suf_score 1.0
rank 128.0
rank_suf 72.0
rank_change 0.0
total_points 1111.0
result 0
rank_dif -56.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1294, dtype: object
date 2019-11-17 00:00:00
team Angola
score 1.0
suf_score 2.0
rank 120.0
rank_suf 87.0
rank_change -1.0
total_points 1161.0
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1295, dtype: object
date 2019-11-17 00:00:00
team Cameroon
score 1.0
suf_score 0.0
rank 52.0
rank_suf 129.0
rank_change -1.0
total_points 1409.0
result 1
rank_dif 77.0
points_by_rank 0.023256
team_points 3
country_classification Classe A
Name: 1296, dtype: object
date 2019-11-17 00:00:00
team Guinea-Bissau
score 0.0
suf_score 3.0
rank 123.0
rank_suf 92.0
rank_change 0.0
total_points 1155.0
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1297, dtype: object
date 2019-11-17 00:00:00
team Senegal
score 4.0
suf_score 1.0
rank 20.0
rank_suf 147.0
rank_change 0.0
total_points 1546.0
result 1
rank_dif 127.0
points_by_rank 0.020408
team_points 3
country_classification Classe A
Name: 1298, dtype: object
date 2019-11-17 00:00:00
team Sierra Leone
score 0.0
suf_score 1.0
rank 117.0
rank_suf 82.0
rank_change 0.0
total_points 1167.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1299, dtype: object
date 2019-11-17 00:00:00
team Nigeria
score 4.0
suf_score 2.0
rank 35.0
rank_suf 138.0
rank_change 1.0
total_points 1481.0
result 1
rank_dif 103.0
points_by_rank 0.021739
team_points 3
country_classification Classe A
Name: 1300, dtype: object
date 2019-11-17 00:00:00
team England
score 4.0
suf_score 0.0
rank 4.0
rank_suf 114.0
rank_change 0.0
total_points 1651.0
result 1
rank_dif 110.0
points_by_rank 0.026316
team_points 3
country_classification Classe S-
Name: 1301, dtype: object
date 2019-11-17 00:00:00
team Czech Republic
score 0.0
suf_score 1.0
rank 43.0
rank_suf 61.0
rank_change -1.0
total_points 1454.0
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1302, dtype: object
date 2019-11-17 00:00:00
team Portugal
score 2.0
suf_score 0.0
rank 6.0
rank_suf 96.0
rank_change 1.0
total_points 1632.0
result 1
rank_dif 90.0
points_by_rank 0.03125
team_points 3
country_classification Classe S-
Name: 1303, dtype: object
date 2019-11-17 00:00:00
team Ukraine
score 2.0
suf_score 2.0
rank 22.0
rank_suf 33.0
rank_change -3.0
total_points 1536.0
result 2
rank_dif 11.0
points_by_rank 0.030303
team_points 1
country_classification Classe A
Name: 1304, dtype: object
date 2019-11-17 00:00:00
team France
score 2.0
suf_score 0.0
rank 2.0
rank_suf 65.0
rank_change 0.0
total_points 1726.0
result 1
rank_dif 63.0
points_by_rank 0.046154
team_points 3
country_classification Classe S
Name: 1305, dtype: object
date 2019-11-17 00:00:00
team Turkey
score 2.0
suf_score 0.0
rank 32.0
rank_suf 136.0
rank_change -4.0
total_points 1490.0
result 1
rank_dif 104.0
points_by_rank 0.022059
team_points 3
country_classification Classe A
Name: 1306, dtype: object
date 2019-11-17 00:00:00
team Iceland
score 2.0
suf_score 1.0
rank 40.0
rank_suf 175.0
rank_change -1.0
total_points 1460.0
result 1
rank_dif 135.0
points_by_rank 0.017143
team_points 3
country_classification Classe A
Name: 1307, dtype: object
date 2019-11-17 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 4.0
rank 102.0
rank_suf 63.0
rank_change 2.0
total_points 1213.0
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1308, dtype: object
date 2019-11-17 00:00:00
team Haiti
score 1.0
suf_score 1.0
rank 88.0
rank_suf 47.0
rank_change 2.0
total_points 1281.0
result 2
rank_dif -41.0
points_by_rank 0.021277
team_points 1
country_classification Classe B
Name: 1309, dtype: object
date 2019-11-17 00:00:00
team Belize
score 2.0
suf_score 3.0
rank 168.0
rank_suf 160.0
rank_change -2.0
total_points 986.0
result 0
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1310, dtype: object
date 2019-11-17 00:00:00
team New Zealand
score 0.0
suf_score 1.0
rank 121.0
rank_suf 132.0
rank_change -1.0
total_points 1157.0
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1311, dtype: object
date 2019-11-18 00:00:00
team Egypt
score 0.0
suf_score 0.0
rank 49.0
rank_suf 142.0
rank_change 0.0
total_points 1433.0
result 2
rank_dif 93.0
points_by_rank 0.007042
team_points 1
country_classification Classe A
Name: 1312, dtype: object
date 2019-11-18 00:00:00
team Togo
score 1.0
suf_score 1.0
rank 124.0
rank_suf 108.0
rank_change 0.0
total_points 1140.0
result 2
rank_dif -16.0
points_by_rank 0.009259
team_points 1
country_classification Classe C
Name: 1313, dtype: object
date 2019-11-18 00:00:00
team Algeria
score 1.0
suf_score 0.0
rank 38.0
rank_suf 146.0
rank_change 0.0
total_points 1469.0
result 1
rank_dif 108.0
points_by_rank 0.020548
team_points 3
country_classification Classe A
Name: 1314, dtype: object
date 2019-11-18 00:00:00
team Madagascar
score 6.0
suf_score 2.0
rank 95.0
rank_suf 107.0
rank_change 0.0
total_points 1249.0
result 1
rank_dif 12.0
points_by_rank 0.028037
team_points 3
country_classification Classe B
Name: 1315, dtype: object
date 2019-11-18 00:00:00
team Denmark
score 1.0
suf_score 1.0
rank 14.0
rank_suf 36.0
rank_change 0.0
total_points 1599.0
result 2
rank_dif 22.0
points_by_rank 0.027778
team_points 1
country_classification Classe A
Name: 1316, dtype: object
date 2019-11-18 00:00:00
team Switzerland
score 6.0
suf_score 1.0
rank 13.0
rank_suf 196.0
rank_change 2.0
total_points 1601.0
result 1
rank_dif 183.0
points_by_rank 0.015306
team_points 3
country_classification Classe S-
Name: 1317, dtype: object
date 2019-11-18 00:00:00
team Norway
score 2.0
suf_score 1.0
rank 45.0
rank_suf 182.0
rank_change -2.0
total_points 1441.0
result 1
rank_dif 137.0
points_by_rank 0.016484
team_points 3
country_classification Classe A
Name: 1318, dtype: object
date 2019-11-18 00:00:00
team Romania
score 0.0
suf_score 5.0
rank 29.0
rank_suf 8.0
rank_change -2.0
total_points 1495.0
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1319, dtype: object
date 2019-11-18 00:00:00
team Faroe Islands
score 0.0
suf_score 3.0
rank 110.0
rank_suf 18.0
rank_change 1.0
total_points 1192.0
result 0
rank_dif -92.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1320, dtype: object
date 2019-11-18 00:00:00
team Armenia
score 1.0
suf_score 9.0
rank 99.0
rank_suf 15.0
rank_change 3.0
total_points 1226.0
result 0
rank_dif -84.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1321, dtype: object
date 2019-11-18 00:00:00
team Bosnia and Herzegovina
score 3.0
suf_score 0.0
rank 48.0
rank_suf 181.0
rank_change 2.0
total_points 1435.0
result 1
rank_dif 133.0
points_by_rank 0.016575
team_points 3
country_classification Classe A
Name: 1322, dtype: object
date 2019-11-18 00:00:00
team Finland
score 1.0
suf_score 2.0
rank 55.0
rank_suf 58.0
rank_change 1.0
total_points 1395.0
result 0
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1323, dtype: object
date 2019-11-18 00:00:00
team Guyana
score 1.0
suf_score 1.0
rank 174.0
rank_suf 45.0
rank_change -2.0
total_points 969.0
result 2
rank_dif -129.0
points_by_rank 0.022222
team_points 1
country_classification Classe D
Name: 1324, dtype: object
date 2019-11-18 00:00:00
team Antigua and Barbuda
score 3.0
suf_score 2.0
rank 127.0
rank_suf 195.0
rank_change 1.0
total_points 1129.0
result 1
rank_dif 68.0
points_by_rank 0.015385
team_points 3
country_classification Classe C
Name: 1325, dtype: object
date 2019-11-18 00:00:00
team Suriname
score 2.0
suf_score 1.0
rank 150.0
rank_suf 137.0
rank_change 8.0
total_points 1052.0
result 1
rank_dif -13.0
points_by_rank 0.021898
team_points 3
country_classification Classe C
Name: 1326, dtype: object
date 2019-11-18 00:00:00
team Uruguay
score 2.0
suf_score 2.0
rank 5.0
rank_suf 9.0
rank_change -1.0
total_points 1642.0
result 2
rank_dif 4.0
points_by_rank 0.111111
team_points 1
country_classification Classe S-
Name: 1327, dtype: object
date 2019-11-19 00:00:00
team Morocco
score 3.0
suf_score 0.0
rank 42.0
rank_suf 143.0
rank_change 3.0
total_points 1457.0
result 1
rank_dif 101.0
points_by_rank 0.020979
team_points 3
country_classification Classe A
Name: 1328, dtype: object
date 2019-11-19 00:00:00
team Central African Republic
score 0.0
suf_score 2.0
rank 112.0
rank_suf 105.0
rank_change 1.0
total_points 1186.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1329, dtype: object
date 2019-11-19 00:00:00
team Zimbabwe
score 2.0
suf_score 1.0
rank 117.0
rank_suf 81.0
rank_change -1.0
total_points 1167.0
result 1
rank_dif -36.0
points_by_rank 0.037037
team_points 3
country_classification Classe C
Name: 1330, dtype: object
date 2019-11-19 00:00:00
team Tunisia
score 1.0
suf_score 0.0
rank 29.0
rank_suf 135.0
rank_change 0.0
total_points 1495.0
result 1
rank_dif 106.0
points_by_rank 0.022222
team_points 3
country_classification Classe A
Name: 1331, dtype: object
date 2019-11-19 00:00:00
team Tanzania
score 1.0
suf_score 2.0
rank 133.0
rank_suf 103.0
rank_change -2.0
total_points 1084.0
result 0
rank_dif -30.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1332, dtype: object
date 2019-11-19 00:00:00
team Northern Ireland
score 1.0
suf_score 6.0
rank 34.0
rank_suf 16.0
rank_change 1.0
total_points 1483.0
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1333, dtype: object
date 2019-11-19 00:00:00
team Estonia
score 0.0
suf_score 5.0
rank 104.0
rank_suf 12.0
rank_change 2.0
total_points 1209.0
result 0
rank_dif -92.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1334, dtype: object
date 2019-11-19 00:00:00
team Hungary
score 0.0
suf_score 2.0
rank 50.0
rank_suf 24.0
rank_change 0.0
total_points 1429.0
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1335, dtype: object
date 2019-11-19 00:00:00
team Azerbaijan
score 0.0
suf_score 2.0
rank 111.0
rank_suf 31.0
rank_change 2.0
total_points 1189.0
result 0
rank_dif -80.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1336, dtype: object
date 2019-11-19 00:00:00
team Israel
score 0.0
suf_score 1.0
rank 89.0
rank_suf 68.0
rank_change 3.0
total_points 1278.0
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1337, dtype: object
date 2019-11-19 00:00:00
team Venezuela
score 4.0
suf_score 1.0
rank 26.0
rank_suf 28.0
rank_change 0.0
total_points 1512.0
result 1
rank_dif 2.0
points_by_rank 0.107143
team_points 3
country_classification Classe A
Name: 1338, dtype: object
date 2019-11-19 00:00:00
team Slovenia
score 2.0
suf_score 3.0
rank 65.0
rank_suf 21.0
rank_change 7.0
total_points 1367.0
result 0
rank_dif -44.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1339, dtype: object
date 2019-11-19 00:00:00
team Austria
score 0.0
suf_score 1.0
rank 25.0
rank_suf 143.0
rank_change -2.0
total_points 1520.0
result 0
rank_dif 118.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1340, dtype: object
date 2019-11-19 00:00:00
team Kazakhstan
score 1.0
suf_score 3.0
rank 121.0
rank_suf 53.0
rank_change 5.0
total_points 1157.0
result 0
rank_dif -68.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1341, dtype: object
date 2019-11-19 00:00:00
team Cyprus
score 1.0
suf_score 6.0
rank 93.0
rank_suf 1.0
rank_change 1.0
total_points 1263.0
result 0
rank_dif -92.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1342, dtype: object
date 2019-11-19 00:00:00
team Russia
score 5.0
suf_score 0.0
rank 37.0
rank_suf 209.0
rank_change -5.0
total_points 1474.0
result 1
rank_dif 172.0
points_by_rank 0.014354
team_points 3
country_classification Classe A
Name: 1343, dtype: object
date 2019-11-19 00:00:00
team United States
score 4.0
suf_score 0.0
rank 23.0
rank_suf 179.0
rank_change 2.0
total_points 1530.0
result 1
rank_dif 156.0
points_by_rank 0.01676
team_points 3
country_classification Classe A
Name: 1344, dtype: object
date 2019-11-19 00:00:00
team Bermuda
score 1.0
suf_score 2.0
rank 168.0
rank_suf 11.0
rank_change 1.0
total_points 986.0
result 0
rank_dif -157.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1345, dtype: object
date 2019-11-19 00:00:00
team Dominican Republic
score 0.0
suf_score 2.0
rank 153.0
rank_suf 73.0
rank_change -2.0
total_points 1040.0
result 0
rank_dif -80.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1346, dtype: object
date 2019-11-19 00:00:00
team Cayman Islands
score 0.0
suf_score 3.0
rank 193.0
rank_suf 160.0
rank_change 0.0
total_points 895.0
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1347, dtype: object
date 2019-11-19 00:00:00
team Anguilla
score 0.0
suf_score 3.0
rank 209.0
rank_suf 178.0
rank_change 0.0
total_points 831.0
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1348, dtype: object
date 2019-11-19 00:00:00
team South Korea
score 0.0
suf_score 3.0
rank 39.0
rank_suf 3.0
rank_change 2.0
total_points 1466.0
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1349, dtype: object
date 2019-11-19 00:00:00
team Georgia
score 1.0
suf_score 2.0
rank 90.0
rank_suf 7.0
rank_change -1.0
total_points 1274.0
result 0
rank_dif -83.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1350, dtype: object
date 2019-11-19 00:00:00
team Colombia
score 1.0
suf_score 0.0
rank 10.0
rank_suf 63.0
rank_change 1.0
total_points 1615.0
result 1
rank_dif 53.0
points_by_rank 0.047619
team_points 3
country_classification Classe S-
Name: 1351, dtype: object
date 2019-11-19 00:00:00
team Belarus
score 0.0
suf_score 2.0
rank 86.0
rank_suf 61.0
rank_change 4.0
total_points 1286.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1352, dtype: object
date 2019-11-19 00:00:00
team Paraguay
score 0.0
suf_score 0.0
rank 41.0
rank_suf 69.0
rank_change 1.0
total_points 1458.0
result 2
rank_dif 28.0
points_by_rank 0.014493
team_points 1
country_classification Classe A
Name: 1353, dtype: object
date 2019-11-19 00:00:00
team Guam
score 1.0
suf_score 3.0
rank 196.0
rank_suf 154.0
rank_change 1.0
total_points 882.0
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1354, dtype: object
date 2019-11-19 00:00:00
team Philippines
score 0.0
suf_score 1.0
rank 126.0
rank_suf 83.0
rank_change -1.0
total_points 1134.0
result 0
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1355, dtype: object
date 2019-11-19 00:00:00
team Kuwait
score 1.0
suf_score 0.0
rank 156.0
rank_suf 167.0
rank_change 0.0
total_points 1034.0
result 1
rank_dif 11.0
points_by_rank 0.017964
team_points 3
country_classification Classe C
Name: 1356, dtype: object
date 2019-11-19 00:00:00
team Bahrain
score 0.0
suf_score 0.0
rank 101.0
rank_suf 74.0
rank_change -4.0
total_points 1220.0
result 2
rank_dif -27.0
points_by_rank 0.013514
team_points 1
country_classification Classe B
Name: 1357, dtype: object
date 2019-11-19 00:00:00
team Cambodia
score 0.0
suf_score 2.0
rank 172.0
rank_suf 145.0
rank_change 3.0
total_points 974.0
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1358, dtype: object
date 2019-11-19 00:00:00
team Palestine
score 0.0
suf_score 2.0
rank 99.0
rank_suf 85.0
rank_change -2.0
total_points 1226.0
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1359, dtype: object
date 2019-11-19 00:00:00
team Singapore
score 2.0
suf_score 1.0
rank 159.0
rank_suf 141.0
rank_change 2.0
total_points 1008.0
result 1
rank_dif -18.0
points_by_rank 0.021277
team_points 3
country_classification Classe C
Name: 1360, dtype: object
date 2019-11-19 00:00:00
team Qatar
score 1.0
suf_score 0.0
rank 57.0
rank_suf 149.0
rank_change -5.0
total_points 1391.0
result 1
rank_dif 92.0
points_by_rank 0.020134
team_points 3
country_classification Classe B
Name: 1361, dtype: object
date 2019-11-19 00:00:00
team India
score 0.0
suf_score 1.0
rank 106.0
rank_suf 84.0
rank_change 2.0
total_points 1201.0
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1362, dtype: object
date 2019-11-19 00:00:00
team Mongolia
score 0.0
suf_score 1.0
rank 186.0
rank_suf 147.0
rank_change 3.0
total_points 915.0
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1363, dtype: object
date 2019-11-19 00:00:00
team Thailand
score 0.0
suf_score 0.0
rank 109.0
rank_suf 97.0
rank_change -5.0
total_points 1193.0
result 2
rank_dif -12.0
points_by_rank 0.010309
team_points 1
country_classification Classe C
Name: 1364, dtype: object
date 2019-11-19 00:00:00
team Indonesia
score 0.0
suf_score 2.0
rank 171.0
rank_suf 158.0
rank_change 4.0
total_points 975.0
result 0
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1365, dtype: object
date 2019-11-19 00:00:00
team Sri Lanka
score 0.0
suf_score 2.0
rank 203.0
rank_suf 133.0
rank_change 1.0
total_points 864.0
result 0
rank_dif -70.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1366, dtype: object
date 2019-11-21 00:00:00
team Antigua and Barbuda
score 0.0
suf_score 8.0
rank 127.0
rank_suf 131.0
rank_change 1.0
total_points 1129.0
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1367, dtype: object
date 2019-11-26 00:00:00
team Iraq
score 2.0
suf_score 1.0
rank 74.0
rank_suf 57.0
rank_change -5.0
total_points 1327.0
result 1
rank_dif -17.0
points_by_rank 0.052632
team_points 3
country_classification Classe B
Name: 1368, dtype: object
date 2019-11-26 00:00:00
team Yemen
score 0.0
suf_score 3.0
rank 141.0
rank_suf 67.0
rank_change 4.0
total_points 1070.0
result 0
rank_dif -74.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1369, dtype: object
date 2019-11-27 00:00:00
team Bahrain
score 0.0
suf_score 0.0
rank 101.0
rank_suf 84.0
rank_change -4.0
total_points 1220.0
result 2
rank_dif -17.0
points_by_rank 0.011905
team_points 1
country_classification Classe B
Name: 1370, dtype: object
date 2019-11-27 00:00:00
team Kuwait
score 3.0
suf_score 1.0
rank 156.0
rank_suf 69.0
rank_change 0.0
total_points 1034.0
result 1
rank_dif -87.0
points_by_rank 0.043478
team_points 3
country_classification Classe C
Name: 1371, dtype: object
date 2019-11-29 00:00:00
team Iraq
score 2.0
suf_score 0.0
rank 70.0
rank_suf 71.0
rank_change -4.0
total_points 1340.0
result 1
rank_dif 1.0
points_by_rank 0.042254
team_points 3
country_classification Classe B
Name: 1372, dtype: object
date 2019-11-29 00:00:00
team Yemen
score 0.0
suf_score 6.0
rank 144.0
rank_suf 55.0
rank_change 3.0
total_points 1072.0
result 0
rank_dif -89.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1373, dtype: object
date 2019-11-30 00:00:00
team Oman
score 2.0
suf_score 1.0
rank 81.0
rank_suf 147.0
rank_change -3.0
total_points 1304.0
result 1
rank_dif 66.0
points_by_rank 0.020408
team_points 3
country_classification Classe B
Name: 1374, dtype: object
date 2019-11-30 00:00:00
team Saudi Arabia
score 2.0
suf_score 0.0
rank 67.0
rank_suf 100.0
rank_change -2.0
total_points 1351.0
result 1
rank_dif 33.0
points_by_rank 0.03
team_points 3
country_classification Classe B
Name: 1375, dtype: object
date 2019-12-02 00:00:00
team United Arab Emirates
score 2.0
suf_score 4.0
rank 71.0
rank_suf 55.0
rank_change 4.0
total_points 1338.0
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1376, dtype: object
date 2019-12-02 00:00:00
team Iraq
score 0.0
suf_score 0.0
rank 70.0
rank_suf 144.0
rank_change -4.0
total_points 1340.0
result 2
rank_dif 74.0
points_by_rank 0.006944
team_points 1
country_classification Classe B
Name: 1377, dtype: object
date 2019-12-02 00:00:00
team Bahrain
score 4.0
suf_score 2.0
rank 100.0
rank_suf 147.0
rank_change -1.0
total_points 1219.0
result 1
rank_dif 47.0
points_by_rank 0.020408
team_points 3
country_classification Classe B
Name: 1378, dtype: object
date 2019-12-02 00:00:00
team Saudi Arabia
score 3.0
suf_score 1.0
rank 67.0
rank_suf 81.0
rank_change -2.0
total_points 1351.0
result 1
rank_dif 14.0
points_by_rank 0.037037
team_points 3
country_classification Classe B
Name: 1379, dtype: object
date 2019-12-05 00:00:00
team Bahrain
score 2.0
suf_score 2.0
rank 100.0
rank_suf 70.0
rank_change -1.0
total_points 1219.0
result 2
rank_dif -30.0
points_by_rank 0.014286
team_points 1
country_classification Classe B
Name: 1380, dtype: object
date 2019-12-05 00:00:00
team Saudi Arabia
score 1.0
suf_score 0.0
rank 67.0
rank_suf 55.0
rank_change -2.0
total_points 1351.0
result 1
rank_dif -12.0
points_by_rank 0.054545
team_points 3
country_classification Classe B
Name: 1381, dtype: object
date 2019-12-08 00:00:00
team Saudi Arabia
score 0.0
suf_score 1.0
rank 67.0
rank_suf 100.0
rank_change -2.0
total_points 1351.0
result 0
rank_dif 33.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1382, dtype: object
date 2019-12-10 00:00:00
team Japan
score 2.0
suf_score 1.0
rank 28.0
rank_suf 75.0
rank_change 0.0
total_points 1500.0
result 1
rank_dif 47.0
points_by_rank 0.04
team_points 3
country_classification Classe A
Name: 1383, dtype: object
date 2019-12-11 00:00:00
team Hong Kong
score 0.0
suf_score 2.0
rank 139.0
rank_suf 41.0
rank_change -6.0
total_points 1075.0
result 0
rank_dif -98.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1384, dtype: object
date 2019-12-14 00:00:00
team Hong Kong
score 0.0
suf_score 5.0
rank 139.0
rank_suf 28.0
rank_change -6.0
total_points 1075.0
result 0
rank_dif -111.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1385, dtype: object
date 2019-12-15 00:00:00
team China PR
score 0.0
suf_score 1.0
rank 75.0
rank_suf 41.0
rank_change 6.0
total_points 1325.0
result 0
rank_dif -34.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1386, dtype: object
date 2019-12-18 00:00:00
team China PR
score 2.0
suf_score 0.0
rank 75.0
rank_suf 139.0
rank_change 6.0
total_points 1325.0
result 1
rank_dif 64.0
points_by_rank 0.021583
team_points 3
country_classification Classe B
Name: 1387, dtype: object
date 2019-12-18 00:00:00
team Japan
score 0.0
suf_score 1.0
rank 28.0
rank_suf 41.0
rank_change 0.0
total_points 1500.0
result 0
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1388, dtype: object
date 2020-01-07 00:00:00
team Canada
score 4.0
suf_score 1.0
rank 73.0
rank_suf 162.0
rank_change 0.0
total_points 1331.0
result 1
rank_dif 89.0
points_by_rank 0.018519
team_points 3
country_classification Classe B
Name: 1389, dtype: object
date 2020-01-09 00:00:00
team Sweden
score 1.0
suf_score 0.0
rank 17.0
rank_suf 175.0
rank_change 0.0
total_points 1579.0
result 1
rank_dif 158.0
points_by_rank 0.017143
team_points 3
country_classification Classe A
Name: 1390, dtype: object
date 2020-01-10 00:00:00
team Canada
score 4.0
suf_score 1.0
rank 73.0
rank_suf 162.0
rank_change 0.0
total_points 1331.0
result 1
rank_dif 89.0
points_by_rank 0.018519
team_points 3
country_classification Classe B
Name: 1391, dtype: object
date 2020-01-12 00:00:00
team Sweden
score 1.0
suf_score 0.0
rank 17.0
rank_suf 115.0
rank_change 0.0
total_points 1579.0
result 1
rank_dif 98.0
points_by_rank 0.026087
team_points 3
country_classification Classe A
Name: 1392, dtype: object
date 2020-01-15 00:00:00
team Iceland
score 1.0
suf_score 0.0
rank 39.0
rank_suf 73.0
rank_change 0.0
total_points 1464.0
result 1
rank_dif 34.0
points_by_rank 0.041096
team_points 3
country_classification Classe A
Name: 1393, dtype: object
date 2020-01-19 00:00:00
team Iceland
score 1.0
suf_score 0.0
rank 39.0
rank_suf 69.0
rank_change 0.0
total_points 1464.0
result 1
rank_dif 30.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 1394, dtype: object
date 2020-02-01 00:00:00
team Costa Rica
score 0.0
suf_score 1.0
rank 46.0
rank_suf 22.0
rank_change 0.0
total_points 1442.0
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1395, dtype: object
date 2020-09-03 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 8.0
rank_suf 15.0
rank_change 0.0
total_points 1636.0
result 2
rank_dif 7.0
points_by_rank 0.066667
team_points 1
country_classification Classe S-
Name: 1396, dtype: object
date 2020-09-03 00:00:00
team Switzerland
score 1.0
suf_score 2.0
rank 12.0
rank_suf 24.0
rank_change 0.0
total_points 1608.0
result 0
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1397, dtype: object
date 2020-09-03 00:00:00
team Serbia
score 1.0
suf_score 3.0
rank 29.0
rank_suf 38.0
rank_change 0.0
total_points 1494.0
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1398, dtype: object
date 2020-09-03 00:00:00
team Hungary
score 1.0
suf_score 0.0
rank 52.0
rank_suf 29.0
rank_change 0.0
total_points 1416.0
result 1
rank_dif -23.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 1399, dtype: object
date 2020-09-03 00:00:00
team Republic of Ireland
score 1.0
suf_score 1.0
rank 34.0
rank_suf 59.0
rank_change 0.0
total_points 1486.0
result 2
rank_dif 25.0
points_by_rank 0.016949
team_points 1
country_classification Classe A
Name: 1400, dtype: object
date 2020-09-03 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 23.0
rank_suf 58.0
rank_change 0.0
total_points 1540.0
result 1
rank_dif 35.0
points_by_rank 0.051724
team_points 3
country_classification Classe A
Name: 1401, dtype: object
date 2020-09-03 00:00:00
team Kosovo
score 1.0
suf_score 1.0
rank 115.0
rank_suf 175.0
rank_change 0.0
total_points 1174.0
result 2
rank_dif 60.0
points_by_rank 0.005714
team_points 1
country_classification Classe C
Name: 1402, dtype: object
date 2020-09-03 00:00:00
team Greece
score 0.0
suf_score 0.0
rank 54.0
rank_suf 64.0
rank_change 0.0
total_points 1409.0
result 2
rank_dif 10.0
points_by_rank 0.015625
team_points 1
country_classification Classe A
Name: 1403, dtype: object
date 2020-09-03 00:00:00
team Andorra
score 0.0
suf_score 0.0
rank 135.0
rank_suf 137.0
rank_change 0.0
total_points 1082.0
result 2
rank_dif 2.0
points_by_rank 0.007299
team_points 1
country_classification Classe C
Name: 1404, dtype: object
date 2020-09-03 00:00:00
team Malta
score 2.0
suf_score 3.0
rank 184.0
rank_suf 110.0
rank_change 0.0
total_points 919.0
result 0
rank_dif -74.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1405, dtype: object
date 2020-09-04 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 1.0
rank 49.0
rank_suf 13.0
rank_change 0.0
total_points 1430.0
result 2
rank_dif -36.0
points_by_rank 0.076923
team_points 1
country_classification Classe A
Name: 1406, dtype: object
date 2020-09-04 00:00:00
team Poland
score 0.0
suf_score 1.0
rank 19.0
rank_suf 14.0
rank_change 0.0
total_points 1559.0
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1407, dtype: object
date 2020-09-04 00:00:00
team Austria
score 2.0
suf_score 1.0
rank 26.0
rank_suf 44.0
rank_change 0.0
total_points 1507.0
result 1
rank_dif 18.0
points_by_rank 0.068182
team_points 3
country_classification Classe A
Name: 1408, dtype: object
date 2020-09-04 00:00:00
team Northern Ireland
score 1.0
suf_score 1.0
rank 36.0
rank_suf 37.0
rank_change 0.0
total_points 1476.0
result 2
rank_dif 1.0
points_by_rank 0.027027
team_points 1
country_classification Classe A
Name: 1409, dtype: object
date 2020-09-04 00:00:00
team Israel
score 1.0
suf_score 1.0
rank 93.0
rank_suf 50.0
rank_change 0.0
total_points 1260.0
result 2
rank_dif -43.0
points_by_rank 0.02
team_points 1
country_classification Classe B
Name: 1410, dtype: object
date 2020-09-04 00:00:00
team Czech Republic
score 3.0
suf_score 1.0
rank 45.0
rank_suf 32.0
rank_change 0.0
total_points 1446.0
result 1
rank_dif -13.0
points_by_rank 0.09375
team_points 3
country_classification Classe A
Name: 1411, dtype: object
date 2020-09-04 00:00:00
team Kazakhstan
score 2.0
suf_score 0.0
rank 118.0
rank_suf 131.0
rank_change 0.0
total_points 1155.0
result 1
rank_dif 13.0
points_by_rank 0.022901
team_points 3
country_classification Classe C
Name: 1412, dtype: object
date 2020-09-04 00:00:00
team Albania
score 2.0
suf_score 0.0
rank 66.0
rank_suf 87.0
rank_change 0.0
total_points 1356.0
result 1
rank_dif 21.0
points_by_rank 0.034483
team_points 3
country_classification Classe B
Name: 1413, dtype: object
date 2020-09-05 00:00:00
team England
score 1.0
suf_score 0.0
rank 4.0
rank_suf 39.0
rank_change 0.0
total_points 1661.0
result 1
rank_dif 35.0
points_by_rank 0.076923
team_points 3
country_classification Classe S-
Name: 1414, dtype: object
date 2020-09-05 00:00:00
team Belgium
score 2.0
suf_score 0.0
rank 1.0
rank_suf 16.0
rank_change 0.0
total_points 1765.0
result 1
rank_dif 15.0
points_by_rank 0.1875
team_points 3
country_classification Classe S
Name: 1415, dtype: object
date 2020-09-05 00:00:00
team Croatia
score 1.0
suf_score 4.0
rank 6.0
rank_suf 7.0
rank_change 0.0
total_points 1642.0
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1416, dtype: object
date 2020-09-05 00:00:00
team France
score 1.0
suf_score 0.0
rank 2.0
rank_suf 17.0
rank_change 0.0
total_points 1733.0
result 1
rank_dif 15.0
points_by_rank 0.176471
team_points 3
country_classification Classe S
Name: 1417, dtype: object
date 2020-09-05 00:00:00
team Montenegro
score 2.0
suf_score 0.0
rank 64.0
rank_suf 95.0
rank_change 0.0
total_points 1365.0
result 1
rank_dif 31.0
points_by_rank 0.031579
team_points 3
country_classification Classe B
Name: 1418, dtype: object
date 2020-09-05 00:00:00
team Luxembourg
score 2.0
suf_score 1.0
rank 98.0
rank_suf 114.0
rank_change 0.0
total_points 1236.0
result 1
rank_dif 16.0
points_by_rank 0.026316
team_points 3
country_classification Classe B
Name: 1419, dtype: object
date 2020-09-05 00:00:00
team Armenia
score 1.0
suf_score 2.0
rank 102.0
rank_suf 68.0
rank_change 0.0
total_points 1213.0
result 0
rank_dif -34.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1420, dtype: object
date 2020-09-05 00:00:00
team Georgia
score 1.0
suf_score 0.0
rank 91.0
rank_suf 104.0
rank_change 0.0
total_points 1267.0
result 1
rank_dif 13.0
points_by_rank 0.028846
team_points 3
country_classification Classe B
Name: 1421, dtype: object
date 2020-09-05 00:00:00
team San Marino
score 0.0
suf_score 1.0
rank 209.0
rank_suf 196.0
rank_change 0.0
total_points 824.0
result 0
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1422, dtype: object
date 2020-09-06 00:00:00
team Ukraine
score 0.0
suf_score 4.0
rank 24.0
rank_suf 8.0
rank_change 0.0
total_points 1537.0
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1423, dtype: object
date 2020-09-06 00:00:00
team Germany
score 1.0
suf_score 1.0
rank 15.0
rank_suf 12.0
rank_change 0.0
total_points 1602.0
result 2
rank_dif -3.0
points_by_rank 0.083333
team_points 1
country_classification Classe S-
Name: 1424, dtype: object
date 2020-09-06 00:00:00
team Russia
score 3.0
suf_score 2.0
rank 38.0
rank_suf 52.0
rank_change 0.0
total_points 1470.0
result 1
rank_dif 14.0
points_by_rank 0.057692
team_points 3
country_classification Classe A
Name: 1425, dtype: object
date 2020-09-06 00:00:00
team Turkey
score 0.0
suf_score 0.0
rank 29.0
rank_suf 29.0
rank_change 0.0
total_points 1494.0
result 2
rank_dif 0.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 1426, dtype: object
date 2020-09-06 00:00:00
team Bulgaria
score 0.0
suf_score 1.0
rank 59.0
rank_suf 23.0
rank_change 0.0
total_points 1381.0
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1427, dtype: object
date 2020-09-06 00:00:00
team Finland
score 1.0
suf_score 0.0
rank 58.0
rank_suf 34.0
rank_change 0.0
total_points 1386.0
result 1
rank_dif -24.0
points_by_rank 0.088235
team_points 3
country_classification Classe B
Name: 1428, dtype: object
date 2020-09-06 00:00:00
team Moldova
score 0.0
suf_score 1.0
rank 175.0
rank_suf 64.0
rank_change 0.0
total_points 959.0
result 0
rank_dif -111.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1429, dtype: object
date 2020-09-06 00:00:00
team Greece
score 2.0
suf_score 1.0
rank 54.0
rank_suf 115.0
rank_change 0.0
total_points 1409.0
result 1
rank_dif 61.0
points_by_rank 0.026087
team_points 3
country_classification Classe A
Name: 1430, dtype: object
date 2020-09-06 00:00:00
team Faroe Islands
score 1.0
suf_score 0.0
rank 110.0
rank_suf 135.0
rank_change 0.0
total_points 1181.0
result 1
rank_dif 25.0
points_by_rank 0.022222
team_points 3
country_classification Classe C
Name: 1431, dtype: object
date 2020-09-06 00:00:00
team Latvia
score 1.0
suf_score 1.0
rank 137.0
rank_suf 184.0
rank_change 0.0
total_points 1079.0
result 2
rank_dif 47.0
points_by_rank 0.005435
team_points 1
country_classification Classe C
Name: 1432, dtype: object
date 2020-09-07 00:00:00
team Poland
score 2.0
suf_score 1.0
rank 19.0
rank_suf 49.0
rank_change 0.0
total_points 1559.0
result 1
rank_dif 30.0
points_by_rank 0.061224
team_points 3
country_classification Classe A
Name: 1433, dtype: object
date 2020-09-07 00:00:00
team Italy
score 1.0
suf_score 0.0
rank 13.0
rank_suf 14.0
rank_change 0.0
total_points 1607.0
result 1
rank_dif 1.0
points_by_rank 0.214286
team_points 3
country_classification Classe S-
Name: 1434, dtype: object
date 2020-09-07 00:00:00
team Norway
score 5.0
suf_score 1.0
rank 44.0
rank_suf 36.0
rank_change 0.0
total_points 1451.0
result 1
rank_dif -8.0
points_by_rank 0.083333
team_points 3
country_classification Classe A
Name: 1435, dtype: object
date 2020-09-07 00:00:00
team Romania
score 3.0
suf_score 2.0
rank 37.0
rank_suf 26.0
rank_change 0.0
total_points 1475.0
result 1
rank_dif -11.0
points_by_rank 0.115385
team_points 3
country_classification Classe A
Name: 1436, dtype: object
date 2020-09-07 00:00:00
team Scotland
score 2.0
suf_score 1.0
rank 50.0
rank_suf 45.0
rank_change 0.0
total_points 1422.0
result 1
rank_dif -5.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 1437, dtype: object
date 2020-09-07 00:00:00
team Slovakia
score 1.0
suf_score 1.0
rank 32.0
rank_suf 93.0
rank_change 0.0
total_points 1490.0
result 2
rank_dif 61.0
points_by_rank 0.010753
team_points 1
country_classification Classe A
Name: 1438, dtype: object
date 2020-09-07 00:00:00
team Belarus
score 2.0
suf_score 1.0
rank 87.0
rank_suf 118.0
rank_change 0.0
total_points 1283.0
result 1
rank_dif 31.0
points_by_rank 0.025424
team_points 3
country_classification Classe B
Name: 1439, dtype: object
date 2020-09-07 00:00:00
team Lithuania
score 1.0
suf_score 0.0
rank 131.0
rank_suf 66.0
rank_change 0.0
total_points 1089.0
result 1
rank_dif -65.0
points_by_rank 0.045455
team_points 3
country_classification Classe C
Name: 1440, dtype: object
date 2020-09-08 00:00:00
team Iceland
score 1.0
suf_score 5.0
rank 39.0
rank_suf 1.0
rank_change 0.0
total_points 1465.0
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1441, dtype: object
date 2020-09-08 00:00:00
team England
score 0.0
suf_score 0.0
rank 4.0
rank_suf 16.0
rank_change 0.0
total_points 1661.0
result 2
rank_dif 12.0
points_by_rank 0.0625
team_points 1
country_classification Classe S-
Name: 1442, dtype: object
date 2020-09-08 00:00:00
team Croatia
score 2.0
suf_score 4.0
rank 6.0
rank_suf 2.0
rank_change 0.0
total_points 1642.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1443, dtype: object
date 2020-09-08 00:00:00
team Portugal
score 2.0
suf_score 0.0
rank 7.0
rank_suf 17.0
rank_change 0.0
total_points 1639.0
result 1
rank_dif 10.0
points_by_rank 0.176471
team_points 3
country_classification Classe S-
Name: 1444, dtype: object
date 2020-09-08 00:00:00
team Montenegro
score 1.0
suf_score 0.0
rank 64.0
rank_suf 98.0
rank_change 0.0
total_points 1365.0
result 1
rank_dif 34.0
points_by_rank 0.030612
team_points 3
country_classification Classe B
Name: 1445, dtype: object
date 2020-09-08 00:00:00
team Azerbaijan
score 1.0
suf_score 0.0
rank 114.0
rank_suf 95.0
rank_change 0.0
total_points 1177.0
result 1
rank_dif -19.0
points_by_rank 0.031579
team_points 3
country_classification Classe C
Name: 1446, dtype: object
date 2020-09-08 00:00:00
team Estonia
score 0.0
suf_score 2.0
rank 104.0
rank_suf 102.0
rank_change 0.0
total_points 1202.0
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1447, dtype: object
date 2020-09-08 00:00:00
team North Macedonia
score 1.0
suf_score 1.0
rank 68.0
rank_suf 91.0
rank_change 0.0
total_points 1347.0
result 2
rank_dif 23.0
points_by_rank 0.010989
team_points 1
country_classification Classe B
Name: 1448, dtype: object
date 2020-09-08 00:00:00
team Liechtenstein
score 2.0
suf_score 0.0
rank 180.0
rank_suf 209.0
rank_change 0.0
total_points 926.0
result 1
rank_dif 29.0
points_by_rank 0.014354
team_points 3
country_classification Classe D
Name: 1449, dtype: object
date 2020-10-06 00:00:00
team Guatemala
score 0.0
suf_score 0.0
rank 130.0
rank_suf 151.0
rank_change 0.0
total_points 1104.0
result 2
rank_dif 21.0
points_by_rank 0.006623
team_points 1
country_classification Classe C
Name: 1450, dtype: object
date 2020-10-07 00:00:00
team Greece
score 1.0
suf_score 2.0
rank 53.0
rank_suf 27.0
rank_change -1.0
total_points 1413.0
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1451, dtype: object
date 2020-10-07 00:00:00
team Czech Republic
score 2.0
suf_score 1.0
rank 45.0
rank_suf 98.0
rank_change 0.0
total_points 1446.0
result 1
rank_dif 53.0
points_by_rank 0.030612
team_points 3
country_classification Classe A
Name: 1452, dtype: object
date 2020-10-07 00:00:00
team Faroe Islands
score 0.0
suf_score 4.0
rank 107.0
rank_suf 16.0
rank_change -3.0
total_points 1191.0
result 0
rank_dif -91.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1453, dtype: object
date 2020-10-07 00:00:00
team Lithuania
score 3.0
suf_score 1.0
rank 131.0
rank_suf 108.0
rank_change 0.0
total_points 1093.0
result 1
rank_dif -23.0
points_by_rank 0.027778
team_points 3
country_classification Classe C
Name: 1454, dtype: object
date 2020-10-07 00:00:00
team Ukraine
score 1.0
suf_score 7.0
rank 24.0
rank_suf 2.0
rank_change 0.0
total_points 1539.0
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1455, dtype: object
date 2020-10-07 00:00:00
team Turkey
score 3.0
suf_score 3.0
rank 32.0
rank_suf 14.0
rank_change 3.0
total_points 1485.0
result 2
rank_dif -18.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 1456, dtype: object
date 2020-10-07 00:00:00
team Moldova
score 0.0
suf_score 6.0
rank 175.0
rank_suf 12.0
rank_change 0.0
total_points 959.0
result 0
rank_dif -163.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1457, dtype: object
date 2020-10-07 00:00:00
team Liechtenstein
score 2.0
suf_score 1.0
rank 180.0
rank_suf 97.0
rank_change 0.0
total_points 932.0
result 1
rank_dif -83.0
points_by_rank 0.030928
team_points 3
country_classification Classe D
Name: 1458, dtype: object
date 2020-10-07 00:00:00
team Gibraltar
score 0.0
suf_score 2.0
rank 195.0
rank_suf 186.0
rank_change -1.0
total_points 886.0
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1459, dtype: object
date 2020-10-07 00:00:00
team Latvia
score 1.0
suf_score 1.0
rank 137.0
rank_suf 63.0
rank_change 0.0
total_points 1076.0
result 2
rank_dif -74.0
points_by_rank 0.015873
team_points 1
country_classification Classe C
Name: 1460, dtype: object
date 2020-10-07 00:00:00
team Mexico
score 1.0
suf_score 0.0
rank 11.0
rank_suf 13.0
rank_change 0.0
total_points 1621.0
result 1
rank_dif 2.0
points_by_rank 0.230769
team_points 3
country_classification Classe S-
Name: 1461, dtype: object
date 2020-10-07 00:00:00
team Finland
score 1.0
suf_score 5.0
rank 56.0
rank_suf 19.0
rank_change -2.0
total_points 1390.0
result 0
rank_dif -37.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1462, dtype: object
date 2020-10-07 00:00:00
team Spain
score 0.0
suf_score 0.0
rank 7.0
rank_suf 5.0
rank_change -1.0
total_points 1642.0
result 2
rank_dif -2.0
points_by_rank 0.2
team_points 1
country_classification Classe S-
Name: 1463, dtype: object
date 2020-10-07 00:00:00
team San Marino
score 0.0
suf_score 4.0
rank 210.0
rank_suf 64.0
rank_change 1.0
total_points 811.0
result 0
rank_dif -146.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1464, dtype: object
date 2020-10-07 00:00:00
team Croatia
score 2.0
suf_score 1.0
rank 8.0
rank_suf 15.0
rank_change 2.0
total_points 1628.0
result 1
rank_dif 7.0
points_by_rank 0.2
team_points 3
country_classification Classe S-
Name: 1465, dtype: object
date 2020-10-07 00:00:00
team Malawi
score 0.0
suf_score 1.0
rank 123.0
rank_suf 88.0
rank_change 0.0
total_points 1141.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1466, dtype: object
date 2020-10-08 00:00:00
team Wales
score 0.0
suf_score 3.0
rank 21.0
rank_suf 4.0
rank_change -2.0
total_points 1550.0
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1467, dtype: object
date 2020-10-08 00:00:00
team Sweden
score 2.0
suf_score 1.0
rank 18.0
rank_suf 32.0
rank_change 1.0
total_points 1567.0
result 1
rank_dif 14.0
points_by_rank 0.09375
team_points 3
country_classification Classe A
Name: 1468, dtype: object
date 2020-10-08 00:00:00
team Namibia
score 1.0
suf_score 1.0
rank 117.0
rank_suf 71.0
rank_change 0.0
total_points 1160.0
result 2
rank_dif -46.0
points_by_rank 0.014085
team_points 1
country_classification Classe C
Name: 1469, dtype: object
date 2020-10-08 00:00:00
team Iran
score 2.0
suf_score 1.0
rank 30.0
rank_suf 85.0
rank_change -3.0
total_points 1489.0
result 1
rank_dif 55.0
points_by_rank 0.035294
team_points 3
country_classification Classe A
Name: 1470, dtype: object
date 2020-10-08 00:00:00
team Peru
score 2.0
suf_score 2.0
rank 22.0
rank_suf 40.0
rank_change 1.0
total_points 1544.0
result 2
rank_dif 18.0
points_by_rank 0.025
team_points 1
country_classification Classe A
Name: 1471, dtype: object
date 2020-10-08 00:00:00
team Chile
score 1.0
suf_score 2.0
rank 17.0
rank_suf 6.0
rank_change 0.0
total_points 1579.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1472, dtype: object
date 2020-10-08 00:00:00
team Ecuador
score 0.0
suf_score 1.0
rank 64.0
rank_suf 9.0
rank_change 1.0
total_points 1368.0
result 0
rank_dif -55.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1473, dtype: object
date 2020-10-08 00:00:00
team Romania
score 1.0
suf_score 2.0
rank 34.0
rank_suf 41.0
rank_change -3.0
total_points 1483.0
result 0
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1474, dtype: object
date 2020-10-08 00:00:00
team Hungary
score 3.0
suf_score 1.0
rank 52.0
rank_suf 60.0
rank_change 0.0
total_points 1418.0
result 1
rank_dif 8.0
points_by_rank 0.05
team_points 3
country_classification Classe A
Name: 1475, dtype: object
date 2020-10-08 00:00:00
team Northern Ireland
score 1.0
suf_score 1.0
rank 38.0
rank_suf 50.0
rank_change 2.0
total_points 1468.0
result 2
rank_dif 12.0
points_by_rank 0.02
team_points 1
country_classification Classe A
Name: 1476, dtype: object
date 2020-10-08 00:00:00
team Republic of Ireland
score 0.0
suf_score 0.0
rank 37.0
rank_suf 36.0
rank_change 3.0
total_points 1475.0
result 2
rank_dif -1.0
points_by_rank 0.027778
team_points 1
country_classification Classe A
Name: 1477, dtype: object
date 2020-10-08 00:00:00
team Israel
score 0.0
suf_score 0.0
rank 93.0
rank_suf 49.0
rank_change 0.0
total_points 1265.0
result 2
rank_dif -44.0
points_by_rank 0.020408
team_points 1
country_classification Classe B
Name: 1478, dtype: object
date 2020-10-08 00:00:00
team Serbia
score 2.0
suf_score 1.0
rank 31.0
rank_suf 44.0
rank_change 2.0
total_points 1486.0
result 1
rank_dif 13.0
points_by_rank 0.068182
team_points 3
country_classification Classe A
Name: 1479, dtype: object
date 2020-10-08 00:00:00
team Belarus
score 0.0
suf_score 1.0
rank 87.0
rank_suf 89.0
rank_change 0.0
total_points 1282.0
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1480, dtype: object
date 2020-10-08 00:00:00
team Kosovo
score 1.0
suf_score 2.0
rank 116.0
rank_suf 66.0
rank_change 1.0
total_points 1167.0
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1481, dtype: object
date 2020-10-09 00:00:00
team Gambia
score 1.0
suf_score 0.0
rank 159.0
rank_suf 90.0
rank_change 0.0
total_points 1015.0
result 1
rank_dif -69.0
points_by_rank 0.033333
team_points 3
country_classification Classe C
Name: 1482, dtype: object
date 2020-10-09 00:00:00
team Cameroon
score 0.0
suf_score 0.0
rank 53.0
rank_suf 28.0
rank_change 0.0
total_points 1413.0
result 2
rank_dif -25.0
points_by_rank 0.035714
team_points 1
country_classification Classe A
Name: 1483, dtype: object
date 2020-10-09 00:00:00
team Zambia
score 1.0
suf_score 2.0
rank 88.0
rank_suf 106.0
rank_change 0.0
total_points 1279.0
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1484, dtype: object
date 2020-10-09 00:00:00
team Ghana
score 0.0
suf_score 3.0
rank 46.0
rank_suf 57.0
rank_change 0.0
total_points 1439.0
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1485, dtype: object
date 2020-10-09 00:00:00
team Sierra Leone
score 1.0
suf_score 2.0
rank 119.0
rank_suf 100.0
rank_change 1.0
total_points 1155.0
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1486, dtype: object
date 2020-10-09 00:00:00
team Senegal
score 1.0
suf_score 3.0
rank 20.0
rank_suf 43.0
rank_change 0.0
total_points 1555.0
result 0
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1487, dtype: object
date 2020-10-09 00:00:00
team Algeria
score 1.0
suf_score 0.0
rank 35.0
rank_suf 29.0
rank_change 0.0
total_points 1482.0
result 1
rank_dif -6.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 1488, dtype: object
date 2020-10-09 00:00:00
team Sudan
score 0.0
suf_score 3.0
rank 128.0
rank_suf 26.0
rank_change 0.0
total_points 1112.0
result 0
rank_dif -102.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1489, dtype: object
date 2020-10-09 00:00:00
team Venezuela
score 0.0
suf_score 3.0
rank 25.0
rank_suf 10.0
rank_change 0.0
total_points 1517.0
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1490, dtype: object
date 2020-10-09 00:00:00
team Bolivia
score 0.0
suf_score 5.0
rank 75.0
rank_suf 3.0
rank_change 0.0
total_points 1324.0
result 0
rank_dif -72.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1491, dtype: object
date 2020-10-10 00:00:00
team Switzerland
score 0.0
suf_score 1.0
rank 15.0
rank_suf 7.0
rank_change 3.0
total_points 1600.0
result 0
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1492, dtype: object
date 2020-10-10 00:00:00
team Germany
score 2.0
suf_score 1.0
rank 14.0
rank_suf 24.0
rank_change -1.0
total_points 1602.0
result 1
rank_dif 10.0
points_by_rank 0.125
team_points 3
country_classification Classe S-
Name: 1493, dtype: object
date 2020-10-10 00:00:00
team Cyprus
score 0.0
suf_score 2.0
rank 98.0
rank_suf 97.0
rank_change 3.0
total_points 1236.0
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1494, dtype: object
date 2020-10-10 00:00:00
team Azerbaijan
score 0.0
suf_score 2.0
rank 112.0
rank_suf 63.0
rank_change -2.0
total_points 1179.0
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1495, dtype: object
date 2020-10-10 00:00:00
team Latvia
score 1.0
suf_score 1.0
rank 137.0
rank_suf 107.0
rank_change 0.0
total_points 1076.0
result 2
rank_dif -30.0
points_by_rank 0.009346
team_points 1
country_classification Classe C
Name: 1496, dtype: object
date 2020-10-10 00:00:00
team Malta
score 0.0
suf_score 0.0
rank 186.0
rank_suf 137.0
rank_change 2.0
total_points 917.0
result 2
rank_dif -49.0
points_by_rank 0.007299
team_points 1
country_classification Classe D
Name: 1497, dtype: object
date 2020-10-10 00:00:00
team Gibraltar
score 1.0
suf_score 0.0
rank 195.0
rank_suf 180.0
rank_change -1.0
total_points 886.0
result 1
rank_dif -15.0
points_by_rank 0.016667
team_points 3
country_classification Classe D
Name: 1498, dtype: object
date 2020-10-10 00:00:00
team Panama
score 1.0
suf_score 0.0
rank 81.0
rank_suf 46.0
rank_change 0.0
total_points 1305.0
result 1
rank_dif -35.0
points_by_rank 0.065217
team_points 3
country_classification Classe B
Name: 1499, dtype: object
date 2020-10-10 00:00:00
team Nicaragua
score 1.0
suf_score 1.0
rank 151.0
rank_suf 62.0
rank_change 0.0
total_points 1051.0
result 2
rank_dif -89.0
points_by_rank 0.016129
team_points 1
country_classification Classe C
Name: 1500, dtype: object
date 2020-10-10 00:00:00
team Chad
score 0.0
suf_score 2.0
rank 177.0
rank_suf 112.0
rank_change 0.0
total_points 943.0
result 0
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1501, dtype: object
date 2020-10-11 00:00:00
team Netherlands
score 0.0
suf_score 0.0
rank 13.0
rank_suf 50.0
rank_change -1.0
total_points 1603.0
result 2
rank_dif 37.0
points_by_rank 0.02
team_points 1
country_classification Classe S-
Name: 1502, dtype: object
date 2020-10-11 00:00:00
team Italy
score 0.0
suf_score 0.0
rank 12.0
rank_suf 19.0
rank_change -1.0
total_points 1612.0
result 2
rank_dif 7.0
points_by_rank 0.052632
team_points 1
country_classification Classe S-
Name: 1503, dtype: object
date 2020-10-11 00:00:00
team Belgium
score 1.0
suf_score 2.0
rank 1.0
rank_suf 4.0
rank_change 0.0
total_points 1773.0
result 0
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 1504, dtype: object
date 2020-10-11 00:00:00
team Denmark
score 3.0
suf_score 0.0
rank 16.0
rank_suf 41.0
rank_change 0.0
total_points 1593.0
result 1
rank_dif 25.0
points_by_rank 0.073171
team_points 3
country_classification Classe A
Name: 1505, dtype: object
date 2020-10-11 00:00:00
team Sweden
score 1.0
suf_score 2.0
rank 18.0
rank_suf 8.0
rank_change 1.0
total_points 1567.0
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1506, dtype: object
date 2020-10-11 00:00:00
team Portugal
score 0.0
suf_score 0.0
rank 5.0
rank_suf 2.0
rank_change -2.0
total_points 1653.0
result 2
rank_dif -3.0
points_by_rank 0.5
team_points 1
country_classification Classe S-
Name: 1507, dtype: object
date 2020-10-11 00:00:00
team Romania
score 0.0
suf_score 4.0
rank 34.0
rank_suf 44.0
rank_change -3.0
total_points 1483.0
result 0
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1508, dtype: object
date 2020-10-11 00:00:00
team Austria
score 1.0
suf_score 0.0
rank 27.0
rank_suf 38.0
rank_change 1.0
total_points 1505.0
result 1
rank_dif 11.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 1509, dtype: object
date 2020-10-11 00:00:00
team Slovakia
score 0.0
suf_score 1.0
rank 36.0
rank_suf 49.0
rank_change 4.0
total_points 1479.0
result 0
rank_dif 13.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1510, dtype: object
date 2020-10-11 00:00:00
team Czech Republic
score 2.0
suf_score 1.0
rank 45.0
rank_suf 93.0
rank_change 0.0
total_points 1446.0
result 1
rank_dif 48.0
points_by_rank 0.032258
team_points 3
country_classification Classe A
Name: 1511, dtype: object
date 2020-10-11 00:00:00
team Hungary
score 1.0
suf_score 0.0
rank 52.0
rank_suf 31.0
rank_change 0.0
total_points 1418.0
result 1
rank_dif -21.0
points_by_rank 0.096774
team_points 3
country_classification Classe A
Name: 1512, dtype: object
date 2020-10-11 00:00:00
team Turkey
score 1.0
suf_score 1.0
rank 32.0
rank_suf 32.0
rank_change 3.0
total_points 1485.0
result 2
rank_dif 0.0
points_by_rank 0.03125
team_points 1
country_classification Classe A
Name: 1513, dtype: object
date 2020-10-11 00:00:00
team Wales
score 0.0
suf_score 0.0
rank 21.0
rank_suf 37.0
rank_change -2.0
total_points 1550.0
result 2
rank_dif 16.0
points_by_rank 0.027027
team_points 1
country_classification Classe A
Name: 1514, dtype: object
date 2020-10-11 00:00:00
team Bulgaria
score 0.0
suf_score 2.0
rank 60.0
rank_suf 56.0
rank_change 1.0
total_points 1378.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1515, dtype: object
date 2020-10-11 00:00:00
team Georgia
score 2.0
suf_score 2.0
rank 89.0
rank_suf 101.0
rank_change -2.0
total_points 1274.0
result 2
rank_dif 12.0
points_by_rank 0.009901
team_points 1
country_classification Classe B
Name: 1516, dtype: object
date 2020-10-11 00:00:00
team North Macedonia
score 3.0
suf_score 3.0
rank 66.0
rank_suf 108.0
rank_change -2.0
total_points 1351.0
result 2
rank_dif 42.0
points_by_rank 0.009259
team_points 1
country_classification Classe B
Name: 1517, dtype: object
date 2020-10-11 00:00:00
team Slovenia
score 1.0
suf_score 0.0
rank 64.0
rank_suf 116.0
rank_change 0.0
total_points 1368.0
result 1
rank_dif 52.0
points_by_rank 0.025862
team_points 3
country_classification Classe B
Name: 1518, dtype: object
date 2020-10-11 00:00:00
team Moldova
score 0.0
suf_score 2.0
rank 175.0
rank_suf 53.0
rank_change 0.0
total_points 959.0
result 0
rank_dif -122.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1519, dtype: object
date 2020-10-11 00:00:00
team Albania
score 0.0
suf_score 0.0
rank 66.0
rank_suf 118.0
rank_change 0.0
total_points 1351.0
result 2
rank_dif 52.0
points_by_rank 0.008475
team_points 1
country_classification Classe B
Name: 1520, dtype: object
date 2020-10-11 00:00:00
team Belarus
score 2.0
suf_score 2.0
rank 87.0
rank_suf 131.0
rank_change 0.0
total_points 1282.0
result 2
rank_dif 44.0
points_by_rank 0.007634
team_points 1
country_classification Classe B
Name: 1521, dtype: object
date 2020-10-11 00:00:00
team Benin
score 2.0
suf_score 0.0
rank 84.0
rank_suf 83.0
rank_change 0.0
total_points 1295.0
result 1
rank_dif -1.0
points_by_rank 0.036145
team_points 3
country_classification Classe B
Name: 1522, dtype: object
date 2020-10-11 00:00:00
team Zimbabwe
score 0.0
suf_score 0.0
rank 111.0
rank_suf 123.0
rank_change 0.0
total_points 1180.0
result 2
rank_dif 12.0
points_by_rank 0.00813
team_points 1
country_classification Classe C
Name: 1523, dtype: object
date 2020-10-11 00:00:00
team Zambia
score 2.0
suf_score 1.0
rank 88.0
rank_suf 71.0
rank_change 0.0
total_points 1279.0
result 1
rank_dif -17.0
points_by_rank 0.042254
team_points 3
country_classification Classe B
Name: 1524, dtype: object
date 2020-10-11 00:00:00
team Burundi
score 1.0
suf_score 0.0
rank 149.0
rank_suf 134.0
rank_change 0.0
total_points 1052.0
result 1
rank_dif -15.0
points_by_rank 0.022388
team_points 3
country_classification Classe C
Name: 1525, dtype: object
date 2020-10-12 00:00:00
team Madagascar
score 1.0
suf_score 2.0
rank 92.0
rank_suf 59.0
rank_change 1.0
total_points 1267.0
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1526, dtype: object
date 2020-10-12 00:00:00
team Qatar
score 1.0
suf_score 5.0
rank 55.0
rank_suf 46.0
rank_change 0.0
total_points 1396.0
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1527, dtype: object
date 2020-10-12 00:00:00
team Sudan
score 1.0
suf_score 1.0
rank 128.0
rank_suf 126.0
rank_change 0.0
total_points 1112.0
result 2
rank_dif -2.0
points_by_rank 0.007937
team_points 1
country_classification Classe C
Name: 1528, dtype: object
date 2020-10-12 00:00:00
team Uzbekistan
score 2.0
suf_score 1.0
rank 85.0
rank_suf 71.0
rank_change 0.0
total_points 1290.0
result 1
rank_dif -14.0
points_by_rank 0.042254
team_points 3
country_classification Classe B
Name: 1529, dtype: object
date 2020-10-13 00:00:00
team South Sudan
score 0.0
suf_score 0.0
rank 168.0
rank_suf 53.0
rank_change 0.0
total_points 983.0
result 2
rank_dif -115.0
points_by_rank 0.018868
team_points 1
country_classification Classe D
Name: 1530, dtype: object
date 2020-10-13 00:00:00
team Switzerland
score 3.0
suf_score 3.0
rank 15.0
rank_suf 14.0
rank_change 3.0
total_points 1600.0
result 2
rank_dif -1.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 1531, dtype: object
date 2020-10-13 00:00:00
team Spain
score 0.0
suf_score 1.0
rank 7.0
rank_suf 24.0
rank_change -1.0
total_points 1642.0
result 0
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1532, dtype: object
date 2020-10-13 00:00:00
team Cyprus
score 0.0
suf_score 0.0
rank 98.0
rank_suf 112.0
rank_change 3.0
total_points 1236.0
result 2
rank_dif 14.0
points_by_rank 0.008929
team_points 1
country_classification Classe B
Name: 1533, dtype: object
date 2020-10-13 00:00:00
team Luxembourg
score 2.0
suf_score 1.0
rank 97.0
rank_suf 63.0
rank_change -1.0
total_points 1237.0
result 1
rank_dif -34.0
points_by_rank 0.047619
team_points 3
country_classification Classe B
Name: 1534, dtype: object
date 2020-10-13 00:00:00
team Malta
score 1.0
suf_score 0.0
rank 186.0
rank_suf 137.0
rank_change 2.0
total_points 917.0
result 1
rank_dif -49.0
points_by_rank 0.021898
team_points 3
country_classification Classe D
Name: 1535, dtype: object
date 2020-10-13 00:00:00
team Andorra
score 0.0
suf_score 2.0
rank 137.0
rank_suf 107.0
rank_change 2.0
total_points 1076.0
result 0
rank_dif -30.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1536, dtype: object
date 2020-10-13 00:00:00
team San Marino
score 0.0
suf_score 0.0
rank 210.0
rank_suf 180.0
rank_change 1.0
total_points 811.0
result 2
rank_dif -30.0
points_by_rank 0.005556
team_points 1
country_classification Classe D
Name: 1537, dtype: object
date 2020-10-13 00:00:00
team Panama
score 1.0
suf_score 0.0
rank 81.0
rank_suf 46.0
rank_change 0.0
total_points 1305.0
result 1
rank_dif -35.0
points_by_rank 0.065217
team_points 3
country_classification Classe B
Name: 1538, dtype: object
date 2020-10-13 00:00:00
team Algeria
score 2.0
suf_score 2.0
rank 35.0
rank_suf 11.0
rank_change 0.0
total_points 1482.0
result 2
rank_dif -24.0
points_by_rank 0.090909
team_points 1
country_classification Classe A
Name: 1539, dtype: object
date 2020-10-13 00:00:00
team Angola
score 3.0
suf_score 0.0
rank 124.0
rank_suf 105.0
rank_change 0.0
total_points 1136.0
result 1
rank_dif -19.0
points_by_rank 0.028571
team_points 3
country_classification Classe C
Name: 1540, dtype: object
date 2020-10-13 00:00:00
team Sierra Leone
score 0.0
suf_score 1.0
rank 119.0
rank_suf 112.0
rank_change 1.0
total_points 1155.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1541, dtype: object
date 2020-10-13 00:00:00
team Tunisia
score 1.0
suf_score 1.0
rank 26.0
rank_suf 29.0
rank_change -1.0
total_points 1506.0
result 2
rank_dif 3.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 1542, dtype: object
date 2020-10-13 00:00:00
team Argentina
score 2.0
suf_score 1.0
rank 9.0
rank_suf 75.0
rank_change 0.0
total_points 1623.0
result 1
rank_dif 66.0
points_by_rank 0.04
team_points 3
country_classification Classe S-
Name: 1543, dtype: object
date 2020-10-13 00:00:00
team Uruguay
score 2.0
suf_score 4.0
rank 6.0
rank_suf 64.0
rank_change 1.0
total_points 1645.0
result 0
rank_dif 58.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1544, dtype: object
date 2020-10-13 00:00:00
team Paraguay
score 1.0
suf_score 0.0
rank 40.0
rank_suf 25.0
rank_change -1.0
total_points 1461.0
result 1
rank_dif -15.0
points_by_rank 0.12
team_points 3
country_classification Classe A
Name: 1545, dtype: object
date 2020-10-13 00:00:00
team Brazil
score 4.0
suf_score 2.0
rank 3.0
rank_suf 22.0
rank_change 0.0
total_points 1712.0
result 1
rank_dif 19.0
points_by_rank 0.136364
team_points 3
country_classification Classe S
Name: 1546, dtype: object
date 2020-10-13 00:00:00
team Colombia
score 2.0
suf_score 2.0
rank 10.0
rank_suf 17.0
rank_change 0.0
total_points 1622.0
result 2
rank_dif 7.0
points_by_rank 0.058824
team_points 1
country_classification Classe S-
Name: 1547, dtype: object
date 2020-10-14 00:00:00
team Netherlands
score 1.0
suf_score 1.0
rank 13.0
rank_suf 12.0
rank_change -1.0
total_points 1603.0
result 2
rank_dif -1.0
points_by_rank 0.083333
team_points 1
country_classification Classe S-
Name: 1548, dtype: object
date 2020-10-14 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 3.0
rank 50.0
rank_suf 19.0
rank_change 1.0
total_points 1426.0
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1549, dtype: object
date 2020-10-14 00:00:00
team Belgium
score 2.0
suf_score 1.0
rank 1.0
rank_suf 41.0
rank_change 0.0
total_points 1773.0
result 1
rank_dif 40.0
points_by_rank 0.073171
team_points 3
country_classification Classe S
Name: 1550, dtype: object
date 2020-10-14 00:00:00
team Denmark
score 1.0
suf_score 0.0
rank 16.0
rank_suf 4.0
rank_change 0.0
total_points 1593.0
result 1
rank_dif -12.0
points_by_rank 0.75
team_points 3
country_classification Classe A
Name: 1551, dtype: object
date 2020-10-14 00:00:00
team Sweden
score 0.0
suf_score 3.0
rank 18.0
rank_suf 5.0
rank_change 1.0
total_points 1567.0
result 0
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1552, dtype: object
date 2020-10-14 00:00:00
team France
score 2.0
suf_score 1.0
rank 2.0
rank_suf 8.0
rank_change 0.0
total_points 1744.0
result 1
rank_dif 6.0
points_by_rank 0.375
team_points 3
country_classification Classe S
Name: 1553, dtype: object
date 2020-10-14 00:00:00
team Northern Ireland
score 0.0
suf_score 1.0
rank 38.0
rank_suf 44.0
rank_change 2.0
total_points 1468.0
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1554, dtype: object
date 2020-10-14 00:00:00
team Austria
score 1.0
suf_score 0.0
rank 27.0
rank_suf 34.0
rank_change 1.0
total_points 1505.0
result 1
rank_dif 7.0
points_by_rank 0.088235
team_points 3
country_classification Classe A
Name: 1555, dtype: object
date 2020-10-14 00:00:00
team Czech Republic
score 0.0
suf_score 1.0
rank 45.0
rank_suf 49.0
rank_change 0.0
total_points 1446.0
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1556, dtype: object
date 2020-10-14 00:00:00
team Israel
score 3.0
suf_score 2.0
rank 93.0
rank_suf 36.0
rank_change 0.0
total_points 1265.0
result 1
rank_dif -57.0
points_by_rank 0.083333
team_points 3
country_classification Classe B
Name: 1557, dtype: object
date 2020-10-14 00:00:00
team Hungary
score 0.0
suf_score 0.0
rank 52.0
rank_suf 32.0
rank_change 0.0
total_points 1418.0
result 2
rank_dif -20.0
points_by_rank 0.03125
team_points 1
country_classification Classe A
Name: 1558, dtype: object
date 2020-10-14 00:00:00
team Serbia
score 2.0
suf_score 2.0
rank 31.0
rank_suf 32.0
rank_change 2.0
total_points 1486.0
result 2
rank_dif 1.0
points_by_rank 0.03125
team_points 1
country_classification Classe A
Name: 1559, dtype: object
date 2020-10-14 00:00:00
team Republic of Ireland
score 0.0
suf_score 1.0
rank 37.0
rank_suf 56.0
rank_change 3.0
total_points 1475.0
result 0
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1560, dtype: object
date 2020-10-14 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 21.0
rank_suf 60.0
rank_change -2.0
total_points 1550.0
result 1
rank_dif 39.0
points_by_rank 0.05
team_points 3
country_classification Classe A
Name: 1561, dtype: object
date 2020-10-14 00:00:00
team Georgia
score 1.0
suf_score 1.0
rank 89.0
rank_suf 66.0
rank_change -2.0
total_points 1274.0
result 2
rank_dif -23.0
points_by_rank 0.015152
team_points 1
country_classification Classe B
Name: 1562, dtype: object
date 2020-10-14 00:00:00
team Armenia
score 1.0
suf_score 1.0
rank 101.0
rank_suf 108.0
rank_change -1.0
total_points 1215.0
result 2
rank_dif 7.0
points_by_rank 0.009259
team_points 1
country_classification Classe B
Name: 1563, dtype: object
date 2020-10-14 00:00:00
team Kosovo
score 0.0
suf_score 0.0
rank 116.0
rank_suf 53.0
rank_change 1.0
total_points 1167.0
result 2
rank_dif -63.0
points_by_rank 0.018868
team_points 1
country_classification Classe C
Name: 1564, dtype: object
date 2020-10-14 00:00:00
team Slovenia
score 4.0
suf_score 0.0
rank 64.0
rank_suf 175.0
rank_change 0.0
total_points 1368.0
result 1
rank_dif 111.0
points_by_rank 0.017143
team_points 3
country_classification Classe B
Name: 1565, dtype: object
date 2020-10-14 00:00:00
team Albania
score 0.0
suf_score 0.0
rank 66.0
rank_suf 131.0
rank_change 0.0
total_points 1351.0
result 2
rank_dif 65.0
points_by_rank 0.007634
team_points 1
country_classification Classe B
Name: 1566, dtype: object
date 2020-10-14 00:00:00
team Kazakhstan
score 0.0
suf_score 2.0
rank 118.0
rank_suf 87.0
rank_change 0.0
total_points 1156.0
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1567, dtype: object
date 2020-11-06 00:00:00
team Sudan
score 2.0
suf_score 2.0
rank 128.0
rank_suf 146.0
rank_change 0.0
total_points 1110.0
result 2
rank_dif 18.0
points_by_rank 0.006849
team_points 1
country_classification Classe C
Name: 1568, dtype: object
date 2020-11-07 00:00:00
team Tajikistan
score 0.0
suf_score 1.0
rank 122.0
rank_suf 99.0
rank_change 0.0
total_points 1148.0
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1569, dtype: object
date 2020-11-11 00:00:00
team Kosovo
score 1.0
suf_score 2.0
rank 117.0
rank_suf 69.0
rank_change 1.0
total_points 1158.0
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1570, dtype: object
date 2020-11-11 00:00:00
team Switzerland
score 1.0
suf_score 2.0
rank 16.0
rank_suf 1.0
rank_change 1.0
total_points 1589.0
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1571, dtype: object
date 2020-11-11 00:00:00
team Gibraltar
score 0.0
suf_score 3.0
rank 195.0
rank_suf 66.0
rank_change 0.0
total_points 890.0
result 0
rank_dif -129.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1572, dtype: object
date 2020-11-11 00:00:00
team Sweden
score 0.0
suf_score 2.0
rank 19.0
rank_suf 13.0
rank_change 1.0
total_points 1558.0
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1573, dtype: object
date 2020-11-11 00:00:00
team Finland
score 2.0
suf_score 0.0
rank 55.0
rank_suf 2.0
rank_change -1.0
total_points 1402.0
result 1
rank_dif -53.0
points_by_rank 1.5
team_points 3
country_classification Classe A
Name: 1574, dtype: object
date 2020-11-11 00:00:00
team Czech Republic
score 0.0
suf_score 1.0
rank 45.0
rank_suf 14.0
rank_change 0.0
total_points 1446.0
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1575, dtype: object
date 2020-11-11 00:00:00
team Cyprus
score 1.0
suf_score 2.0
rank 99.0
rank_suf 54.0
rank_change 1.0
total_points 1225.0
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1576, dtype: object
date 2020-11-11 00:00:00
team Estonia
score 0.0
suf_score 4.0
rank 109.0
rank_suf 12.0
rank_change 1.0
total_points 1185.0
result 0
rank_dif -97.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1577, dtype: object
date 2020-11-11 00:00:00
team Faroe Islands
score 1.0
suf_score 2.0
rank 107.0
rank_suf 130.0
rank_change 0.0
total_points 1193.0
result 0
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1578, dtype: object
date 2020-11-11 00:00:00
team Austria
score 3.0
suf_score 0.0
rank 25.0
rank_suf 95.0
rank_change -2.0
total_points 1523.0
result 1
rank_dif 70.0
points_by_rank 0.031579
team_points 3
country_classification Classe A
Name: 1579, dtype: object
date 2020-11-11 00:00:00
team Liechtenstein
score 0.0
suf_score 3.0
rank 181.0
rank_suf 180.0
rank_change 1.0
total_points 930.0
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1580, dtype: object
date 2020-11-11 00:00:00
team Kazakhstan
score 0.0
suf_score 0.0
rank 119.0
rank_suf 64.0
rank_change 1.0
total_points 1153.0
result 2
rank_dif -55.0
points_by_rank 0.015625
team_points 1
country_classification Classe C
Name: 1581, dtype: object
date 2020-11-11 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 6.0
rank_suf 15.0
rank_change -1.0
total_points 1639.0
result 2
rank_dif 9.0
points_by_rank 0.066667
team_points 1
country_classification Classe S-
Name: 1582, dtype: object
date 2020-11-11 00:00:00
team Ukraine
score 0.0
suf_score 2.0
rank 23.0
rank_suf 18.0
rank_change -1.0
total_points 1539.0
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1583, dtype: object
date 2020-11-11 00:00:00
team Andorra
score 0.0
suf_score 7.0
rank 145.0
rank_suf 5.0
rank_change 8.0
total_points 1065.0
result 0
rank_dif -140.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1584, dtype: object
date 2020-11-11 00:00:00
team Belarus
score 3.0
suf_score 5.0
rank 90.0
rank_suf 44.0
rank_change 3.0
total_points 1273.0
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1585, dtype: object
date 2020-11-11 00:00:00
team Latvia
score 3.0
suf_score 0.0
rank 142.0
rank_suf 210.0
rank_change 5.0
total_points 1071.0
result 1
rank_dif 68.0
points_by_rank 0.014286
team_points 3
country_classification Classe C
Name: 1586, dtype: object
date 2020-11-11 00:00:00
team Azerbaijan
score 0.0
suf_score 0.0
rank 114.0
rank_suf 62.0
rank_change 2.0
total_points 1175.0
result 2
rank_dif -52.0
points_by_rank 0.016129
team_points 1
country_classification Classe C
Name: 1587, dtype: object
date 2020-11-11 00:00:00
team Croatia
score 3.0
suf_score 3.0
rank 9.0
rank_suf 33.0
rank_change 1.0
total_points 1634.0
result 2
rank_dif 24.0
points_by_rank 0.030303
team_points 1
country_classification Classe S-
Name: 1588, dtype: object
date 2020-11-12 00:00:00
team Iceland
score 1.0
suf_score 2.0
rank 39.0
rank_suf 47.0
rank_change -2.0
total_points 1461.0
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1589, dtype: object
date 2020-11-12 00:00:00
team Slovakia
score 2.0
suf_score 1.0
rank 37.0
rank_suf 41.0
rank_change 1.0
total_points 1466.0
result 1
rank_dif 4.0
points_by_rank 0.073171
team_points 3
country_classification Classe A
Name: 1590, dtype: object
date 2020-11-12 00:00:00
team Scotland
score 1.0
suf_score 1.0
rank 45.0
rank_suf 30.0
rank_change -4.0
total_points 1446.0
result 2
rank_dif -15.0
points_by_rank 0.033333
team_points 1
country_classification Classe A
Name: 1591, dtype: object
date 2020-11-12 00:00:00
team North Macedonia
score 1.0
suf_score 0.0
rank 65.0
rank_suf 86.0
rank_change -1.0
total_points 1356.0
result 1
rank_dif 21.0
points_by_rank 0.034884
team_points 3
country_classification Classe B
Name: 1592, dtype: object
date 2020-11-12 00:00:00
team Iran
score 2.0
suf_score 0.0
rank 29.0
rank_suf 51.0
rank_change -1.0
total_points 1492.0
result 1
rank_dif 22.0
points_by_rank 0.058824
team_points 3
country_classification Classe A
Name: 1593, dtype: object
date 2020-11-12 00:00:00
team Republic of Ireland
score 0.0
suf_score 3.0
rank 36.0
rank_suf 4.0
rank_change -1.0
total_points 1467.0
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1594, dtype: object
date 2020-11-12 00:00:00
team Iraq
score 0.0
suf_score 0.0
rank 70.0
rank_suf 97.0
rank_change 0.0
total_points 1344.0
result 2
rank_dif 27.0
points_by_rank 0.010309
team_points 1
country_classification Classe B
Name: 1595, dtype: object
date 2020-11-12 00:00:00
team Bahrain
score 3.0
suf_score 1.0
rank 99.0
rank_suf 91.0
rank_change 0.0
total_points 1225.0
result 1
rank_dif -8.0
points_by_rank 0.032967
team_points 3
country_classification Classe B
Name: 1596, dtype: object
date 2020-11-12 00:00:00
team Russia
score 0.0
suf_score 0.0
rank 34.0
rank_suf 175.0
rank_change 2.0
total_points 1480.0
result 2
rank_dif 141.0
points_by_rank 0.005714
team_points 1
country_classification Classe A
Name: 1597, dtype: object
date 2020-11-12 00:00:00
team Tajikistan
score 2.0
suf_score 3.0
rank 122.0
rank_suf 74.0
rank_change 0.0
total_points 1148.0
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1598, dtype: object
date 2020-11-12 00:00:00
team Syria
score 1.0
suf_score 0.0
rank 79.0
rank_suf 84.0
rank_change 0.0
total_points 1314.0
result 1
rank_dif 5.0
points_by_rank 0.035714
team_points 3
country_classification Classe B
Name: 1599, dtype: object
date 2020-11-12 00:00:00
team United States
score 0.0
suf_score 0.0
rank 22.0
rank_suf 20.0
rank_change -1.0
total_points 1542.0
result 2
rank_dif -2.0
points_by_rank 0.05
team_points 1
country_classification Classe A
Name: 1600, dtype: object
date 2020-11-12 00:00:00
team Ecuador
score 3.0
suf_score 2.0
rank 60.0
rank_suf 79.0
rank_change -4.0
total_points 1380.0
result 1
rank_dif 19.0
points_by_rank 0.037975
team_points 3
country_classification Classe B
Name: 1601, dtype: object
date 2020-11-12 00:00:00
team Paraguay
score 1.0
suf_score 1.0
rank 35.0
rank_suf 8.0
rank_change -5.0
total_points 1476.0
result 2
rank_dif -27.0
points_by_rank 0.125
team_points 1
country_classification Classe A
Name: 1602, dtype: object
date 2020-11-13 00:00:00
team Nepal
score 0.0
suf_score 2.0
rank 170.0
rank_suf 187.0
rank_change 0.0
total_points 974.0
result 0
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1603, dtype: object
date 2020-11-13 00:00:00
team Qatar
score 1.0
suf_score 1.0
rank 57.0
rank_suf 50.0
rank_change 2.0
total_points 1391.0
result 2
rank_dif -7.0
points_by_rank 0.02
team_points 1
country_classification Classe B
Name: 1604, dtype: object
date 2020-11-13 00:00:00
team Panama
score 0.0
suf_score 1.0
rank 77.0
rank_suf 27.0
rank_change -4.0
total_points 1317.0
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1605, dtype: object
date 2020-11-13 00:00:00
team Uruguay
score 3.0
suf_score 0.0
rank 7.0
rank_suf 10.0
rank_change 1.0
total_points 1637.0
result 1
rank_dif 3.0
points_by_rank 0.3
team_points 3
country_classification Classe S-
Name: 1606, dtype: object
date 2020-11-13 00:00:00
team Peru
score 0.0
suf_score 2.0
rank 24.0
rank_suf 17.0
rank_change 2.0
total_points 1533.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1607, dtype: object
date 2020-11-13 00:00:00
team Venezuela
score 0.0
suf_score 1.0
rank 28.0
rank_suf 3.0
rank_change 3.0
total_points 1493.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1608, dtype: object
date 2020-11-14 00:00:00
team France
score 1.0
suf_score 0.0
rank 2.0
rank_suf 5.0
rank_change 0.0
total_points 1752.0
result 1
rank_dif 3.0
points_by_rank 0.6
team_points 3
country_classification Classe S
Name: 1609, dtype: object
date 2020-11-14 00:00:00
team Croatia
score 1.0
suf_score 2.0
rank 9.0
rank_suf 19.0
rank_change 1.0
total_points 1634.0
result 0
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1610, dtype: object
date 2020-11-14 00:00:00
team Ukraine
score 1.0
suf_score 3.0
rank 23.0
rank_suf 14.0
rank_change -1.0
total_points 1539.0
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1611, dtype: object
date 2020-11-14 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 6.0
rank_suf 16.0
rank_change -1.0
total_points 1639.0
result 2
rank_dif 10.0
points_by_rank 0.0625
team_points 1
country_classification Classe S-
Name: 1612, dtype: object
date 2020-11-14 00:00:00
team Montenegro
score 0.0
suf_score 0.0
rank 64.0
rank_suf 114.0
rank_change 1.0
total_points 1369.0
result 2
rank_dif 50.0
points_by_rank 0.008772
team_points 1
country_classification Classe B
Name: 1613, dtype: object
date 2020-11-14 00:00:00
team Luxembourg
score 1.0
suf_score 2.0
rank 95.0
rank_suf 99.0
rank_change -2.0
total_points 1247.0
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1614, dtype: object
date 2020-11-14 00:00:00
team Andorra
score 1.0
suf_score 3.0
rank 145.0
rank_suf 180.0
rank_change 8.0
total_points 1065.0
result 0
rank_dif 35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1615, dtype: object
date 2020-11-14 00:00:00
team Faroe Islands
score 1.0
suf_score 1.0
rank 107.0
rank_suf 142.0
rank_change 0.0
total_points 1193.0
result 2
rank_dif 35.0
points_by_rank 0.007042
team_points 1
country_classification Classe C
Name: 1616, dtype: object
date 2020-11-14 00:00:00
team Gibraltar
score 0.0
suf_score 0.0
rank 195.0
rank_suf 210.0
rank_change 0.0
total_points 890.0
result 2
rank_dif 15.0
points_by_rank 0.004762
team_points 1
country_classification Classe D
Name: 1617, dtype: object
date 2020-11-14 00:00:00
team South Korea
score 2.0
suf_score 3.0
rank 38.0
rank_suf 11.0
rank_change -1.0
total_points 1464.0
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1618, dtype: object
date 2020-11-14 00:00:00
team Jamaica
score 0.0
suf_score 3.0
rank 48.0
rank_suf 67.0
rank_change 0.0
total_points 1438.0
result 0
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1619, dtype: object
date 2020-11-15 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 3.0
rank 51.0
rank_suf 15.0
rank_change 1.0
total_points 1424.0
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1620, dtype: object
date 2020-11-15 00:00:00
team Poland
score 0.0
suf_score 2.0
rank 18.0
rank_suf 12.0
rank_change -1.0
total_points 1568.0
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1621, dtype: object
date 2020-11-15 00:00:00
team England
score 0.0
suf_score 2.0
rank 4.0
rank_suf 1.0
rank_change 0.0
total_points 1669.0
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1622, dtype: object
date 2020-11-15 00:00:00
team Iceland
score 1.0
suf_score 2.0
rank 39.0
rank_suf 13.0
rank_change -2.0
total_points 1461.0
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1623, dtype: object
date 2020-11-15 00:00:00
team Northern Ireland
score 1.0
suf_score 2.0
rank 41.0
rank_suf 25.0
rank_change 3.0
total_points 1458.0
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1624, dtype: object
date 2020-11-15 00:00:00
team Norway
score 0.0
suf_score 3.0
rank 43.0
rank_suf 44.0
rank_change -1.0
total_points 1456.0
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1625, dtype: object
date 2020-11-15 00:00:00
team Scotland
score 0.0
suf_score 1.0
rank 45.0
rank_suf 37.0
rank_change -4.0
total_points 1446.0
result 0
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1626, dtype: object
date 2020-11-15 00:00:00
team Israel
score 0.0
suf_score 1.0
rank 88.0
rank_suf 45.0
rank_change -5.0
total_points 1275.0
result 0
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1627, dtype: object
date 2020-11-15 00:00:00
team Russia
score 2.0
suf_score 3.0
rank 34.0
rank_suf 33.0
rank_change 2.0
total_points 1480.0
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1628, dtype: object
date 2020-11-15 00:00:00
team Serbia
score 1.0
suf_score 1.0
rank 30.0
rank_suf 47.0
rank_change -1.0
total_points 1489.0
result 2
rank_dif 17.0
points_by_rank 0.021277
team_points 1
country_classification Classe A
Name: 1629, dtype: object
date 2020-11-15 00:00:00
team Republic of Ireland
score 0.0
suf_score 1.0
rank 36.0
rank_suf 20.0
rank_change -1.0
total_points 1467.0
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1630, dtype: object
date 2020-11-15 00:00:00
team Finland
score 2.0
suf_score 1.0
rank 55.0
rank_suf 66.0
rank_change -1.0
total_points 1402.0
result 1
rank_dif 11.0
points_by_rank 0.045455
team_points 3
country_classification Classe A
Name: 1631, dtype: object
date 2020-11-15 00:00:00
team Estonia
score 1.0
suf_score 2.0
rank 109.0
rank_suf 65.0
rank_change 1.0
total_points 1185.0
result 0
rank_dif -44.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1632, dtype: object
date 2020-11-15 00:00:00
team Armenia
score 2.0
suf_score 1.0
rank 101.0
rank_suf 86.0
rank_change 0.0
total_points 1215.0
result 1
rank_dif -15.0
points_by_rank 0.034884
team_points 3
country_classification Classe B
Name: 1633, dtype: object
date 2020-11-15 00:00:00
team Kosovo
score 1.0
suf_score 2.0
rank 117.0
rank_suf 62.0
rank_change 1.0
total_points 1158.0
result 0
rank_dif -55.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1634, dtype: object
date 2020-11-15 00:00:00
team Greece
score 2.0
suf_score 0.0
rank 54.0
rank_suf 175.0
rank_change 1.0
total_points 1408.0
result 1
rank_dif 121.0
points_by_rank 0.017143
team_points 3
country_classification Classe A
Name: 1635, dtype: object
date 2020-11-15 00:00:00
team Kazakhstan
score 1.0
suf_score 3.0
rank 119.0
rank_suf 69.0
rank_change 1.0
total_points 1153.0
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1636, dtype: object
date 2020-11-15 00:00:00
team Lithuania
score 0.0
suf_score 2.0
rank 130.0
rank_suf 90.0
rank_change -1.0
total_points 1105.0
result 0
rank_dif -40.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1637, dtype: object
date 2020-11-15 00:00:00
team Honduras
score 1.0
suf_score 2.0
rank 63.0
rank_suf 131.0
rank_change 1.0
total_points 1374.0
result 0
rank_dif 68.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1638, dtype: object
date 2020-11-16 00:00:00
team Syria
score 0.0
suf_score 1.0
rank 79.0
rank_suf 97.0
rank_change 0.0
total_points 1314.0
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1639, dtype: object
date 2020-11-16 00:00:00
team Bahrain
score 0.0
suf_score 1.0
rank 99.0
rank_suf 74.0
rank_change 0.0
total_points 1225.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1640, dtype: object
date 2020-11-16 00:00:00
team Panama
score 2.0
suf_score 6.0
rank 77.0
rank_suf 22.0
rank_change -4.0
total_points 1317.0
result 0
rank_dif -55.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1641, dtype: object
date 2020-11-17 00:00:00
team Portugal
score 3.0
suf_score 2.0
rank 5.0
rank_suf 9.0
rank_change 0.0
total_points 1661.0
result 1
rank_dif 4.0
points_by_rank 0.333333
team_points 3
country_classification Classe S-
Name: 1642, dtype: object
date 2020-11-17 00:00:00
team Sweden
score 2.0
suf_score 4.0
rank 19.0
rank_suf 2.0
rank_change 1.0
total_points 1558.0
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1643, dtype: object
date 2020-11-17 00:00:00
team Germany
score 0.0
suf_score 6.0
rank 14.0
rank_suf 6.0
rank_change 0.0
total_points 1607.0
result 0
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1644, dtype: object
date 2020-11-17 00:00:00
team Ukraine
score 0.0
suf_score 3.0
rank 23.0
rank_suf 16.0
rank_change -1.0
total_points 1539.0
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1645, dtype: object
date 2020-11-17 00:00:00
team Azerbaijan
score 0.0
suf_score 0.0
rank 114.0
rank_suf 95.0
rank_change 2.0
total_points 1175.0
result 2
rank_dif -19.0
points_by_rank 0.010526
team_points 1
country_classification Classe C
Name: 1646, dtype: object
date 2020-11-17 00:00:00
team Cyprus
score 0.0
suf_score 4.0
rank 99.0
rank_suf 64.0
rank_change 1.0
total_points 1225.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1647, dtype: object
date 2020-11-17 00:00:00
team Latvia
score 5.0
suf_score 0.0
rank 142.0
rank_suf 145.0
rank_change 5.0
total_points 1071.0
result 1
rank_dif 3.0
points_by_rank 0.02069
team_points 3
country_classification Classe C
Name: 1648, dtype: object
date 2020-11-17 00:00:00
team Faroe Islands
score 1.0
suf_score 1.0
rank 107.0
rank_suf 180.0
rank_change 0.0
total_points 1193.0
result 2
rank_dif 73.0
points_by_rank 0.005556
team_points 1
country_classification Classe C
Name: 1649, dtype: object
date 2020-11-17 00:00:00
team Liechtenstein
score 1.0
suf_score 1.0
rank 181.0
rank_suf 195.0
rank_change 1.0
total_points 930.0
result 2
rank_dif 14.0
points_by_rank 0.005128
team_points 1
country_classification Classe D
Name: 1650, dtype: object
date 2020-11-17 00:00:00
team Nepal
score 0.0
suf_score 0.0
rank 170.0
rank_suf 187.0
rank_change 0.0
total_points 974.0
result 2
rank_dif 17.0
points_by_rank 0.005348
team_points 1
country_classification Classe D
Name: 1651, dtype: object
date 2020-11-17 00:00:00
team Mexico
score 2.0
suf_score 0.0
rank 11.0
rank_suf 27.0
rank_change 0.0
total_points 1625.0
result 1
rank_dif 16.0
points_by_rank 0.111111
team_points 3
country_classification Classe S-
Name: 1652, dtype: object
date 2020-11-17 00:00:00
team Qatar
score 1.0
suf_score 2.0
rank 57.0
rank_suf 38.0
rank_change 2.0
total_points 1391.0
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1653, dtype: object
date 2020-11-17 00:00:00
team Jamaica
score 2.0
suf_score 1.0
rank 48.0
rank_suf 67.0
rank_change 0.0
total_points 1438.0
result 1
rank_dif 19.0
points_by_rank 0.044776
team_points 3
country_classification Classe A
Name: 1654, dtype: object
date 2020-11-17 00:00:00
team Iraq
score 2.0
suf_score 1.0
rank 70.0
rank_suf 84.0
rank_change 0.0
total_points 1344.0
result 1
rank_dif 14.0
points_by_rank 0.035714
team_points 3
country_classification Classe B
Name: 1655, dtype: object
date 2020-11-17 00:00:00
team Colombia
score 1.0
suf_score 6.0
rank 10.0
rank_suf 60.0
rank_change 0.0
total_points 1631.0
result 0
rank_dif 50.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1656, dtype: object
date 2020-11-17 00:00:00
team Chile
score 1.0
suf_score 2.0
rank 17.0
rank_suf 28.0
rank_change 0.0
total_points 1570.0
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1657, dtype: object
date 2020-11-17 00:00:00
team Argentina
score 2.0
suf_score 0.0
rank 8.0
rank_suf 24.0
rank_change -1.0
total_points 1636.0
result 1
rank_dif 16.0
points_by_rank 0.125
team_points 3
country_classification Classe S-
Name: 1658, dtype: object
date 2020-11-17 00:00:00
team Bolivia
score 2.0
suf_score 2.0
rank 79.0
rank_suf 35.0
rank_change 4.0
total_points 1314.0
result 2
rank_dif -44.0
points_by_rank 0.028571
team_points 1
country_classification Classe B
Name: 1659, dtype: object
date 2020-11-17 00:00:00
team Brazil
score 2.0
suf_score 0.0
rank 3.0
rank_suf 7.0
rank_change 0.0
total_points 1725.0
result 1
rank_dif 4.0
points_by_rank 0.428571
team_points 3
country_classification Classe S
Name: 1660, dtype: object
date 2020-11-18 00:00:00
team Italy
score 2.0
suf_score 0.0
rank 12.0
rank_suf 51.0
rank_change 0.0
total_points 1612.0
result 1
rank_dif 39.0
points_by_rank 0.058824
team_points 3
country_classification Classe S-
Name: 1661, dtype: object
date 2020-11-18 00:00:00
team Netherlands
score 2.0
suf_score 1.0
rank 15.0
rank_suf 18.0
rank_change 2.0
total_points 1596.0
result 1
rank_dif 3.0
points_by_rank 0.166667
team_points 3
country_classification Classe A
Name: 1662, dtype: object
date 2020-11-18 00:00:00
team Iceland
score 0.0
suf_score 4.0
rank 39.0
rank_suf 4.0
rank_change -2.0
total_points 1461.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1663, dtype: object
date 2020-11-18 00:00:00
team Denmark
score 2.0
suf_score 4.0
rank 13.0
rank_suf 1.0
rank_change -3.0
total_points 1610.0
result 0
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1664, dtype: object
date 2020-11-18 00:00:00
team Romania
score 1.0
suf_score 1.0
rank 44.0
rank_suf 41.0
rank_change 10.0
total_points 1455.0
result 2
rank_dif -3.0
points_by_rank 0.02439
team_points 1
country_classification Classe A
Name: 1665, dtype: object
date 2020-11-18 00:00:00
team Norway
score 1.0
suf_score 1.0
rank 43.0
rank_suf 25.0
rank_change -1.0
total_points 1456.0
result 2
rank_dif -18.0
points_by_rank 0.04
team_points 1
country_classification Classe A
Name: 1666, dtype: object
date 2020-11-18 00:00:00
team Slovakia
score 0.0
suf_score 2.0
rank 37.0
rank_suf 45.0
rank_change 1.0
total_points 1466.0
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1667, dtype: object
date 2020-11-18 00:00:00
team Scotland
score 0.0
suf_score 1.0
rank 45.0
rank_suf 88.0
rank_change -4.0
total_points 1446.0
result 0
rank_dif 43.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1668, dtype: object
date 2020-11-18 00:00:00
team Turkey
score 0.0
suf_score 2.0
rank 33.0
rank_suf 47.0
rank_change 1.0
total_points 1486.0
result 0
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1669, dtype: object
date 2020-11-18 00:00:00
team Russia
score 0.0
suf_score 5.0
rank 34.0
rank_suf 30.0
rank_change 2.0
total_points 1480.0
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1670, dtype: object
date 2020-11-18 00:00:00
team Bulgaria
score 0.0
suf_score 0.0
rank 66.0
rank_suf 36.0
rank_change 6.0
total_points 1354.0
result 2
rank_dif -30.0
points_by_rank 0.027778
team_points 1
country_classification Classe B
Name: 1671, dtype: object
date 2020-11-18 00:00:00
team Finland
score 1.0
suf_score 3.0
rank 55.0
rank_suf 20.0
rank_change -1.0
total_points 1402.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1672, dtype: object
date 2020-11-18 00:00:00
team North Macedonia
score 0.0
suf_score 1.0
rank 65.0
rank_suf 101.0
rank_change -1.0
total_points 1356.0
result 0
rank_dif 36.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1673, dtype: object
date 2020-11-18 00:00:00
team Estonia
score 0.0
suf_score 0.0
rank 109.0
rank_suf 86.0
rank_change 1.0
total_points 1185.0
result 2
rank_dif -23.0
points_by_rank 0.011628
team_points 1
country_classification Classe C
Name: 1674, dtype: object
date 2020-11-18 00:00:00
team Moldova
score 0.0
suf_score 1.0
rank 175.0
rank_suf 117.0
rank_change 0.0
total_points 954.0
result 0
rank_dif -58.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1675, dtype: object
date 2020-11-18 00:00:00
team Slovenia
score 0.0
suf_score 0.0
rank 62.0
rank_suf 54.0
rank_change -2.0
total_points 1376.0
result 2
rank_dif -8.0
points_by_rank 0.018519
team_points 1
country_classification Classe B
Name: 1676, dtype: object
date 2020-11-18 00:00:00
team Belarus
score 2.0
suf_score 3.0
rank 90.0
rank_suf 69.0
rank_change 3.0
total_points 1273.0
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1677, dtype: object
date 2020-11-18 00:00:00
team Lithuania
score 2.0
suf_score 1.0
rank 130.0
rank_suf 119.0
rank_change -1.0
total_points 1105.0
result 1
rank_dif -11.0
points_by_rank 0.02521
team_points 3
country_classification Classe C
Name: 1678, dtype: object
date 2020-12-04 00:00:00
team Bangladesh
score 0.0
suf_score 5.0
rank 184.0
rank_suf 59.0
rank_change -3.0
total_points 920.0
result 0
rank_dif -125.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1679, dtype: object
date 2020-12-09 00:00:00
team El Salvador
score 0.0
suf_score 6.0
rank 70.0
rank_suf 22.0
rank_change 2.0
total_points 1346.0
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1680, dtype: object
date 2021-01-12 00:00:00
team Iraq
score 0.0
suf_score 0.0
rank 69.0
rank_suf 74.0
rank_change 0.0
total_points 1347.0
result 2
rank_dif 5.0
points_by_rank 0.013514
team_points 1
country_classification Classe B
Name: 1681, dtype: object
date 2021-01-18 00:00:00
team Palestine
score 1.0
suf_score 0.0
rank 102.0
rank_suf 148.0
rank_change 0.0
total_points 1204.0
result 1
rank_dif 46.0
points_by_rank 0.02027
team_points 3
country_classification Classe B
Name: 1682, dtype: object
date 2021-01-19 00:00:00
team Puerto Rico
score 1.0
suf_score 0.0
rank 179.0
rank_suf 159.0
rank_change 0.0
total_points 941.0
result 1
rank_dif -20.0
points_by_rank 0.018868
team_points 3
country_classification Classe D
Name: 1683, dtype: object
date 2021-01-22 00:00:00
team Puerto Rico
score 0.0
suf_score 1.0
rank 179.0
rank_suf 131.0
rank_change 0.0
total_points 941.0
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1684, dtype: object
date 2021-01-25 00:00:00
team Serbia
score 0.0
suf_score 0.0
rank 30.0
rank_suf 159.0
rank_change 0.0
total_points 1495.0
result 2
rank_dif 129.0
points_by_rank 0.006289
team_points 1
country_classification Classe A
Name: 1685, dtype: object
date 2021-01-27 00:00:00
team Kuwait
score 1.0
suf_score 2.0
rank 148.0
rank_suf 69.0
rank_change 0.0
total_points 1060.0
result 0
rank_dif -79.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1686, dtype: object
date 2021-01-28 00:00:00
team Serbia
score 0.0
suf_score 0.0
rank 30.0
rank_suf 78.0
rank_change 0.0
total_points 1495.0
result 2
rank_dif 48.0
points_by_rank 0.012821
team_points 1
country_classification Classe A
Name: 1687, dtype: object
date 2021-01-31 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 7.0
rank 103.0
rank_suf 22.0
rank_change 0.0
total_points 1201.0
result 0
rank_dif -81.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1688, dtype: object
date 2021-02-01 00:00:00
team Tajikistan
score 0.0
suf_score 2.0
rank 121.0
rank_suf 95.0
rank_change 0.0
total_points 1143.0
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1689, dtype: object
date 2021-02-05 00:00:00
team Tajikistan
score 1.0
suf_score 0.0
rank 121.0
rank_suf 95.0
rank_change 0.0
total_points 1143.0
result 1
rank_dif -26.0
points_by_rank 0.031579
team_points 3
country_classification Classe C
Name: 1690, dtype: object
date 2021-02-15 00:00:00
team Uzbekistan
score 2.0
suf_score 0.0
rank 85.0
rank_suf 95.0
rank_change 0.0
total_points 1283.0
result 1
rank_dif 10.0
points_by_rank 0.031579
team_points 3
country_classification Classe B
Name: 1691, dtype: object
date 2021-02-24 00:00:00
team Nicaragua
score 0.0
suf_score 1.0
rank 149.0
rank_suf 130.0
rank_change 0.0
total_points 1055.0
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1692, dtype: object
date 2021-03-13 00:00:00
team South Sudan
score 0.0
suf_score 1.0
rank 163.0
rank_suf 104.0
rank_change 0.0
total_points 998.0
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1693, dtype: object
date 2021-03-15 00:00:00
team Tanzania
score 1.0
suf_score 2.0
rank 135.0
rank_suf 104.0
rank_change 0.0
total_points 1087.0
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1694, dtype: object
date 2021-03-17 00:00:00
team Malawi
score 0.0
suf_score 4.0
rank 123.0
rank_suf 146.0
rank_change 0.0
total_points 1140.0
result 0
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1695, dtype: object
date 2021-03-20 00:00:00
team Jordan
score 0.0
suf_score 0.0
rank 95.0
rank_suf 81.0
rank_change 0.0
total_points 1243.0
result 2
rank_dif -14.0
points_by_rank 0.012346
team_points 1
country_classification Classe B
Name: 1696, dtype: object
date 2021-03-24 00:00:00
team Honduras
score 1.0
suf_score 1.0
rank 64.0
rank_suf 88.0
rank_change 0.0
total_points 1367.0
result 2
rank_dif 24.0
points_by_rank 0.011364
team_points 1
country_classification Classe B
Name: 1697, dtype: object
date 2021-03-24 00:00:00
team Lebanon
score 0.0
suf_score 1.0
rank 92.0
rank_suf 95.0
rank_change 0.0
total_points 1263.0
result 0
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1698, dtype: object
date 2021-03-24 00:00:00
team Lithuania
score 0.0
suf_score 4.0
rank 129.0
rank_suf 117.0
rank_change 0.0
total_points 1114.0
result 0
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1699, dtype: object
date 2021-03-24 00:00:00
team Luxembourg
score 0.0
suf_score 1.0
rank 98.0
rank_suf 58.0
rank_change 0.0
total_points 1235.0
result 0
rank_dif -40.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1700, dtype: object
date 2021-03-24 00:00:00
team Montserrat
score 2.0
suf_score 2.0
rank 183.0
rank_suf 126.0
rank_change 0.0
total_points 921.0
result 2
rank_dif -57.0
points_by_rank 0.007937
team_points 1
country_classification Classe D
Name: 1701, dtype: object
date 2021-03-24 00:00:00
team Cayman Islands
score 0.0
suf_score 3.0
rank 193.0
rank_suf 141.0
rank_change 0.0
total_points 897.0
result 0
rank_dif -52.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1702, dtype: object
date 2021-03-24 00:00:00
team Cuba
score 0.0
suf_score 1.0
rank 180.0
rank_suf 130.0
rank_change 0.0
total_points 936.0
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1703, dtype: object
date 2021-03-24 00:00:00
team Dominica
score 0.0
suf_score 1.0
rank 184.0
rank_suf 159.0
rank_change 0.0
total_points 919.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1704, dtype: object
date 2021-03-24 00:00:00
team Azerbaijan
score 0.0
suf_score 1.0
rank 108.0
rank_suf 5.0
rank_change -1.0
total_points 1180.0
result 0
rank_dif -103.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1705, dtype: object
date 2021-03-24 00:00:00
team Republic of Ireland
score 2.0
suf_score 3.0
rank 42.0
rank_suf 30.0
rank_change 0.0
total_points 1456.0
result 0
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1706, dtype: object
date 2021-03-24 00:00:00
team Ukraine
score 1.0
suf_score 1.0
rank 24.0
rank_suf 2.0
rank_change 0.0
total_points 1521.0
result 2
rank_dif -22.0
points_by_rank 0.5
team_points 1
country_classification Classe A
Name: 1707, dtype: object
date 2021-03-24 00:00:00
team Bosnia and Herzegovina
score 2.0
suf_score 2.0
rank 56.0
rank_suf 55.0
rank_change 1.0
total_points 1410.0
result 2
rank_dif -1.0
points_by_rank 0.018182
team_points 1
country_classification Classe A
Name: 1708, dtype: object
date 2021-03-24 00:00:00
team Wales
score 1.0
suf_score 3.0
rank 18.0
rank_suf 1.0
rank_change 0.0
total_points 1562.0
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1709, dtype: object
date 2021-03-24 00:00:00
team Czech Republic
score 6.0
suf_score 2.0
rank 42.0
rank_suf 108.0
rank_change 0.0
total_points 1456.0
result 1
rank_dif 66.0
points_by_rank 0.027778
team_points 3
country_classification Classe A
Name: 1710, dtype: object
date 2021-03-24 00:00:00
team Netherlands
score 2.0
suf_score 4.0
rank 14.0
rank_suf 32.0
rank_change 0.0
total_points 1609.0
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1711, dtype: object
date 2021-03-24 00:00:00
team Norway
score 3.0
suf_score 0.0
rank 44.0
rank_suf 195.0
rank_change 0.0
total_points 1450.0
result 1
rank_dif 151.0
points_by_rank 0.015385
team_points 3
country_classification Classe A
Name: 1712, dtype: object
date 2021-03-24 00:00:00
team Montenegro
score 2.0
suf_score 1.0
rank 63.0
rank_suf 136.0
rank_change 0.0
total_points 1370.0
result 1
rank_dif 73.0
points_by_rank 0.022059
team_points 3
country_classification Classe B
Name: 1713, dtype: object
date 2021-03-24 00:00:00
team Russia
score 3.0
suf_score 1.0
rank 39.0
rank_suf 176.0
rank_change 0.0
total_points 1461.0
result 1
rank_dif 137.0
points_by_rank 0.017045
team_points 3
country_classification Classe A
Name: 1714, dtype: object
date 2021-03-24 00:00:00
team Croatia
score 0.0
suf_score 1.0
rank 11.0
rank_suf 62.0
rank_change 0.0
total_points 1617.0
result 0
rank_dif 51.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1715, dtype: object
date 2021-03-24 00:00:00
team Slovakia
score 0.0
suf_score 0.0
rank 34.0
rank_suf 100.0
rank_change 1.0
total_points 1478.0
result 2
rank_dif 66.0
points_by_rank 0.01
team_points 1
country_classification Classe A
Name: 1716, dtype: object
date 2021-03-24 00:00:00
team Namibia
score 3.0
suf_score 0.0
rank 121.0
rank_suf 178.0
rank_change 2.0
total_points 1143.0
result 1
rank_dif 57.0
points_by_rank 0.016854
team_points 3
country_classification Classe C
Name: 1717, dtype: object
date 2021-03-24 00:00:00
team Mali
score 0.0
suf_score 1.0
rank 54.0
rank_suf 72.0
rank_change -3.0
total_points 1412.0
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1718, dtype: object
date 2021-03-24 00:00:00
team Malawi
score 1.0
suf_score 0.0
rank 123.0
rank_suf 163.0
rank_change 0.0
total_points 1140.0
result 1
rank_dif 40.0
points_by_rank 0.018405
team_points 3
country_classification Classe C
Name: 1719, dtype: object
date 2021-03-24 00:00:00
team Burkina Faso
score 0.0
suf_score 0.0
rank 58.0
rank_suf 83.0
rank_change 0.0
total_points 1391.0
result 2
rank_dif 25.0
points_by_rank 0.012048
team_points 1
country_classification Classe B
Name: 1720, dtype: object
date 2021-03-24 00:00:00
team Sudan
score 2.0
suf_score 0.0
rank 127.0
rank_suf 187.0
rank_change 0.0
total_points 1124.0
result 1
rank_dif 60.0
points_by_rank 0.016043
team_points 3
country_classification Classe C
Name: 1721, dtype: object
date 2021-03-24 00:00:00
team Mozambique
score 0.0
suf_score 1.0
rank 106.0
rank_suf 133.0
rank_change 0.0
total_points 1185.0
result 0
rank_dif 27.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1722, dtype: object
date 2021-03-24 00:00:00
team Madagascar
score 0.0
suf_score 4.0
rank 94.0
rank_suf 146.0
rank_change 0.0
total_points 1257.0
result 0
rank_dif 52.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1723, dtype: object
date 2021-03-25 00:00:00
team Syria
score 1.0
suf_score 3.0
rank 76.0
rank_suf 97.0
rank_change 0.0
total_points 1313.0
result 0
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1724, dtype: object
date 2021-03-25 00:00:00
team Oman
score 1.0
suf_score 1.0
rank 81.0
rank_suf 104.0
rank_change -1.0
total_points 1303.0
result 2
rank_dif 23.0
points_by_rank 0.009615
team_points 1
country_classification Classe B
Name: 1725, dtype: object
date 2021-03-25 00:00:00
team South Korea
score 0.0
suf_score 3.0
rank 38.0
rank_suf 27.0
rank_change 0.0
total_points 1465.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1726, dtype: object
date 2021-03-25 00:00:00
team Kuwait
score 0.0
suf_score 1.0
rank 148.0
rank_suf 67.0
rank_change 0.0
total_points 1057.0
result 0
rank_dif -81.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1727, dtype: object
date 2021-03-25 00:00:00
team Jamaica
score 1.0
suf_score 4.0
rank 47.0
rank_suf 22.0
rank_change 0.0
total_points 1437.0
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1728, dtype: object
date 2021-03-25 00:00:00
team Grenada
score 0.0
suf_score 2.0
rank 160.0
rank_suf 70.0
rank_change 0.0
total_points 1015.0
result 0
rank_dif -90.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1729, dtype: object
date 2021-03-25 00:00:00
team Bermuda
score 1.0
suf_score 5.0
rank 169.0
rank_suf 73.0
rank_change 0.0
total_points 983.0
result 0
rank_dif -96.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1730, dtype: object
date 2021-03-25 00:00:00
team Barbados
score 0.0
suf_score 1.0
rank 162.0
rank_suf 78.0
rank_change 0.0
total_points 1009.0
result 0
rank_dif -84.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1731, dtype: object
date 2021-03-25 00:00:00
team Belize
score 0.0
suf_score 2.0
rank 170.0
rank_suf 84.0
rank_change 0.0
total_points 974.0
result 0
rank_dif -86.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1732, dtype: object
date 2021-03-25 00:00:00
team Guyana
score 0.0
suf_score 3.0
rank 167.0
rank_suf 103.0
rank_change 0.0
total_points 988.0
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1733, dtype: object
date 2021-03-25 00:00:00
team Greece
score 1.0
suf_score 1.0
rank 53.0
rank_suf 6.0
rank_change 0.0
total_points 1413.0
result 2
rank_dif -47.0
points_by_rank 0.166667
team_points 1
country_classification Classe A
Name: 1734, dtype: object
date 2021-03-25 00:00:00
team Georgia
score 0.0
suf_score 1.0
rank 89.0
rank_suf 20.0
rank_change 0.0
total_points 1267.0
result 0
rank_dif -69.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1735, dtype: object
date 2021-03-25 00:00:00
team Switzerland
score 3.0
suf_score 1.0
rank 16.0
rank_suf 68.0
rank_change 0.0
total_points 1593.0
result 1
rank_dif 52.0
points_by_rank 0.044118
team_points 3
country_classification Classe A
Name: 1736, dtype: object
date 2021-03-25 00:00:00
team Northern Ireland
score 0.0
suf_score 2.0
rank 45.0
rank_suf 10.0
rank_change 0.0
total_points 1440.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1737, dtype: object
date 2021-03-25 00:00:00
team Denmark
score 2.0
suf_score 0.0
rank 12.0
rank_suf 87.0
rank_change 0.0
total_points 1614.0
result 1
rank_dif 75.0
points_by_rank 0.034483
team_points 3
country_classification Classe S-
Name: 1738, dtype: object
date 2021-03-25 00:00:00
team Austria
score 2.0
suf_score 2.0
rank 23.0
rank_suf 48.0
rank_change 0.0
total_points 1531.0
result 2
rank_dif 25.0
points_by_rank 0.020833
team_points 1
country_classification Classe A
Name: 1739, dtype: object
date 2021-03-25 00:00:00
team Faroe Islands
score 1.0
suf_score 1.0
rank 107.0
rank_suf 177.0
rank_change 0.0
total_points 1183.0
result 2
rank_dif 70.0
points_by_rank 0.00565
team_points 1
country_classification Classe C
Name: 1740, dtype: object
date 2021-03-25 00:00:00
team San Marino
score 0.0
suf_score 5.0
rank 210.0
rank_suf 4.0
rank_change 0.0
total_points 810.0
result 0
rank_dif -206.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1741, dtype: object
date 2021-03-25 00:00:00
team Albania
score 1.0
suf_score 0.0
rank 66.0
rank_suf 151.0
rank_change 0.0
total_points 1360.0
result 1
rank_dif 85.0
points_by_rank 0.019868
team_points 3
country_classification Classe B
Name: 1742, dtype: object
date 2021-03-25 00:00:00
team Poland
score 3.0
suf_score 3.0
rank 19.0
rank_suf 40.0
rank_change 0.0
total_points 1559.0
result 2
rank_dif 21.0
points_by_rank 0.025
team_points 1
country_classification Classe A
Name: 1743, dtype: object
date 2021-03-25 00:00:00
team Iceland
score 0.0
suf_score 3.0
rank 46.0
rank_suf 13.0
rank_change 0.0
total_points 1438.0
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1744, dtype: object
date 2021-03-25 00:00:00
team Armenia
score 1.0
suf_score 0.0
rank 99.0
rank_suf 181.0
rank_change 0.0
total_points 1233.0
result 1
rank_dif 82.0
points_by_rank 0.016575
team_points 3
country_classification Classe B
Name: 1745, dtype: object
date 2021-03-25 00:00:00
team North Macedonia
score 2.0
suf_score 3.0
rank 65.0
rank_suf 37.0
rank_change 0.0
total_points 1362.0
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1746, dtype: object
date 2021-03-25 00:00:00
team Ghana
score 1.0
suf_score 1.0
rank 52.0
rank_suf 71.0
rank_change 0.0
total_points 1424.0
result 2
rank_dif 19.0
points_by_rank 0.014085
team_points 1
country_classification Classe A
Name: 1747, dtype: object
date 2021-03-25 00:00:00
team Angola
score 0.0
suf_score 1.0
rank 125.0
rank_suf 157.0
rank_change 0.0
total_points 1134.0
result 0
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1748, dtype: object
date 2021-03-25 00:00:00
team Togo
score 0.0
suf_score 0.0
rank 128.0
rank_suf 130.0
rank_change 0.0
total_points 1115.0
result 2
rank_dif 2.0
points_by_rank 0.007692
team_points 1
country_classification Classe C
Name: 1749, dtype: object
date 2021-03-25 00:00:00
team Egypt
score 1.0
suf_score 1.0
rank 49.0
rank_suf 104.0
rank_change 0.0
total_points 1432.0
result 2
rank_dif 55.0
points_by_rank 0.009615
team_points 1
country_classification Classe A
Name: 1750, dtype: object
date 2021-03-25 00:00:00
team Zimbabwe
score 1.0
suf_score 0.0
rank 112.0
rank_suf 146.0
rank_change 4.0
total_points 1176.0
result 1
rank_dif 34.0
points_by_rank 0.020548
team_points 3
country_classification Classe C
Name: 1751, dtype: object
date 2021-03-25 00:00:00
team Algeria
score 3.0
suf_score 3.0
rank 31.0
rank_suf 90.0
rank_change 0.0
total_points 1488.0
result 2
rank_dif 59.0
points_by_rank 0.011111
team_points 1
country_classification Classe A
Name: 1752, dtype: object
date 2021-03-25 00:00:00
team Tanzania
score 0.0
suf_score 1.0
rank 135.0
rank_suf 134.0
rank_change 0.0
total_points 1087.0
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1753, dtype: object
date 2021-03-25 00:00:00
team Tunisia
score 5.0
suf_score 2.0
rank 26.0
rank_suf 111.0
rank_change 0.0
total_points 1503.0
result 1
rank_dif 85.0
points_by_rank 0.027027
team_points 3
country_classification Classe A
Name: 1754, dtype: object
date 2021-03-25 00:00:00
team Mongolia
score 0.0
suf_score 3.0
rank 190.0
rank_suf 120.0
rank_change 0.0
total_points 906.0
result 0
rank_dif -70.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1755, dtype: object
date 2021-03-26 00:00:00
team Bolivia
score 1.0
suf_score 2.0
rank 79.0
rank_suf 17.0
rank_change 0.0
total_points 1307.0
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1756, dtype: object
date 2021-03-26 00:00:00
team Central African Republic
score 2.0
suf_score 2.0
rank 114.0
rank_suf 138.0
rank_change 0.0
total_points 1171.0
result 2
rank_dif 24.0
points_by_rank 0.007246
team_points 1
country_classification Classe C
Name: 1757, dtype: object
date 2021-03-26 00:00:00
team Morocco
score 0.0
suf_score 0.0
rank 33.0
rank_suf 101.0
rank_change -2.0
total_points 1481.0
result 2
rank_dif 68.0
points_by_rank 0.009901
team_points 1
country_classification Classe A
Name: 1758, dtype: object
date 2021-03-26 00:00:00
team Guinea-Bissau
score 3.0
suf_score 1.0
rank 119.0
rank_suf 153.0
rank_change -1.0
total_points 1146.0
result 1
rank_dif 34.0
points_by_rank 0.019608
team_points 3
country_classification Classe C
Name: 1759, dtype: object
date 2021-03-26 00:00:00
team Senegal
score 0.0
suf_score 0.0
rank 20.0
rank_suf 90.0
rank_change 0.0
total_points 1558.0
result 2
rank_dif 70.0
points_by_rank 0.011111
team_points 1
country_classification Classe A
Name: 1760, dtype: object
date 2021-03-27 00:00:00
team Costa Rica
score 0.0
suf_score 0.0
rank 50.0
rank_suf 56.0
rank_change -1.0
total_points 1427.0
result 2
rank_dif 6.0
points_by_rank 0.017857
team_points 1
country_classification Classe A
Name: 1761, dtype: object
date 2021-03-27 00:00:00
team Bangladesh
score 0.0
suf_score 0.0
rank 186.0
rank_suf 171.0
rank_change 0.0
total_points 917.0
result 2
rank_dif -15.0
points_by_rank 0.005848
team_points 1
country_classification Classe D
Name: 1762, dtype: object
date 2021-03-27 00:00:00
team Azerbaijan
score 1.0
suf_score 2.0
rank 108.0
rank_suf 58.0
rank_change -1.0
total_points 1180.0
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1763, dtype: object
date 2021-03-27 00:00:00
team Mexico
score 0.0
suf_score 1.0
rank 9.0
rank_suf 18.0
rank_change 0.0
total_points 1632.0
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1764, dtype: object
date 2021-03-27 00:00:00
team Suriname
score 6.0
suf_score 0.0
rank 141.0
rank_suf 200.0
rank_change 0.0
total_points 1073.0
result 1
rank_dif 59.0
points_by_rank 0.015
team_points 3
country_classification Classe C
Name: 1765, dtype: object
date 2021-03-27 00:00:00
team Guatemala
score 3.0
suf_score 0.0
rank 130.0
rank_suf 208.0
rank_change -1.0
total_points 1112.0
result 1
rank_dif 78.0
points_by_rank 0.014423
team_points 3
country_classification Classe C
Name: 1766, dtype: object
date 2021-03-27 00:00:00
team Dominican Republic
score 6.0
suf_score 0.0
rank 159.0
rank_suf 209.0
rank_change 0.0
total_points 1018.0
result 1
rank_dif 50.0
points_by_rank 0.014354
team_points 3
country_classification Classe C
Name: 1767, dtype: object
date 2021-03-27 00:00:00
team Nicaragua
score 7.0
suf_score 0.0
rank 149.0
rank_suf 203.0
rank_change 0.0
total_points 1055.0
result 1
rank_dif 54.0
points_by_rank 0.014778
team_points 3
country_classification Classe C
Name: 1768, dtype: object
date 2021-03-27 00:00:00
team Luxembourg
score 1.0
suf_score 0.0
rank 98.0
rank_suf 42.0
rank_change 0.0
total_points 1235.0
result 1
rank_dif -56.0
points_by_rank 0.071429
team_points 3
country_classification Classe B
Name: 1769, dtype: object
date 2021-03-27 00:00:00
team Portugal
score 2.0
suf_score 2.0
rank 5.0
rank_suf 30.0
rank_change 0.0
total_points 1662.0
result 2
rank_dif 25.0
points_by_rank 0.033333
team_points 1
country_classification Classe S-
Name: 1770, dtype: object
date 2021-03-27 00:00:00
team Estonia
score 2.0
suf_score 4.0
rank 108.0
rank_suf 88.0
rank_change -1.0
total_points 1180.0
result 0
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1771, dtype: object
date 2021-03-27 00:00:00
team Belgium
score 1.0
suf_score 1.0
rank 1.0
rank_suf 42.0
rank_change 0.0
total_points 1780.0
result 2
rank_dif 41.0
points_by_rank 0.02381
team_points 1
country_classification Classe S
Name: 1772, dtype: object
date 2021-03-27 00:00:00
team Gibraltar
score 1.0
suf_score 4.0
rank 195.0
rank_suf 63.0
rank_change 0.0
total_points 888.0
result 0
rank_dif -132.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1773, dtype: object
date 2021-03-27 00:00:00
team Latvia
score 0.0
suf_score 2.0
rank 136.0
rank_suf 14.0
rank_change 0.0
total_points 1082.0
result 0
rank_dif -122.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1774, dtype: object
date 2021-03-27 00:00:00
team Turkey
score 3.0
suf_score 0.0
rank 32.0
rank_suf 44.0
rank_change 0.0
total_points 1487.0
result 1
rank_dif 12.0
points_by_rank 0.068182
team_points 3
country_classification Classe A
Name: 1775, dtype: object
date 2021-03-27 00:00:00
team Slovenia
score 1.0
suf_score 2.0
rank 62.0
rank_suf 39.0
rank_change 0.0
total_points 1379.0
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1776, dtype: object
date 2021-03-27 00:00:00
team Cyprus
score 0.0
suf_score 1.0
rank 100.0
rank_suf 11.0
rank_change 0.0
total_points 1224.0
result 0
rank_dif -89.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1777, dtype: object
date 2021-03-27 00:00:00
team Malta
score 2.0
suf_score 2.0
rank 176.0
rank_suf 34.0
rank_change 0.0
total_points 951.0
result 2
rank_dif -142.0
points_by_rank 0.029412
team_points 1
country_classification Classe D
Name: 1778, dtype: object
date 2021-03-27 00:00:00
team Sierra Leone
score 0.0
suf_score 0.0
rank 116.0
rank_suf 143.0
rank_change 0.0
total_points 1165.0
result 2
rank_dif 27.0
points_by_rank 0.006993
team_points 1
country_classification Classe C
Name: 1779, dtype: object
date 2021-03-27 00:00:00
team Nigeria
score 1.0
suf_score 0.0
rank 36.0
rank_suf 82.0
rank_change 1.0
total_points 1474.0
result 1
rank_dif 46.0
points_by_rank 0.036585
team_points 3
country_classification Classe A
Name: 1780, dtype: object
date 2021-03-28 00:00:00
team Honduras
score 1.0
suf_score 2.0
rank 64.0
rank_suf 53.0
rank_change 0.0
total_points 1367.0
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1781, dtype: object
date 2021-03-28 00:00:00
team United States
score 2.0
suf_score 1.0
rank 22.0
rank_suf 45.0
rank_change 0.0
total_points 1548.0
result 1
rank_dif 23.0
points_by_rank 0.066667
team_points 3
country_classification Classe A
Name: 1782, dtype: object
date 2021-03-28 00:00:00
team El Salvador
score 1.0
suf_score 1.0
rank 70.0
rank_suf 183.0
rank_change 0.0
total_points 1344.0
result 2
rank_dif 113.0
points_by_rank 0.005464
team_points 1
country_classification Classe B
Name: 1783, dtype: object
date 2021-03-28 00:00:00
team Curaçao
score 2.0
suf_score 1.0
rank 76.0
rank_suf 180.0
rank_change 0.0
total_points 1313.0
result 1
rank_dif 104.0
points_by_rank 0.016667
team_points 3
country_classification Classe B
Name: 1784, dtype: object
date 2021-03-28 00:00:00
team Panama
score 2.0
suf_score 1.0
rank 78.0
rank_suf 184.0
rank_change 0.0
total_points 1312.0
result 1
rank_dif 106.0
points_by_rank 0.016304
team_points 3
country_classification Classe B
Name: 1785, dtype: object
date 2021-03-28 00:00:00
team Trinidad and Tobago
score 1.0
suf_score 1.0
rank 103.0
rank_suf 179.0
rank_change 0.0
total_points 1200.0
result 2
rank_dif 76.0
points_by_rank 0.005587
team_points 1
country_classification Classe C
Name: 1786, dtype: object
date 2021-03-28 00:00:00
team Spain
score 2.0
suf_score 1.0
rank 6.0
rank_suf 89.0
rank_change 0.0
total_points 1645.0
result 1
rank_dif 83.0
points_by_rank 0.033708
team_points 3
country_classification Classe S-
Name: 1787, dtype: object
date 2021-03-28 00:00:00
team Sweden
score 3.0
suf_score 0.0
rank 20.0
rank_suf 117.0
rank_change 0.0
total_points 1558.0
result 1
rank_dif 97.0
points_by_rank 0.025641
team_points 3
country_classification Classe A
Name: 1788, dtype: object
date 2021-03-28 00:00:00
team Lithuania
score 0.0
suf_score 1.0
rank 129.0
rank_suf 16.0
rank_change 0.0
total_points 1114.0
result 0
rank_dif -113.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1789, dtype: object
date 2021-03-28 00:00:00
team Italy
score 2.0
suf_score 0.0
rank 10.0
rank_suf 68.0
rank_change 0.0
total_points 1625.0
result 1
rank_dif 58.0
points_by_rank 0.044118
team_points 3
country_classification Classe S-
Name: 1790, dtype: object
date 2021-03-28 00:00:00
team France
score 2.0
suf_score 0.0
rank 2.0
rank_suf 122.0
rank_change 0.0
total_points 1755.0
result 1
rank_dif 120.0
points_by_rank 0.02459
team_points 3
country_classification Classe S
Name: 1791, dtype: object
date 2021-03-28 00:00:00
team Finland
score 1.0
suf_score 1.0
rank 55.0
rank_suf 24.0
rank_change 1.0
total_points 1411.0
result 2
rank_dif -31.0
points_by_rank 0.041667
team_points 1
country_classification Classe A
Name: 1792, dtype: object
date 2021-03-28 00:00:00
team Moldova
score 0.0
suf_score 8.0
rank 177.0
rank_suf 12.0
rank_change 0.0
total_points 950.0
result 0
rank_dif -165.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1793, dtype: object
date 2021-03-28 00:00:00
team Faroe Islands
score 1.0
suf_score 3.0
rank 107.0
rank_suf 23.0
rank_change 0.0
total_points 1183.0
result 0
rank_dif -84.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1794, dtype: object
date 2021-03-28 00:00:00
team Scotland
score 1.0
suf_score 1.0
rank 48.0
rank_suf 87.0
rank_change 0.0
total_points 1436.0
result 2
rank_dif 39.0
points_by_rank 0.011494
team_points 1
country_classification Classe A
Name: 1795, dtype: object
date 2021-03-28 00:00:00
team England
score 2.0
suf_score 0.0
rank 4.0
rank_suf 66.0
rank_change 0.0
total_points 1670.0
result 1
rank_dif 62.0
points_by_rank 0.045455
team_points 3
country_classification Classe S-
Name: 1796, dtype: object
date 2021-03-28 00:00:00
team Andorra
score 0.0
suf_score 3.0
rank 151.0
rank_suf 19.0
rank_change 0.0
total_points 1048.0
result 0
rank_dif -132.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1797, dtype: object
date 2021-03-28 00:00:00
team Hungary
score 3.0
suf_score 0.0
rank 40.0
rank_suf 210.0
rank_change 0.0
total_points 1460.0
result 1
rank_dif 170.0
points_by_rank 0.014286
team_points 3
country_classification Classe A
Name: 1798, dtype: object
date 2021-03-28 00:00:00
team Iceland
score 0.0
suf_score 2.0
rank 46.0
rank_suf 99.0
rank_change 0.0
total_points 1438.0
result 0
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1799, dtype: object
date 2021-03-28 00:00:00
team Liechtenstein
score 0.0
suf_score 5.0
rank 181.0
rank_suf 65.0
rank_change 0.0
total_points 924.0
result 0
rank_dif -116.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1800, dtype: object
date 2021-03-28 00:00:00
team Germany
score 1.0
suf_score 0.0
rank 13.0
rank_suf 37.0
rank_change 0.0
total_points 1610.0
result 1
rank_dif 24.0
points_by_rank 0.081081
team_points 3
country_classification Classe S-
Name: 1801, dtype: object
date 2021-03-28 00:00:00
team Guinea
score 1.0
suf_score 2.0
rank 72.0
rank_suf 121.0
rank_change -1.0
total_points 1334.0
result 0
rank_dif 49.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1802, dtype: object
date 2021-03-28 00:00:00
team Chad
score 0.0
suf_score 3.0
rank 178.0
rank_suf 54.0
rank_change 0.0
total_points 947.0
result 0
rank_dif -124.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1803, dtype: object
date 2021-03-28 00:00:00
team São Tomé and Príncipe
score 1.0
suf_score 3.0
rank 187.0
rank_suf 52.0
rank_change 0.0
total_points 914.0
result 0
rank_dif -135.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1804, dtype: object
date 2021-03-28 00:00:00
team South Africa
score 0.0
suf_score 2.0
rank 71.0
rank_suf 127.0
rank_change 0.0
total_points 1341.0
result 0
rank_dif 56.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1805, dtype: object
date 2021-03-28 00:00:00
team Equatorial Guinea
score 1.0
suf_score 2.0
rank 134.0
rank_suf 26.0
rank_change 0.0
total_points 1097.0
result 0
rank_dif -108.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1806, dtype: object
date 2021-03-28 00:00:00
team Libya
score 0.0
suf_score 1.0
rank 111.0
rank_suf 135.0
rank_change 0.0
total_points 1177.0
result 0
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1807, dtype: object
date 2021-03-29 00:00:00
team Bolivia
score 1.0
suf_score 2.0
rank 79.0
rank_suf 57.0
rank_change 0.0
total_points 1307.0
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1808, dtype: object
date 2021-03-29 00:00:00
team Lebanon
score 1.0
suf_score 1.0
rank 92.0
rank_suf 148.0
rank_change 0.0
total_points 1263.0
result 2
rank_dif 56.0
points_by_rank 0.006757
team_points 1
country_classification Classe B
Name: 1809, dtype: object
date 2021-03-29 00:00:00
team Bangladesh
score 1.0
suf_score 2.0
rank 186.0
rank_suf 171.0
rank_change 0.0
total_points 917.0
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1810, dtype: object
date 2021-03-29 00:00:00
team Iraq
score 1.0
suf_score 0.0
rank 69.0
rank_suf 85.0
rank_change 0.0
total_points 1348.0
result 1
rank_dif 16.0
points_by_rank 0.035294
team_points 3
country_classification Classe B
Name: 1811, dtype: object
date 2021-03-29 00:00:00
team Canada
score 11.0
suf_score 0.0
rank 73.0
rank_suf 193.0
rank_change 1.0
total_points 1332.0
result 1
rank_dif 120.0
points_by_rank 0.015544
team_points 3
country_classification Classe B
Name: 1812, dtype: object
date 2021-03-29 00:00:00
team South Sudan
score 0.0
suf_score 1.0
rank 163.0
rank_suf 58.0
rank_change 0.0
total_points 998.0
result 0
rank_dif -105.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1813, dtype: object
date 2021-03-29 00:00:00
team Uganda
score 0.0
suf_score 1.0
rank 83.0
rank_suf 123.0
rank_change 4.0
total_points 1301.0
result 0
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1814, dtype: object
date 2021-03-29 00:00:00
team Gabon
score 0.0
suf_score 2.0
rank 86.0
rank_suf 125.0
rank_change 0.0
total_points 1280.0
result 0
rank_dif 39.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1815, dtype: object
date 2021-03-29 00:00:00
team Kenya
score 2.0
suf_score 1.0
rank 104.0
rank_suf 128.0
rank_change 0.0
total_points 1187.0
result 1
rank_dif 24.0
points_by_rank 0.023438
team_points 3
country_classification Classe C
Name: 1816, dtype: object
date 2021-03-29 00:00:00
team Comoros
score 0.0
suf_score 4.0
rank 130.0
rank_suf 49.0
rank_change 0.0
total_points 1112.0
result 0
rank_dif -81.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1817, dtype: object
date 2021-03-29 00:00:00
team Botswana
score 0.0
suf_score 5.0
rank 146.0
rank_suf 31.0
rank_change 0.0
total_points 1066.0
result 0
rank_dif -115.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1818, dtype: object
date 2021-03-29 00:00:00
team Zambia
score 2.0
suf_score 0.0
rank 90.0
rank_suf 112.0
rank_change 0.0
total_points 1265.0
result 1
rank_dif 22.0
points_by_rank 0.026786
team_points 3
country_classification Classe B
Name: 1819, dtype: object
date 2021-03-29 00:00:00
team India
score 0.0
suf_score 6.0
rank 104.0
rank_suf 74.0
rank_change 0.0
total_points 1187.0
result 0
rank_dif -30.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1820, dtype: object
date 2021-03-30 00:00:00
team Jordan
score 2.0
suf_score 1.0
rank 95.0
rank_suf 97.0
rank_change 0.0
total_points 1243.0
result 1
rank_dif 2.0
points_by_rank 0.030928
team_points 3
country_classification Classe B
Name: 1821, dtype: object
date 2021-03-30 00:00:00
team Mexico
score 1.0
suf_score 0.0
rank 9.0
rank_suf 50.0
rank_change 0.0
total_points 1632.0
result 1
rank_dif 41.0
points_by_rank 0.06
team_points 3
country_classification Classe S-
Name: 1822, dtype: object
date 2021-03-30 00:00:00
team Syria
score 0.0
suf_score 3.0
rank 76.0
rank_suf 29.0
rank_change 0.0
total_points 1313.0
result 0
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1823, dtype: object
date 2021-03-30 00:00:00
team Qatar
score 1.0
suf_score 1.0
rank 58.0
rank_suf 42.0
rank_change 0.0
total_points 1391.0
result 2
rank_dif -16.0
points_by_rank 0.02381
team_points 1
country_classification Classe B
Name: 1824, dtype: object
date 2021-03-30 00:00:00
team Aruba
score 0.0
suf_score 5.0
rank 200.0
rank_suf 169.0
rank_change 0.0
total_points 867.0
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1825, dtype: object
date 2021-03-30 00:00:00
team Anguilla
score 0.0
suf_score 1.0
rank 209.0
rank_suf 162.0
rank_change 0.0
total_points 821.0
result 0
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1826, dtype: object
date 2021-03-30 00:00:00
team Turks and Caicos Islands
score 0.0
suf_score 5.0
rank 203.0
rank_suf 170.0
rank_change 0.0
total_points 862.0
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1827, dtype: object
date 2021-03-30 00:00:00
team Bahamas
score 0.0
suf_score 4.0
rank 196.0
rank_suf 167.0
rank_change 0.0
total_points 880.0
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1828, dtype: object
date 2021-03-30 00:00:00
team Serbia
score 2.0
suf_score 1.0
rank 30.0
rank_suf 108.0
rank_change 0.0
total_points 1492.0
result 1
rank_dif 78.0
points_by_rank 0.027778
team_points 3
country_classification Classe A
Name: 1829, dtype: object
date 2021-03-30 00:00:00
team Portugal
score 3.0
suf_score 1.0
rank 5.0
rank_suf 98.0
rank_change 0.0
total_points 1662.0
result 1
rank_dif 93.0
points_by_rank 0.030612
team_points 3
country_classification Classe S-
Name: 1830, dtype: object
date 2021-03-30 00:00:00
team Czech Republic
score 0.0
suf_score 1.0
rank 42.0
rank_suf 18.0
rank_change 0.0
total_points 1456.0
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1831, dtype: object
date 2021-03-30 00:00:00
team Belarus
score 0.0
suf_score 8.0
rank 88.0
rank_suf 1.0
rank_change 0.0
total_points 1269.0
result 0
rank_dif -87.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1832, dtype: object
date 2021-03-30 00:00:00
team Netherlands
score 7.0
suf_score 0.0
rank 14.0
rank_suf 195.0
rank_change 0.0
total_points 1609.0
result 1
rank_dif 181.0
points_by_rank 0.015385
team_points 3
country_classification Classe S-
Name: 1833, dtype: object
date 2021-03-30 00:00:00
team Norway
score 1.0
suf_score 0.0
rank 44.0
rank_suf 63.0
rank_change 0.0
total_points 1450.0
result 1
rank_dif 19.0
points_by_rank 0.047619
team_points 3
country_classification Classe A
Name: 1834, dtype: object
date 2021-03-30 00:00:00
team Latvia
score 3.0
suf_score 3.0
rank 136.0
rank_suf 32.0
rank_change 0.0
total_points 1082.0
result 2
rank_dif -104.0
points_by_rank 0.03125
team_points 1
country_classification Classe C
Name: 1835, dtype: object
date 2021-03-30 00:00:00
team Slovenia
score 0.0
suf_score 1.0
rank 62.0
rank_suf 100.0
rank_change 0.0
total_points 1379.0
result 0
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1836, dtype: object
date 2021-03-30 00:00:00
team Malta
score 0.0
suf_score 3.0
rank 176.0
rank_suf 11.0
rank_change 0.0
total_points 951.0
result 0
rank_dif -165.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1837, dtype: object
date 2021-03-30 00:00:00
team Russia
score 1.0
suf_score 2.0
rank 39.0
rank_suf 34.0
rank_change 0.0
total_points 1461.0
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1838, dtype: object
date 2021-03-30 00:00:00
team Palestine
score 0.0
suf_score 5.0
rank 102.0
rank_suf 67.0
rank_change 0.0
total_points 1206.0
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1839, dtype: object
date 2021-03-30 00:00:00
team Mongolia
score 0.0
suf_score 14.0
rank 190.0
rank_suf 27.0
rank_change 0.0
total_points 906.0
result 0
rank_dif -163.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1840, dtype: object
date 2021-03-30 00:00:00
team Mauritania
score 1.0
suf_score 0.0
rank 101.0
rank_suf 114.0
rank_change 0.0
total_points 1207.0
result 1
rank_dif 13.0
points_by_rank 0.026316
team_points 3
country_classification Classe B
Name: 1841, dtype: object
date 2021-03-30 00:00:00
team Burundi
score 0.0
suf_score 1.0
rank 138.0
rank_suf 33.0
rank_change 0.0
total_points 1078.0
result 0
rank_dif -105.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1842, dtype: object
date 2021-03-30 00:00:00
team Rwanda
score 0.0
suf_score 0.0
rank 133.0
rank_suf 50.0
rank_change 0.0
total_points 1103.0
result 2
rank_dif -83.0
points_by_rank 0.02
team_points 1
country_classification Classe C
Name: 1843, dtype: object
date 2021-03-30 00:00:00
team Congo
score 0.0
suf_score 3.0
rank 90.0
rank_suf 119.0
rank_change -1.0
total_points 1265.0
result 0
rank_dif 29.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1844, dtype: object
date 2021-03-30 00:00:00
team Eswatini
score 1.0
suf_score 1.0
rank 153.0
rank_suf 20.0
rank_change 0.0
total_points 1040.0
result 2
rank_dif -133.0
points_by_rank 0.05
team_points 1
country_classification Classe C
Name: 1845, dtype: object
date 2021-03-30 00:00:00
team Niger
score 0.0
suf_score 0.0
rank 113.0
rank_suf 94.0
rank_change 0.0
total_points 1172.0
result 2
rank_dif -19.0
points_by_rank 0.010638
team_points 1
country_classification Classe C
Name: 1846, dtype: object
date 2021-03-30 00:00:00
team Lesotho
score 0.0
suf_score 3.0
rank 143.0
rank_suf 36.0
rank_change 0.0
total_points 1072.0
result 0
rank_dif -107.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1847, dtype: object
date 2021-03-31 00:00:00
team Estonia
score 0.0
suf_score 1.0
rank 108.0
rank_suf 20.0
rank_change -1.0
total_points 1180.0
result 0
rank_dif -88.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1848, dtype: object
date 2021-03-31 00:00:00
team Finland
score 2.0
suf_score 3.0
rank 55.0
rank_suf 16.0
rank_change 1.0
total_points 1411.0
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1849, dtype: object
date 2021-03-31 00:00:00
team Kosovo
score 1.0
suf_score 3.0
rank 117.0
rank_suf 6.0
rank_change 0.0
total_points 1155.0
result 0
rank_dif -111.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1850, dtype: object
date 2021-03-31 00:00:00
team Georgia
score 1.0
suf_score 1.0
rank 89.0
rank_suf 53.0
rank_change 0.0
total_points 1267.0
result 2
rank_dif -36.0
points_by_rank 0.018868
team_points 1
country_classification Classe B
Name: 1851, dtype: object
date 2021-03-31 00:00:00
team Bulgaria
score 0.0
suf_score 0.0
rank 68.0
rank_suf 45.0
rank_change 0.0
total_points 1350.0
result 2
rank_dif -23.0
points_by_rank 0.022222
team_points 1
country_classification Classe B
Name: 1852, dtype: object
date 2021-03-31 00:00:00
team Italy
score 2.0
suf_score 0.0
rank 10.0
rank_suf 129.0
rank_change 0.0
total_points 1625.0
result 1
rank_dif 119.0
points_by_rank 0.023256
team_points 3
country_classification Classe S-
Name: 1853, dtype: object
date 2021-03-31 00:00:00
team France
score 1.0
suf_score 0.0
rank 2.0
rank_suf 56.0
rank_change 0.0
total_points 1755.0
result 1
rank_dif 54.0
points_by_rank 0.053571
team_points 3
country_classification Classe S
Name: 1854, dtype: object
date 2021-03-31 00:00:00
team Kazakhstan
score 1.0
suf_score 1.0
rank 122.0
rank_suf 24.0
rank_change 0.0
total_points 1142.0
result 2
rank_dif -98.0
points_by_rank 0.041667
team_points 1
country_classification Classe C
Name: 1855, dtype: object
date 2021-03-31 00:00:00
team Faroe Islands
score 0.0
suf_score 4.0
rank 107.0
rank_suf 48.0
rank_change 0.0
total_points 1183.0
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1856, dtype: object
date 2021-03-31 00:00:00
team Denmark
score 4.0
suf_score 0.0
rank 12.0
rank_suf 23.0
rank_change 0.0
total_points 1614.0
result 1
rank_dif 11.0
points_by_rank 0.130435
team_points 3
country_classification Classe S-
Name: 1857, dtype: object
date 2021-03-31 00:00:00
team Israel
score 4.0
suf_score 1.0
rank 87.0
rank_suf 177.0
rank_change 0.0
total_points 1279.0
result 1
rank_dif 90.0
points_by_rank 0.016949
team_points 3
country_classification Classe B
Name: 1858, dtype: object
date 2021-03-31 00:00:00
team Poland
score 1.0
suf_score 2.0
rank 19.0
rank_suf 4.0
rank_change 0.0
total_points 1559.0
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1859, dtype: object
date 2021-03-31 00:00:00
team Hungary
score 4.0
suf_score 1.0
rank 40.0
rank_suf 151.0
rank_change 0.0
total_points 1460.0
result 1
rank_dif 111.0
points_by_rank 0.019868
team_points 3
country_classification Classe A
Name: 1860, dtype: object
date 2021-03-31 00:00:00
team Albania
score 2.0
suf_score 0.0
rank 66.0
rank_suf 210.0
rank_change 0.0
total_points 1360.0
result 1
rank_dif 144.0
points_by_rank 0.014286
team_points 3
country_classification Classe B
Name: 1861, dtype: object
date 2021-03-31 00:00:00
team Romania
score 2.0
suf_score 3.0
rank 37.0
rank_suf 99.0
rank_change 0.0
total_points 1466.0
result 0
rank_dif 62.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1862, dtype: object
date 2021-03-31 00:00:00
team North Macedonia
score 2.0
suf_score 1.0
rank 65.0
rank_suf 13.0
rank_change 0.0
total_points 1362.0
result 1
rank_dif -52.0
points_by_rank 0.230769
team_points 3
country_classification Classe B
Name: 1863, dtype: object
date 2021-03-31 00:00:00
team Iceland
score 4.0
suf_score 1.0
rank 46.0
rank_suf 181.0
rank_change 0.0
total_points 1438.0
result 1
rank_dif 135.0
points_by_rank 0.016575
team_points 3
country_classification Classe A
Name: 1864, dtype: object
date 2021-05-23 00:00:00
team Bahrain
score 1.0
suf_score 1.0
rank 99.0
rank_suf 24.0
rank_change 2.0
total_points 1238.89
result 2
rank_dif -75.0
points_by_rank 0.041667
team_points 1
country_classification Classe B
Name: 1865, dtype: object
date 2021-05-24 00:00:00
team Tajikistan
score 0.0
suf_score 0.0
rank 121.0
rank_suf 68.0
rank_change 1.0
total_points 1151.1
result 2
rank_dif -53.0
points_by_rank 0.014706
team_points 1
country_classification Classe C
Name: 1866, dtype: object
date 2021-05-24 00:00:00
team Jordan
score 1.0
suf_score 5.0
rank 95.0
rank_suf 73.0
rank_change 0.0
total_points 1251.63
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1867, dtype: object
date 2021-05-25 00:00:00
team Afghanistan
score 3.0
suf_score 2.0
rank 149.0
rank_suf 173.0
rank_change -1.0
total_points 1052.24
result 1
rank_dif 24.0
points_by_rank 0.017341
team_points 3
country_classification Classe C
Name: 1868, dtype: object
date 2021-05-25 00:00:00
team Thailand
score 0.0
suf_score 1.0
rank 106.0
rank_suf 80.0
rank_change -4.0
total_points 1178.07
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1869, dtype: object
date 2021-05-27 00:00:00
team Azerbaijan
score 1.0
suf_score 2.0
rank 110.0
rank_suf 29.0
rank_change 0.0
total_points 1168.53
result 0
rank_dif -81.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1870, dtype: object
date 2021-05-28 00:00:00
team Malaysia
score 0.0
suf_score 2.0
rank 153.0
rank_suf 98.0
rank_change 0.0
total_points 1040.02
result 0
rank_dif -55.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1871, dtype: object
date 2021-05-28 00:00:00
team San Marino
score 0.0
suf_score 7.0
rank 210.0
rank_suf 7.0
rank_change 0.0
total_points 804.71
result 0
rank_dif -203.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1872, dtype: object
date 2021-05-29 00:00:00
team Oman
score 3.0
suf_score 1.0
rank 80.0
rank_suf 173.0
rank_change 0.0
total_points 1301.51
result 1
rank_dif 93.0
points_by_rank 0.017341
team_points 3
country_classification Classe B
Name: 1873, dtype: object
date 2021-05-29 00:00:00
team Nepal
score 2.0
suf_score 6.0
rank 171.0
rank_suf 68.0
rank_change 0.0
total_points 967.88
result 0
rank_dif -103.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1874, dtype: object
date 2021-05-29 00:00:00
team Iceland
score 1.0
suf_score 2.0
rank 52.0
rank_suf 11.0
rank_change 0.0
total_points 1415.99
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1875, dtype: object
date 2021-05-29 00:00:00
team Afghanistan
score 1.0
suf_score 1.0
rank 149.0
rank_suf 159.0
rank_change 0.0
total_points 1052.24
result 2
rank_dif 10.0
points_by_rank 0.006289
team_points 1
country_classification Classe C
Name: 1876, dtype: object
date 2021-05-29 00:00:00
team Finland
score 0.0
suf_score 2.0
rank 54.0
rank_suf 18.0
rank_change 0.0
total_points 1410.82
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1877, dtype: object
date 2021-05-29 00:00:00
team Tajikistan
score 2.0
suf_score 2.0
rank 121.0
rank_suf 106.0
rank_change 0.0
total_points 1151.1
result 2
rank_dif -15.0
points_by_rank 0.009434
team_points 1
country_classification Classe C
Name: 1878, dtype: object
date 2021-05-30 00:00:00
team Northern Ireland
score 3.0
suf_score 0.0
rank 48.0
rank_suf 175.0
rank_change 0.0
total_points 1425.74
result 1
rank_dif 127.0
points_by_rank 0.017143
team_points 3
country_classification Classe A
Name: 1879, dtype: object
date 2021-05-30 00:00:00
team United States
score 1.0
suf_score 2.0
rank 20.0
rank_suf 13.0
rank_change 0.0
total_points 1555.42
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1880, dtype: object
date 2021-05-31 00:00:00
team Vietnam
score 1.0
suf_score 1.0
rank 92.0
rank_suf 95.0
rank_change 0.0
total_points 1258.06
result 2
rank_dif 3.0
points_by_rank 0.010526
team_points 1
country_classification Classe B
Name: 1881, dtype: object
date 2021-05-31 00:00:00
team Guinea
score 0.0
suf_score 0.0
rank 72.0
rank_suf 29.0
rank_change 0.0
total_points 1331.79
result 2
rank_dif -43.0
points_by_rank 0.034483
team_points 1
country_classification Classe B
Name: 1882, dtype: object
date 2021-06-01 00:00:00
team Armenia
score 1.0
suf_score 1.0
rank 90.0
rank_suf 14.0
rank_change 0.0
total_points 1273.28
result 2
rank_dif -76.0
points_by_rank 0.071429
team_points 1
country_classification Classe B
Name: 1883, dtype: object
date 2021-06-01 00:00:00
team San Marino
score 1.0
suf_score 4.0
rank 210.0
rank_suf 120.0
rank_change 0.0
total_points 804.71
result 0
rank_dif -90.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1884, dtype: object
date 2021-06-01 00:00:00
team Slovenia
score 1.0
suf_score 1.0
rank 63.0
rank_suf 62.0
rank_change 0.0
total_points 1369.88
result 2
rank_dif -1.0
points_by_rank 0.016129
team_points 1
country_classification Classe B
Name: 1885, dtype: object
date 2021-06-01 00:00:00
team Russia
score 1.0
suf_score 1.0
rank 38.0
rank_suf 21.0
rank_change 0.0
total_points 1462.65
result 2
rank_dif -17.0
points_by_rank 0.047619
team_points 1
country_classification Classe A
Name: 1886, dtype: object
date 2021-06-01 00:00:00
team Bulgaria
score 1.0
suf_score 1.0
rank 71.0
rank_suf 36.0
rank_change 0.0
total_points 1339.03
result 2
rank_dif -35.0
points_by_rank 0.027778
team_points 1
country_classification Classe B
Name: 1887, dtype: object
date 2021-06-01 00:00:00
team Estonia
score 1.0
suf_score 0.0
rank 116.0
rank_suf 134.0
rank_change 0.0
total_points 1161.58
result 1
rank_dif 18.0
points_by_rank 0.022388
team_points 3
country_classification Classe C
Name: 1888, dtype: object
date 2021-06-02 00:00:00
team Azerbaijan
score 2.0
suf_score 1.0
rank 110.0
rank_suf 89.0
rank_change 0.0
total_points 1168.53
result 1
rank_dif -21.0
points_by_rank 0.033708
team_points 3
country_classification Classe C
Name: 1889, dtype: object
date 2021-06-02 00:00:00
team Montenegro
score 0.0
suf_score 0.0
rank 64.0
rank_suf 55.0
rank_change 0.0
total_points 1368.49
result 2
rank_dif -9.0
points_by_rank 0.018182
team_points 1
country_classification Classe B
Name: 1890, dtype: object
date 2021-06-02 00:00:00
team Austria
score 0.0
suf_score 1.0
rank 23.0
rank_suf 4.0
rank_change 0.0
total_points 1523.42
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1891, dtype: object
date 2021-06-02 00:00:00
team Wales
score 0.0
suf_score 3.0
rank 17.0
rank_suf 2.0
rank_change 0.0
total_points 1570.36
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1892, dtype: object
date 2021-06-02 00:00:00
team Denmark
score 1.0
suf_score 1.0
rank 10.0
rank_suf 12.0
rank_change 0.0
total_points 1631.55
result 2
rank_dif 2.0
points_by_rank 0.083333
team_points 1
country_classification Classe S-
Name: 1893, dtype: object
date 2021-06-02 00:00:00
team Lesotho
score 0.0
suf_score 5.0
rank 146.0
rank_suf 117.0
rank_change 0.0
total_points 1069.91
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1894, dtype: object
date 2021-06-02 00:00:00
team Scotland
score 2.0
suf_score 2.0
rank 44.0
rank_suf 16.0
rank_change 0.0
total_points 1441.43
result 2
rank_dif -28.0
points_by_rank 0.0625
team_points 1
country_classification Classe A
Name: 1895, dtype: object
date 2021-06-02 00:00:00
team Luxembourg
score 0.0
suf_score 1.0
rank 96.0
rank_suf 42.0
rank_change 0.0
total_points 1244.86
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1896, dtype: object
date 2021-06-02 00:00:00
team Georgia
score 2.0
suf_score 1.0
rank 91.0
rank_suf 43.0
rank_change 0.0
total_points 1259.51
result 1
rank_dif -48.0
points_by_rank 0.069767
team_points 3
country_classification Classe B
Name: 1897, dtype: object
date 2021-06-02 00:00:00
team Aruba
score 3.0
suf_score 1.0
rank 205.0
rank_suf 194.0
rank_change 0.0
total_points 850.1
result 1
rank_dif -11.0
points_by_rank 0.015464
team_points 3
country_classification Classe D
Name: 1898, dtype: object
date 2021-06-02 00:00:00
team British Virgin Islands
score 0.0
suf_score 5.0
rank 208.0
rank_suf 181.0
rank_change 0.0
total_points 826.27
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1899, dtype: object
date 2021-06-02 00:00:00
team Anguilla
score 0.0
suf_score 3.0
rank 209.0
rank_suf 188.0
rank_change 0.0
total_points 805.42
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1900, dtype: object
date 2021-06-02 00:00:00
team Bahamas
score 0.0
suf_score 7.0
rank 201.0
rank_suf 178.0
rank_change 0.0
total_points 861.84
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1901, dtype: object
date 2021-06-03 00:00:00
team Mauritania
score 1.0
suf_score 4.0
rank 101.0
rank_suf 33.0
rank_change 0.0
total_points 1224.76
result 0
rank_dif -68.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1902, dtype: object
date 2021-06-03 00:00:00
team Republic of Ireland
score 4.0
suf_score 1.0
rank 47.0
rank_suf 158.0
rank_change 0.0
total_points 1427.22
result 1
rank_dif 111.0
points_by_rank 0.018987
team_points 3
country_classification Classe A
Name: 1903, dtype: object
date 2021-06-03 00:00:00
team Greece
score 1.0
suf_score 1.0
rank 51.0
rank_suf 1.0
rank_change 0.0
total_points 1418.7
result 2
rank_dif -50.0
points_by_rank 1.0
team_points 1
country_classification Classe A
Name: 1904, dtype: object
date 2021-06-03 00:00:00
team Liechtenstein
score 0.0
suf_score 7.0
rank 186.0
rank_suf 13.0
rank_change 0.0
total_points 911.05
result 0
rank_dif -173.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1905, dtype: object
date 2021-06-03 00:00:00
team Moldova
score 0.0
suf_score 2.0
rank 177.0
rank_suf 29.0
rank_change 0.0
total_points 948.16
result 0
rank_dif -148.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1906, dtype: object
date 2021-06-03 00:00:00
team Northern Ireland
score 0.0
suf_score 1.0
rank 48.0
rank_suf 24.0
rank_change 0.0
total_points 1425.74
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1907, dtype: object
date 2021-06-03 00:00:00
team Costa Rica
score 0.0
suf_score 0.0
rank 50.0
rank_suf 11.0
rank_change 0.0
total_points 1423.4
result 2
rank_dif -39.0
points_by_rank 0.090909
team_points 1
country_classification Classe A
Name: 1908, dtype: object
date 2021-06-03 00:00:00
team Honduras
score 0.0
suf_score 1.0
rank 67.0
rank_suf 20.0
rank_change 0.0
total_points 1361.21
result 0
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1909, dtype: object
date 2021-06-03 00:00:00
team Hong Kong
score 1.0
suf_score 3.0
rank 144.0
rank_suf 31.0
rank_change 0.0
total_points 1072.0
result 0
rank_dif -113.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1910, dtype: object
date 2021-06-03 00:00:00
team Cambodia
score 0.0
suf_score 8.0
rank 174.0
rank_suf 98.0
rank_change 0.0
total_points 963.79
result 0
rank_dif -76.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1911, dtype: object
date 2021-06-03 00:00:00
team Singapore
score 0.0
suf_score 4.0
rank 159.0
rank_suf 104.0
rank_change 0.0
total_points 1020.27
result 0
rank_dif -55.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1912, dtype: object
date 2021-06-03 00:00:00
team Afghanistan
score 1.0
suf_score 1.0
rank 149.0
rank_suf 184.0
rank_change 0.0
total_points 1052.24
result 2
rank_dif 35.0
points_by_rank 0.005435
team_points 1
country_classification Classe C
Name: 1913, dtype: object
date 2021-06-03 00:00:00
team Malaysia
score 0.0
suf_score 4.0
rank 153.0
rank_suf 73.0
rank_change 0.0
total_points 1040.02
result 0
rank_dif -80.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1914, dtype: object
date 2021-06-03 00:00:00
team Indonesia
score 2.0
suf_score 2.0
rank 173.0
rank_suf 106.0
rank_change 0.0
total_points 964.07
result 2
rank_dif -67.0
points_by_rank 0.009434
team_points 1
country_classification Classe D
Name: 1915, dtype: object
date 2021-06-03 00:00:00
team Venezuela
score 1.0
suf_score 3.0
rank 30.0
rank_suf 81.0
rank_change 0.0
total_points 1500.71
result 0
rank_dif 51.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1916, dtype: object
date 2021-06-03 00:00:00
team Paraguay
score 0.0
suf_score 0.0
rank 35.0
rank_suf 9.0
rank_change 0.0
total_points 1476.02
result 2
rank_dif -26.0
points_by_rank 0.111111
team_points 1
country_classification Classe A
Name: 1917, dtype: object
date 2021-06-03 00:00:00
team Chile
score 1.0
suf_score 1.0
rank 19.0
rank_suf 8.0
rank_change 0.0
total_points 1569.52
result 2
rank_dif -11.0
points_by_rank 0.125
team_points 1
country_classification Classe A
Name: 1918, dtype: object
date 2021-06-03 00:00:00
team Colombia
score 3.0
suf_score 0.0
rank 15.0
rank_suf 27.0
rank_change 0.0
total_points 1600.66
result 1
rank_dif 12.0
points_by_rank 0.111111
team_points 3
country_classification Classe S-
Name: 1919, dtype: object
date 2021-06-03 00:00:00
team Australia
score 3.0
suf_score 0.0
rank 41.0
rank_suf 148.0
rank_change 0.0
total_points 1457.49
result 1
rank_dif 107.0
points_by_rank 0.02027
team_points 3
country_classification Classe A
Name: 1920, dtype: object
date 2021-06-03 00:00:00
team India
score 0.0
suf_score 1.0
rank 105.0
rank_suf 58.0
rank_change 0.0
total_points 1184.36
result 0
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1921, dtype: object
date 2021-06-04 00:00:00
team Iceland
score 1.0
suf_score 0.0
rank 52.0
rank_suf 113.0
rank_change 0.0
total_points 1415.99
result 1
rank_dif 61.0
points_by_rank 0.026549
team_points 3
country_classification Classe A
Name: 1922, dtype: object
date 2021-06-04 00:00:00
team Estonia
score 1.0
suf_score 0.0
rank 116.0
rank_suf 54.0
rank_change 0.0
total_points 1161.58
result 1
rank_dif -62.0
points_by_rank 0.055556
team_points 3
country_classification Classe C
Name: 1923, dtype: object
date 2021-06-04 00:00:00
team Cyprus
score 0.0
suf_score 1.0
rank 97.0
rank_suf 37.0
rank_change 0.0
total_points 1240.78
result 0
rank_dif -60.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1924, dtype: object
date 2021-06-04 00:00:00
team Czech Republic
score 0.0
suf_score 4.0
rank 40.0
rank_suf 7.0
rank_change 0.0
total_points 1458.81
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1925, dtype: object
date 2021-06-04 00:00:00
team Malta
score 1.0
suf_score 2.0
rank 175.0
rank_suf 120.0
rank_change 0.0
total_points 955.89
result 0
rank_dif -55.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1926, dtype: object
date 2021-06-04 00:00:00
team Cameroon
score 1.0
suf_score 0.0
rank 55.0
rank_suf 32.0
rank_change 0.0
total_points 1404.87
result 1
rank_dif -23.0
points_by_rank 0.09375
team_points 3
country_classification Classe A
Name: 1927, dtype: object
date 2021-06-04 00:00:00
team Kazakhstan
score 0.0
suf_score 4.0
rank 124.0
rank_suf 62.0
rank_change 0.0
total_points 1147.35
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1928, dtype: object
date 2021-06-04 00:00:00
team Central African Republic
score 0.0
suf_score 2.0
rank 118.0
rank_suf 129.0
rank_change 0.0
total_points 1157.64
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1929, dtype: object
date 2021-06-04 00:00:00
team Gibraltar
score 0.0
suf_score 6.0
rank 195.0
rank_suf 63.0
rank_change 0.0
total_points 880.16
result 0
rank_dif -132.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1930, dtype: object
date 2021-06-04 00:00:00
team Portugal
score 0.0
suf_score 0.0
rank 5.0
rank_suf 6.0
rank_change 0.0
total_points 1666.12
result 2
rank_dif 1.0
points_by_rank 0.166667
team_points 1
country_classification Classe S-
Name: 1931, dtype: object
date 2021-06-04 00:00:00
team Lithuania
score 1.0
suf_score 3.0
rank 134.0
rank_suf 138.0
rank_change 0.0
total_points 1102.84
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1932, dtype: object
date 2021-06-04 00:00:00
team Syria
score 4.0
suf_score 0.0
rank 79.0
rank_suf 155.0
rank_change 0.0
total_points 1304.12
result 1
rank_dif 76.0
points_by_rank 0.019355
team_points 3
country_classification Classe B
Name: 1933, dtype: object
date 2021-06-04 00:00:00
team Grenada
score 0.0
suf_score 1.0
rank 160.0
rank_suf 128.0
rank_change 0.0
total_points 1017.57
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1934, dtype: object
date 2021-06-04 00:00:00
team Bermuda
score 0.0
suf_score 6.0
rank 168.0
rank_suf 136.0
rank_change 0.0
total_points 987.78
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1935, dtype: object
date 2021-06-04 00:00:00
team Barbados
score 1.0
suf_score 1.0
rank 162.0
rank_suf 156.0
rank_change 0.0
total_points 1010.95
result 2
rank_dif -6.0
points_by_rank 0.00641
team_points 1
country_classification Classe C
Name: 1936, dtype: object
date 2021-06-04 00:00:00
team Belize
score 0.0
suf_score 3.0
rank 170.0
rank_suf 147.0
rank_change 0.0
total_points 977.95
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1937, dtype: object
date 2021-06-04 00:00:00
team Ecuador
score 0.0
suf_score 2.0
rank 53.0
rank_suf 3.0
rank_change 0.0
total_points 1413.01
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1938, dtype: object
date 2021-06-05 00:00:00
team Togo
score 2.0
suf_score 0.0
rank 133.0
rank_suf 72.0
rank_change 0.0
total_points 1104.14
result 1
rank_dif -61.0
points_by_rank 0.041667
team_points 3
country_classification Classe C
Name: 1939, dtype: object
date 2021-06-05 00:00:00
team Israel
score 3.0
suf_score 1.0
rank 85.0
rank_suf 64.0
rank_change 0.0
total_points 1283.36
result 1
rank_dif -21.0
points_by_rank 0.046875
team_points 3
country_classification Classe B
Name: 1940, dtype: object
date 2021-06-05 00:00:00
team Gambia
score 2.0
suf_score 0.0
rank 152.0
rank_suf 112.0
rank_change 0.0
total_points 1043.45
result 1
rank_dif -40.0
points_by_rank 0.026786
team_points 3
country_classification Classe C
Name: 1941, dtype: object
date 2021-06-05 00:00:00
team Bulgaria
score 0.0
suf_score 1.0
rank 71.0
rank_suf 38.0
rank_change 0.0
total_points 1339.03
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1942, dtype: object
date 2021-06-05 00:00:00
team Zambia
score 1.0
suf_score 3.0
rank 87.0
rank_suf 22.0
rank_change 0.0
total_points 1280.15
result 0
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1943, dtype: object
date 2021-06-05 00:00:00
team Armenia
score 1.0
suf_score 3.0
rank 90.0
rank_suf 18.0
rank_change 0.0
total_points 1273.28
result 0
rank_dif -72.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1944, dtype: object
date 2021-06-05 00:00:00
team Albania
score 0.0
suf_score 0.0
rank 66.0
rank_suf 17.0
rank_change 0.0
total_points 1362.09
result 2
rank_dif -49.0
points_by_rank 0.058824
team_points 1
country_classification Classe B
Name: 1945, dtype: object
date 2021-06-05 00:00:00
team Yemen
score 0.0
suf_score 3.0
rank 145.0
rank_suf 65.0
rank_change 0.0
total_points 1070.54
result 0
rank_dif -80.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1946, dtype: object
date 2021-06-05 00:00:00
team Sri Lanka
score 2.0
suf_score 3.0
rank 204.0
rank_suf 93.0
rank_change 0.0
total_points 853.07
result 0
rank_dif -111.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1947, dtype: object
date 2021-06-05 00:00:00
team Turkmenistan
score 0.0
suf_score 5.0
rank 130.0
rank_suf 39.0
rank_change 0.0
total_points 1106.51
result 0
rank_dif -91.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1948, dtype: object
date 2021-06-05 00:00:00
team Canada
score 7.0
suf_score 0.0
rank 70.0
rank_suf 205.0
rank_change 0.0
total_points 1340.56
result 1
rank_dif 135.0
points_by_rank 0.014634
team_points 3
country_classification Classe B
Name: 1949, dtype: object
date 2021-06-05 00:00:00
team Curaçao
score 8.0
suf_score 0.0
rank 76.0
rank_suf 208.0
rank_change 0.0
total_points 1323.06
result 1
rank_dif 132.0
points_by_rank 0.014423
team_points 3
country_classification Classe B
Name: 1950, dtype: object
date 2021-06-05 00:00:00
team Anguilla
score 0.0
suf_score 13.0
rank 209.0
rank_suf 78.0
rank_change 0.0
total_points 805.42
result 0
rank_dif -131.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1951, dtype: object
date 2021-06-05 00:00:00
team Haiti
score 10.0
suf_score 0.0
rank 83.0
rank_suf 206.0
rank_change 0.0
total_points 1290.62
result 1
rank_dif 123.0
points_by_rank 0.014563
team_points 3
country_classification Classe B
Name: 1952, dtype: object
date 2021-06-05 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 0.0
rank 103.0
rank_suf 201.0
rank_change 0.0
total_points 1201.33
result 2
rank_dif 98.0
points_by_rank 0.004975
team_points 1
country_classification Classe B
Name: 1953, dtype: object
date 2021-06-06 00:00:00
team Mali
score 0.0
suf_score 1.0
rank 57.0
rank_suf 33.0
rank_change 0.0
total_points 1400.94
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1954, dtype: object
date 2021-06-06 00:00:00
team Slovakia
score 0.0
suf_score 0.0
rank 36.0
rank_suf 23.0
rank_change 0.0
total_points 1475.24
result 2
rank_dif -13.0
points_by_rank 0.043478
team_points 1
country_classification Classe A
Name: 1955, dtype: object
date 2021-06-06 00:00:00
team Croatia
score 0.0
suf_score 1.0
rank 14.0
rank_suf 1.0
rank_change 0.0
total_points 1605.75
result 0
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1956, dtype: object
date 2021-06-06 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 2.0
rank 55.0
rank_suf 10.0
rank_change 0.0
total_points 1404.87
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1957, dtype: object
date 2021-06-06 00:00:00
team Romania
score 0.0
suf_score 1.0
rank 43.0
rank_suf 4.0
rank_change 0.0
total_points 1449.23
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1958, dtype: object
date 2021-06-06 00:00:00
team Scotland
score 1.0
suf_score 0.0
rank 44.0
rank_suf 96.0
rank_change 0.0
total_points 1441.43
result 1
rank_dif 52.0
points_by_rank 0.03125
team_points 3
country_classification Classe A
Name: 1959, dtype: object
date 2021-06-06 00:00:00
team Azerbaijan
score 0.0
suf_score 1.0
rank 110.0
rank_suf 177.0
rank_change 0.0
total_points 1168.53
result 0
rank_dif 67.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1960, dtype: object
date 2021-06-06 00:00:00
team Georgia
score 0.0
suf_score 3.0
rank 91.0
rank_suf 16.0
rank_change 0.0
total_points 1259.51
result 0
rank_dif -75.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1961, dtype: object
date 2021-06-06 00:00:00
team Greece
score 2.0
suf_score 1.0
rank 51.0
rank_suf 42.0
rank_change 0.0
total_points 1418.7
result 1
rank_dif -9.0
points_by_rank 0.071429
team_points 3
country_classification Classe A
Name: 1962, dtype: object
date 2021-06-06 00:00:00
team Costa Rica
score 2.0
suf_score 2.0
rank 50.0
rank_suf 67.0
rank_change 0.0
total_points 1423.4
result 2
rank_dif 17.0
points_by_rank 0.014925
team_points 1
country_classification Classe A
Name: 1963, dtype: object
date 2021-06-06 00:00:00
team Mexico
score 2.0
suf_score 3.0
rank 11.0
rank_suf 20.0
rank_change 0.0
total_points 1629.56
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 1964, dtype: object
date 2021-06-07 00:00:00
team Gibraltar
score 0.0
suf_score 0.0
rank 195.0
rank_suf 158.0
rank_change 0.0
total_points 880.16
result 2
rank_dif -37.0
points_by_rank 0.006329
team_points 1
country_classification Classe D
Name: 1965, dtype: object
date 2021-06-07 00:00:00
team Liechtenstein
score 1.0
suf_score 5.0
rank 186.0
rank_suf 113.0
rank_change 0.0
total_points 911.05
result 0
rank_dif -73.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1966, dtype: object
date 2021-06-07 00:00:00
team Latvia
score 1.0
suf_score 7.0
rank 138.0
rank_suf 12.0
rank_change 0.0
total_points 1081.66
result 0
rank_dif -126.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1967, dtype: object
date 2021-06-07 00:00:00
team Central African Republic
score 0.0
suf_score 5.0
rank 118.0
rank_suf 129.0
rank_change 0.0
total_points 1157.64
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1968, dtype: object
date 2021-06-07 00:00:00
team Jamaica
score 1.0
suf_score 1.0
rank 45.0
rank_suf 25.0
rank_change 0.0
total_points 1432.65
result 2
rank_dif -20.0
points_by_rank 0.04
team_points 1
country_classification Classe A
Name: 1969, dtype: object
date 2021-06-07 00:00:00
team Cyprus
score 0.0
suf_score 4.0
rank 97.0
rank_suf 24.0
rank_change 0.0
total_points 1240.78
result 0
rank_dif -73.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1970, dtype: object
date 2021-06-07 00:00:00
team Syria
score 3.0
suf_score 0.0
rank 79.0
rank_suf 198.0
rank_change 0.0
total_points 1304.12
result 1
rank_dif 119.0
points_by_rank 0.015152
team_points 3
country_classification Classe B
Name: 1971, dtype: object
date 2021-06-07 00:00:00
team Philippines
score 0.0
suf_score 2.0
rank 125.0
rank_suf 77.0
rank_change 0.0
total_points 1135.94
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1972, dtype: object
date 2021-06-07 00:00:00
team Jordan
score 3.0
suf_score 0.0
rank 95.0
rank_suf 171.0
rank_change 0.0
total_points 1251.63
result 1
rank_dif 76.0
points_by_rank 0.017544
team_points 3
country_classification Classe B
Name: 1973, dtype: object
date 2021-06-07 00:00:00
team Cambodia
score 1.0
suf_score 4.0
rank 174.0
rank_suf 68.0
rank_change 0.0
total_points 963.79
result 0
rank_dif -106.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1974, dtype: object
date 2021-06-07 00:00:00
team Singapore
score 0.0
suf_score 5.0
rank 159.0
rank_suf 86.0
rank_change 0.0
total_points 1020.27
result 0
rank_dif -73.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1975, dtype: object
date 2021-06-07 00:00:00
team India
score 2.0
suf_score 0.0
rank 105.0
rank_suf 184.0
rank_change 0.0
total_points 1184.36
result 1
rank_dif 79.0
points_by_rank 0.016304
team_points 3
country_classification Classe C
Name: 1976, dtype: object
date 2021-06-07 00:00:00
team Tajikistan
score 1.0
suf_score 4.0
rank 121.0
rank_suf 28.0
rank_change 0.0
total_points 1151.1
result 0
rank_dif -93.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1977, dtype: object
date 2021-06-07 00:00:00
team Thailand
score 1.0
suf_score 3.0
rank 106.0
rank_suf 73.0
rank_change 0.0
total_points 1178.07
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1978, dtype: object
date 2021-06-07 00:00:00
team Indonesia
score 0.0
suf_score 4.0
rank 173.0
rank_suf 92.0
rank_change 0.0
total_points 964.07
result 0
rank_dif -81.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 1979, dtype: object
date 2021-06-07 00:00:00
team Iran
score 3.0
suf_score 0.0
rank 31.0
rank_suf 98.0
rank_change 0.0
total_points 1499.52
result 1
rank_dif 67.0
points_by_rank 0.030612
team_points 3
country_classification Classe A
Name: 1980, dtype: object
date 2021-06-07 00:00:00
team Oman
score 0.0
suf_score 1.0
rank 80.0
rank_suf 58.0
rank_change 0.0
total_points 1301.51
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1981, dtype: object
date 2021-06-08 00:00:00
team Zambia
score 2.0
suf_score 2.0
rank 87.0
rank_suf 82.0
rank_change 0.0
total_points 1280.15
result 2
rank_dif -5.0
points_by_rank 0.012195
team_points 1
country_classification Classe B
Name: 1982, dtype: object
date 2021-06-08 00:00:00
team Nigeria
score 0.0
suf_score 0.0
rank 32.0
rank_suf 55.0
rank_change 0.0
total_points 1487.16
result 2
rank_dif 23.0
points_by_rank 0.018182
team_points 1
country_classification Classe A
Name: 1983, dtype: object
date 2021-06-08 00:00:00
team Albania
score 1.0
suf_score 3.0
rank 66.0
rank_suf 40.0
rank_change 0.0
total_points 1362.09
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1984, dtype: object
date 2021-06-08 00:00:00
team Bulgaria
score 0.0
suf_score 3.0
rank 71.0
rank_suf 2.0
rank_change 0.0
total_points 1339.03
result 0
rank_dif -69.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 1985, dtype: object
date 2021-06-08 00:00:00
team Togo
score 0.0
suf_score 1.0
rank 133.0
rank_suf 152.0
rank_change 0.0
total_points 1104.14
result 0
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1986, dtype: object
date 2021-06-08 00:00:00
team Republic of Ireland
score 0.0
suf_score 0.0
rank 47.0
rank_suf 37.0
rank_change 0.0
total_points 1427.22
result 2
rank_dif -10.0
points_by_rank 0.027027
team_points 1
country_classification Classe A
Name: 1987, dtype: object
date 2021-06-08 00:00:00
team Guinea
score 2.0
suf_score 1.0
rank 72.0
rank_suf 120.0
rank_change 0.0
total_points 1331.79
result 1
rank_dif 48.0
points_by_rank 0.025
team_points 3
country_classification Classe B
Name: 1988, dtype: object
date 2021-06-08 00:00:00
team Ghana
score 0.0
suf_score 1.0
rank 49.0
rank_suf 34.0
rank_change 0.0
total_points 1425.26
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 1989, dtype: object
date 2021-06-08 00:00:00
team Eswatini
score 1.0
suf_score 1.0
rank 154.0
rank_suf 117.0
rank_change 0.0
total_points 1039.24
result 2
rank_dif -37.0
points_by_rank 0.008547
team_points 1
country_classification Classe C
Name: 1990, dtype: object
date 2021-06-08 00:00:00
team Iceland
score 2.0
suf_score 2.0
rank 52.0
rank_suf 21.0
rank_change 0.0
total_points 1415.99
result 2
rank_dif -31.0
points_by_rank 0.047619
team_points 1
country_classification Classe A
Name: 1991, dtype: object
date 2021-06-08 00:00:00
team Lithuania
score 0.0
suf_score 4.0
rank 134.0
rank_suf 6.0
rank_change 0.0
total_points 1102.84
result 0
rank_dif -128.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1992, dtype: object
date 2021-06-08 00:00:00
team Montserrat
score 2.0
suf_score 1.0
rank 180.0
rank_suf 160.0
rank_change 0.0
total_points 933.64
result 1
rank_dif -20.0
points_by_rank 0.01875
team_points 3
country_classification Classe D
Name: 1993, dtype: object
date 2021-06-08 00:00:00
team Antigua and Barbuda
score 0.0
suf_score 3.0
rank 128.0
rank_suf 69.0
rank_change 0.0
total_points 1129.02
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1994, dtype: object
date 2021-06-08 00:00:00
team Suriname
score 0.0
suf_score 4.0
rank 136.0
rank_suf 70.0
rank_change 0.0
total_points 1089.43
result 0
rank_dif -66.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1995, dtype: object
date 2021-06-08 00:00:00
team Cayman Islands
score 1.0
suf_score 1.0
rank 194.0
rank_suf 168.0
rank_change 0.0
total_points 884.44
result 2
rank_dif -26.0
points_by_rank 0.005952
team_points 1
country_classification Classe D
Name: 1996, dtype: object
date 2021-06-08 00:00:00
team Guatemala
score 0.0
suf_score 0.0
rank 127.0
rank_suf 76.0
rank_change 0.0
total_points 1129.3
result 2
rank_dif -51.0
points_by_rank 0.013158
team_points 1
country_classification Classe C
Name: 1997, dtype: object
date 2021-06-08 00:00:00
team Dominica
score 1.0
suf_score 1.0
rank 188.0
rank_suf 162.0
rank_change 0.0
total_points 904.26
result 2
rank_dif -26.0
points_by_rank 0.006173
team_points 1
country_classification Classe D
Name: 1998, dtype: object
date 2021-06-08 00:00:00
team Dominican Republic
score 0.0
suf_score 3.0
rank 156.0
rank_suf 78.0
rank_change 0.0
total_points 1036.22
result 0
rank_dif -78.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 1999, dtype: object
date 2021-06-08 00:00:00
team Nicaragua
score 0.0
suf_score 1.0
rank 147.0
rank_suf 83.0
rank_change 0.0
total_points 1060.51
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2000, dtype: object
date 2021-06-08 00:00:00
team Puerto Rico
score 2.0
suf_score 0.0
rank 178.0
rank_suf 165.0
rank_change 0.0
total_points 938.86
result 1
rank_dif -13.0
points_by_rank 0.018182
team_points 3
country_classification Classe D
Name: 2001, dtype: object
date 2021-06-08 00:00:00
team Peru
score 2.0
suf_score 1.0
rank 27.0
rank_suf 53.0
rank_change 0.0
total_points 1511.88
result 1
rank_dif 26.0
points_by_rank 0.056604
team_points 3
country_classification Classe A
Name: 2002, dtype: object
date 2021-06-08 00:00:00
team Argentina
score 2.0
suf_score 2.0
rank 8.0
rank_suf 15.0
rank_change 0.0
total_points 1641.95
result 2
rank_dif 7.0
points_by_rank 0.066667
team_points 1
country_classification Classe S-
Name: 2003, dtype: object
date 2021-06-08 00:00:00
team Uruguay
score 0.0
suf_score 0.0
rank 9.0
rank_suf 30.0
rank_change 0.0
total_points 1639.08
result 2
rank_dif 21.0
points_by_rank 0.033333
team_points 1
country_classification Classe S-
Name: 2004, dtype: object
date 2021-06-08 00:00:00
team Brazil
score 2.0
suf_score 0.0
rank 3.0
rank_suf 35.0
rank_change 0.0
total_points 1742.65
result 1
rank_dif 32.0
points_by_rank 0.085714
team_points 3
country_classification Classe S
Name: 2005, dtype: object
date 2021-06-08 00:00:00
team Bolivia
score 1.0
suf_score 1.0
rank 81.0
rank_suf 19.0
rank_change 0.0
total_points 1300.11
result 2
rank_dif -62.0
points_by_rank 0.052632
team_points 1
country_classification Classe B
Name: 2006, dtype: object
date 2021-06-09 00:00:00
team Lebanon
score 2.0
suf_score 3.0
rank 93.0
rank_suf 130.0
rank_change 0.0
total_points 1256.08
result 0
rank_dif 37.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2007, dtype: object
date 2021-06-09 00:00:00
team Congo
score 1.0
suf_score 0.0
rank 94.0
rank_suf 112.0
rank_change 0.0
total_points 1255.88
result 1
rank_dif 18.0
points_by_rank 0.026786
team_points 3
country_classification Classe B
Name: 2008, dtype: object
date 2021-06-09 00:00:00
team Israel
score 0.0
suf_score 4.0
rank 85.0
rank_suf 5.0
rank_change 0.0
total_points 1283.36
result 0
rank_dif -80.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2009, dtype: object
date 2021-06-09 00:00:00
team Costa Rica
score 0.0
suf_score 4.0
rank 50.0
rank_suf 20.0
rank_change 0.0
total_points 1423.4
result 0
rank_dif -30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2010, dtype: object
date 2021-06-09 00:00:00
team Sri Lanka
score 0.0
suf_score 5.0
rank 204.0
rank_suf 39.0
rank_change 0.0
total_points 853.07
result 0
rank_dif -165.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2011, dtype: object
date 2021-06-10 00:00:00
team Latvia
score 1.0
suf_score 2.0
rank 138.0
rank_suf 116.0
rank_change 0.0
total_points 1081.66
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2012, dtype: object
date 2021-06-10 00:00:00
team Uganda
score 2.0
suf_score 3.0
rank 84.0
rank_suf 75.0
rank_change 0.0
total_points 1286.76
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2013, dtype: object
date 2021-06-11 00:00:00
team Guam
score 0.0
suf_score 3.0
rank 198.0
rank_suf 125.0
rank_change 0.0
total_points 872.83
result 0
rank_dif -73.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2014, dtype: object
date 2021-06-11 00:00:00
team Maldives
score 0.0
suf_score 5.0
rank 155.0
rank_suf 77.0
rank_change 0.0
total_points 1038.31
result 0
rank_dif -78.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2015, dtype: object
date 2021-06-11 00:00:00
team Australia
score 3.0
suf_score 0.0
rank 41.0
rank_suf 171.0
rank_change 0.0
total_points 1457.49
result 1
rank_dif 130.0
points_by_rank 0.017544
team_points 3
country_classification Classe A
Name: 2016, dtype: object
date 2021-06-11 00:00:00
team Jordan
score 0.0
suf_score 0.0
rank 95.0
rank_suf 148.0
rank_change 0.0
total_points 1251.63
result 2
rank_dif 53.0
points_by_rank 0.006757
team_points 1
country_classification Classe B
Name: 2017, dtype: object
date 2021-06-11 00:00:00
team Iran
score 10.0
suf_score 0.0
rank 31.0
rank_suf 174.0
rank_change 0.0
total_points 1499.52
result 1
rank_dif 143.0
points_by_rank 0.017241
team_points 3
country_classification Classe A
Name: 2018, dtype: object
date 2021-06-11 00:00:00
team Iraq
score 1.0
suf_score 0.0
rank 68.0
rank_suf 144.0
rank_change 0.0
total_points 1352.82
result 1
rank_dif 76.0
points_by_rank 0.020833
team_points 3
country_classification Classe B
Name: 2019, dtype: object
date 2021-06-11 00:00:00
team Uzbekistan
score 1.0
suf_score 0.0
rank 86.0
rank_suf 145.0
rank_change 0.0
total_points 1280.99
result 1
rank_dif 59.0
points_by_rank 0.02069
team_points 3
country_classification Classe B
Name: 2020, dtype: object
date 2021-06-11 00:00:00
team Oman
score 2.0
suf_score 1.0
rank 80.0
rank_suf 149.0
rank_change 0.0
total_points 1301.51
result 1
rank_dif 69.0
points_by_rank 0.020134
team_points 3
country_classification Classe B
Name: 2021, dtype: object
date 2021-06-11 00:00:00
team Vietnam
score 2.0
suf_score 1.0
rank 92.0
rank_suf 153.0
rank_change 0.0
total_points 1258.06
result 1
rank_dif 61.0
points_by_rank 0.019608
team_points 3
country_classification Classe B
Name: 2022, dtype: object
date 2021-06-11 00:00:00
team Serbia
score 0.0
suf_score 1.0
rank 25.0
rank_suf 28.0
rank_change 0.0
total_points 1512.9
result 0
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2023, dtype: object
date 2021-06-11 00:00:00
team Niger
score 1.0
suf_score 2.0
rank 112.0
rank_suf 72.0
rank_change 0.0
total_points 1165.91
result 0
rank_dif -40.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2024, dtype: object
date 2021-06-11 00:00:00
team Gambia
score 0.0
suf_score 1.0
rank 152.0
rank_suf 120.0
rank_change 0.0
total_points 1043.45
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2025, dtype: object
date 2021-06-11 00:00:00
team Liberia
score 0.0
suf_score 1.0
rank 151.0
rank_suf 101.0
rank_change 0.0
total_points 1047.29
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2026, dtype: object
date 2021-06-11 00:00:00
team Algeria
score 2.0
suf_score 0.0
rank 33.0
rank_suf 26.0
rank_change 0.0
total_points 1486.69
result 1
rank_dif -7.0
points_by_rank 0.115385
team_points 3
country_classification Classe A
Name: 2027, dtype: object
date 2021-06-11 00:00:00
team Turkey
score 0.0
suf_score 3.0
rank 29.0
rank_suf 7.0
rank_change 0.0
total_points 1505.05
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2028, dtype: object
date 2021-06-11 00:00:00
team Singapore
score 0.0
suf_score 3.0
rank 159.0
rank_suf 65.0
rank_change 0.0
total_points 1020.27
result 0
rank_dif -94.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2029, dtype: object
date 2021-06-11 00:00:00
team Indonesia
score 0.0
suf_score 5.0
rank 173.0
rank_suf 73.0
rank_change 0.0
total_points 964.07
result 0
rank_dif -100.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2030, dtype: object
date 2021-06-12 00:00:00
team Canada
score 1.0
suf_score 0.0
rank 70.0
rank_suf 83.0
rank_change 0.0
total_points 1340.56
result 1
rank_dif 13.0
points_by_rank 0.036145
team_points 3
country_classification Classe B
Name: 2031, dtype: object
date 2021-06-12 00:00:00
team Curaçao
score 1.0
suf_score 2.0
rank 76.0
rank_suf 78.0
rank_change 0.0
total_points 1323.06
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2032, dtype: object
date 2021-06-12 00:00:00
team Honduras
score 0.0
suf_score 0.0
rank 67.0
rank_suf 11.0
rank_change 0.0
total_points 1361.21
result 2
rank_dif -56.0
points_by_rank 0.090909
team_points 1
country_classification Classe B
Name: 2033, dtype: object
date 2021-06-12 00:00:00
team Burkina Faso
score 0.0
suf_score 1.0
rank 60.0
rank_suf 34.0
rank_change 0.0
total_points 1392.9
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2034, dtype: object
date 2021-06-12 00:00:00
team Switzerland
score 1.0
suf_score 1.0
rank 13.0
rank_suf 17.0
rank_change 0.0
total_points 1606.21
result 2
rank_dif 4.0
points_by_rank 0.058824
team_points 1
country_classification Classe S-
Name: 2035, dtype: object
date 2021-06-12 00:00:00
team Finland
score 1.0
suf_score 0.0
rank 54.0
rank_suf 10.0
rank_change 0.0
total_points 1410.82
result 1
rank_dif -44.0
points_by_rank 0.3
team_points 3
country_classification Classe A
Name: 2036, dtype: object
date 2021-06-12 00:00:00
team Belgium
score 3.0
suf_score 0.0
rank 1.0
rank_suf 38.0
rank_change 0.0
total_points 1783.38
result 1
rank_dif 37.0
points_by_rank 0.078947
team_points 3
country_classification Classe S
Name: 2037, dtype: object
date 2021-06-13 00:00:00
team Lebanon
score 1.0
suf_score 2.0
rank 93.0
rank_suf 39.0
rank_change 0.0
total_points 1256.08
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2038, dtype: object
date 2021-06-13 00:00:00
team Zambia
score 1.0
suf_score 0.0
rank 87.0
rank_suf 123.0
rank_change 0.0
total_points 1280.15
result 1
rank_dif 36.0
points_by_rank 0.02439
team_points 3
country_classification Classe B
Name: 2039, dtype: object
date 2021-06-13 00:00:00
team Malawi
score 0.0
suf_score 2.0
rank 115.0
rank_suf 137.0
rank_change 0.0
total_points 1162.39
result 0
rank_dif 22.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2040, dtype: object
date 2021-06-13 00:00:00
team North Macedonia
score 1.0
suf_score 3.0
rank 62.0
rank_suf 23.0
rank_change 0.0
total_points 1374.73
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2041, dtype: object
date 2021-06-13 00:00:00
team Ukraine
score 2.0
suf_score 3.0
rank 24.0
rank_suf 16.0
rank_change 0.0
total_points 1514.64
result 0
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2042, dtype: object
date 2021-06-13 00:00:00
team Croatia
score 0.0
suf_score 1.0
rank 14.0
rank_suf 4.0
rank_change 0.0
total_points 1605.75
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2043, dtype: object
date 2021-06-13 00:00:00
team Venezuela
score 0.0
suf_score 3.0
rank 30.0
rank_suf 3.0
rank_change 0.0
total_points 1500.71
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2044, dtype: object
date 2021-06-13 00:00:00
team Ecuador
score 0.0
suf_score 1.0
rank 53.0
rank_suf 15.0
rank_change 0.0
total_points 1413.01
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2045, dtype: object
date 2021-06-14 00:00:00
team Liberia
score 1.0
suf_score 0.0
rank 151.0
rank_suf 119.0
rank_change 0.0
total_points 1047.29
result 1
rank_dif -32.0
points_by_rank 0.02521
team_points 3
country_classification Classe C
Name: 2046, dtype: object
date 2021-06-14 00:00:00
team Czech Republic
score 2.0
suf_score 0.0
rank 40.0
rank_suf 44.0
rank_change 0.0
total_points 1458.81
result 1
rank_dif 4.0
points_by_rank 0.068182
team_points 3
country_classification Classe A
Name: 2047, dtype: object
date 2021-06-14 00:00:00
team Slovakia
score 2.0
suf_score 1.0
rank 36.0
rank_suf 21.0
rank_change 0.0
total_points 1475.24
result 1
rank_dif -15.0
points_by_rank 0.142857
team_points 3
country_classification Classe A
Name: 2048, dtype: object
date 2021-06-14 00:00:00
team Sweden
score 0.0
suf_score 0.0
rank 18.0
rank_suf 6.0
rank_change 0.0
total_points 1569.81
result 2
rank_dif -12.0
points_by_rank 0.166667
team_points 1
country_classification Classe A
Name: 2049, dtype: object
date 2021-06-14 00:00:00
team Chile
score 1.0
suf_score 1.0
rank 19.0
rank_suf 8.0
rank_change 0.0
total_points 1569.52
result 2
rank_dif -11.0
points_by_rank 0.125
team_points 1
country_classification Classe A
Name: 2050, dtype: object
date 2021-06-14 00:00:00
team Bolivia
score 1.0
suf_score 3.0
rank 81.0
rank_suf 35.0
rank_change 0.0
total_points 1300.11
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2051, dtype: object
date 2021-06-15 00:00:00
team Maldives
score 1.0
suf_score 1.0
rank 155.0
rank_suf 125.0
rank_change 0.0
total_points 1038.31
result 2
rank_dif -30.0
points_by_rank 0.008
team_points 1
country_classification Classe C
Name: 2052, dtype: object
date 2021-06-15 00:00:00
team Syria
score 1.0
suf_score 3.0
rank 79.0
rank_suf 77.0
rank_change 0.0
total_points 1304.12
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2053, dtype: object
date 2021-06-15 00:00:00
team Jordan
score 0.0
suf_score 1.0
rank 95.0
rank_suf 41.0
rank_change 0.0
total_points 1251.63
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2054, dtype: object
date 2021-06-15 00:00:00
team Hong Kong
score 0.0
suf_score 4.0
rank 144.0
rank_suf 98.0
rank_change 0.0
total_points 1072.0
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2055, dtype: object
date 2021-06-15 00:00:00
team Iraq
score 0.0
suf_score 1.0
rank 68.0
rank_suf 31.0
rank_change 0.0
total_points 1352.82
result 0
rank_dif -37.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2056, dtype: object
date 2021-06-15 00:00:00
team Yemen
score 0.0
suf_score 3.0
rank 145.0
rank_suf 104.0
rank_change 0.0
total_points 1070.54
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2057, dtype: object
date 2021-06-15 00:00:00
team Uzbekistan
score 0.0
suf_score 3.0
rank 86.0
rank_suf 65.0
rank_change 0.0
total_points 1280.99
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2058, dtype: object
date 2021-06-15 00:00:00
team Oman
score 3.0
suf_score 0.0
rank 80.0
rank_suf 184.0
rank_change 0.0
total_points 1301.51
result 1
rank_dif 104.0
points_by_rank 0.016304
team_points 3
country_classification Classe B
Name: 2059, dtype: object
date 2021-06-15 00:00:00
team Afghanistan
score 1.0
suf_score 1.0
rank 149.0
rank_suf 105.0
rank_change 0.0
total_points 1052.24
result 2
rank_dif -44.0
points_by_rank 0.009524
team_points 1
country_classification Classe C
Name: 2060, dtype: object
date 2021-06-15 00:00:00
team Myanmar
score 0.0
suf_score 4.0
rank 139.0
rank_suf 121.0
rank_change 0.0
total_points 1081.26
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2061, dtype: object
date 2021-06-15 00:00:00
team Malaysia
score 1.0
suf_score 0.0
rank 153.0
rank_suf 106.0
rank_change 0.0
total_points 1040.02
result 1
rank_dif -47.0
points_by_rank 0.028302
team_points 3
country_classification Classe C
Name: 2062, dtype: object
date 2021-06-15 00:00:00
team Vietnam
score 2.0
suf_score 3.0
rank 92.0
rank_suf 73.0
rank_change 0.0
total_points 1258.06
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2063, dtype: object
date 2021-06-15 00:00:00
team Haiti
score 0.0
suf_score 3.0
rank 83.0
rank_suf 70.0
rank_change 0.0
total_points 1290.62
result 0
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2064, dtype: object
date 2021-06-15 00:00:00
team Panama
score 0.0
suf_score 0.0
rank 78.0
rank_suf 76.0
rank_change 0.0
total_points 1321.97
result 2
rank_dif -2.0
points_by_rank 0.013158
team_points 1
country_classification Classe B
Name: 2065, dtype: object
date 2021-06-15 00:00:00
team Mali
score 0.0
suf_score 1.0
rank 57.0
rank_suf 26.0
rank_change 0.0
total_points 1400.94
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2066, dtype: object
date 2021-06-15 00:00:00
team Somalia
score 0.0
suf_score 1.0
rank 197.0
rank_suf 183.0
rank_change 0.0
total_points 879.13
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2067, dtype: object
date 2021-06-15 00:00:00
team Portugal
score 3.0
suf_score 0.0
rank 5.0
rank_suf 37.0
rank_change 0.0
total_points 1666.12
result 1
rank_dif 32.0
points_by_rank 0.081081
team_points 3
country_classification Classe S-
Name: 2068, dtype: object
date 2021-06-15 00:00:00
team France
score 1.0
suf_score 0.0
rank 2.0
rank_suf 12.0
rank_change 0.0
total_points 1757.3
result 1
rank_dif 10.0
points_by_rank 0.25
team_points 3
country_classification Classe S
Name: 2069, dtype: object
date 2021-06-16 00:00:00
team Wales
score 2.0
suf_score 0.0
rank 17.0
rank_suf 29.0
rank_change 0.0
total_points 1570.36
result 1
rank_dif 12.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 2070, dtype: object
date 2021-06-16 00:00:00
team Switzerland
score 0.0
suf_score 3.0
rank 13.0
rank_suf 7.0
rank_change 0.0
total_points 1606.21
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2071, dtype: object
date 2021-06-16 00:00:00
team Finland
score 0.0
suf_score 1.0
rank 54.0
rank_suf 38.0
rank_change 0.0
total_points 1410.82
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2072, dtype: object
date 2021-06-17 00:00:00
team Belgium
score 2.0
suf_score 1.0
rank 1.0
rank_suf 10.0
rank_change 0.0
total_points 1783.38
result 1
rank_dif 9.0
points_by_rank 0.3
team_points 3
country_classification Classe S
Name: 2073, dtype: object
date 2021-06-17 00:00:00
team North Macedonia
score 1.0
suf_score 2.0
rank 62.0
rank_suf 24.0
rank_change 0.0
total_points 1374.73
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2074, dtype: object
date 2021-06-17 00:00:00
team Austria
score 0.0
suf_score 2.0
rank 23.0
rank_suf 16.0
rank_change 0.0
total_points 1523.42
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2075, dtype: object
date 2021-06-17 00:00:00
team Venezuela
score 0.0
suf_score 0.0
rank 30.0
rank_suf 15.0
rank_change 0.0
total_points 1500.71
result 2
rank_dif -15.0
points_by_rank 0.066667
team_points 1
country_classification Classe A
Name: 2076, dtype: object
date 2021-06-17 00:00:00
team Peru
score 0.0
suf_score 4.0
rank 27.0
rank_suf 3.0
rank_change 0.0
total_points 1511.88
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2077, dtype: object
date 2021-06-17 00:00:00
team Liberia
score 1.0
suf_score 5.0
rank 151.0
rank_suf 33.0
rank_change 0.0
total_points 1047.29
result 0
rank_dif -118.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2078, dtype: object
date 2021-06-18 00:00:00
team Czech Republic
score 1.0
suf_score 1.0
rank 40.0
rank_suf 14.0
rank_change 0.0
total_points 1458.81
result 2
rank_dif -26.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 2079, dtype: object
date 2021-06-18 00:00:00
team Scotland
score 0.0
suf_score 0.0
rank 44.0
rank_suf 4.0
rank_change 0.0
total_points 1441.43
result 2
rank_dif -40.0
points_by_rank 0.25
team_points 1
country_classification Classe A
Name: 2080, dtype: object
date 2021-06-18 00:00:00
team Slovakia
score 0.0
suf_score 1.0
rank 36.0
rank_suf 18.0
rank_change 0.0
total_points 1475.24
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2081, dtype: object
date 2021-06-18 00:00:00
team Bolivia
score 0.0
suf_score 1.0
rank 81.0
rank_suf 19.0
rank_change 0.0
total_points 1300.11
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2082, dtype: object
date 2021-06-18 00:00:00
team Uruguay
score 0.0
suf_score 1.0
rank 9.0
rank_suf 8.0
rank_change 0.0
total_points 1639.08
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2083, dtype: object
date 2021-06-19 00:00:00
team Poland
score 1.0
suf_score 1.0
rank 21.0
rank_suf 6.0
rank_change 0.0
total_points 1549.87
result 2
rank_dif -15.0
points_by_rank 0.166667
team_points 1
country_classification Classe A
Name: 2084, dtype: object
date 2021-06-19 00:00:00
team France
score 1.0
suf_score 1.0
rank 2.0
rank_suf 37.0
rank_change 0.0
total_points 1757.3
result 2
rank_dif 35.0
points_by_rank 0.027027
team_points 1
country_classification Classe S
Name: 2085, dtype: object
date 2021-06-19 00:00:00
team Portugal
score 2.0
suf_score 4.0
rank 5.0
rank_suf 12.0
rank_change 0.0
total_points 1666.12
result 0
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2086, dtype: object
date 2021-06-19 00:00:00
team Sudan
score 1.0
suf_score 0.0
rank 123.0
rank_suf 119.0
rank_change 0.0
total_points 1149.14
result 1
rank_dif -4.0
points_by_rank 0.02521
team_points 3
country_classification Classe C
Name: 2087, dtype: object
date 2021-06-20 00:00:00
team Wales
score 0.0
suf_score 1.0
rank 17.0
rank_suf 7.0
rank_change 0.0
total_points 1570.36
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2088, dtype: object
date 2021-06-20 00:00:00
team Turkey
score 1.0
suf_score 3.0
rank 29.0
rank_suf 13.0
rank_change 0.0
total_points 1505.05
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2089, dtype: object
date 2021-06-20 00:00:00
team Ecuador
score 2.0
suf_score 2.0
rank 53.0
rank_suf 30.0
rank_change 0.0
total_points 1413.01
result 2
rank_dif -23.0
points_by_rank 0.033333
team_points 1
country_classification Classe A
Name: 2090, dtype: object
date 2021-06-20 00:00:00
team Peru
score 2.0
suf_score 1.0
rank 27.0
rank_suf 15.0
rank_change 0.0
total_points 1511.88
result 1
rank_dif -12.0
points_by_rank 0.2
team_points 3
country_classification Classe A
Name: 2091, dtype: object
date 2021-06-20 00:00:00
team Somalia
score 1.0
suf_score 2.0
rank 197.0
rank_suf 80.0
rank_change 0.0
total_points 879.13
result 0
rank_dif -117.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2092, dtype: object
date 2021-06-21 00:00:00
team Russia
score 1.0
suf_score 4.0
rank 38.0
rank_suf 10.0
rank_change 0.0
total_points 1462.65
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2093, dtype: object
date 2021-06-21 00:00:00
team Belgium
score 2.0
suf_score 0.0
rank 1.0
rank_suf 54.0
rank_change 0.0
total_points 1783.38
result 1
rank_dif 53.0
points_by_rank 0.055556
team_points 3
country_classification Classe S
Name: 2094, dtype: object
date 2021-06-21 00:00:00
team North Macedonia
score 0.0
suf_score 3.0
rank 62.0
rank_suf 16.0
rank_change 0.0
total_points 1374.73
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2095, dtype: object
date 2021-06-21 00:00:00
team Austria
score 1.0
suf_score 0.0
rank 23.0
rank_suf 24.0
rank_change 0.0
total_points 1523.42
result 1
rank_dif 1.0
points_by_rank 0.125
team_points 3
country_classification Classe A
Name: 2096, dtype: object
date 2021-06-21 00:00:00
team Chile
score 1.0
suf_score 1.0
rank 19.0
rank_suf 9.0
rank_change 0.0
total_points 1569.52
result 2
rank_dif -10.0
points_by_rank 0.111111
team_points 1
country_classification Classe A
Name: 2097, dtype: object
date 2021-06-21 00:00:00
team Paraguay
score 0.0
suf_score 1.0
rank 35.0
rank_suf 8.0
rank_change 0.0
total_points 1476.02
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2098, dtype: object
date 2021-06-22 00:00:00
team Croatia
score 3.0
suf_score 1.0
rank 14.0
rank_suf 44.0
rank_change 0.0
total_points 1605.75
result 1
rank_dif 30.0
points_by_rank 0.068182
team_points 3
country_classification Classe S-
Name: 2099, dtype: object
date 2021-06-22 00:00:00
team Czech Republic
score 0.0
suf_score 1.0
rank 40.0
rank_suf 4.0
rank_change 0.0
total_points 1458.81
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2100, dtype: object
date 2021-06-22 00:00:00
team Yemen
score 0.0
suf_score 2.0
rank 145.0
rank_suf 101.0
rank_change 0.0
total_points 1070.54
result 0
rank_dif -44.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2101, dtype: object
date 2021-06-23 00:00:00
team Slovakia
score 0.0
suf_score 5.0
rank 36.0
rank_suf 6.0
rank_change 0.0
total_points 1475.24
result 0
rank_dif -30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2102, dtype: object
date 2021-06-23 00:00:00
team Poland
score 2.0
suf_score 3.0
rank 21.0
rank_suf 18.0
rank_change 0.0
total_points 1549.87
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2103, dtype: object
date 2021-06-23 00:00:00
team Hungary
score 2.0
suf_score 2.0
rank 37.0
rank_suf 12.0
rank_change 0.0
total_points 1468.75
result 2
rank_dif -25.0
points_by_rank 0.083333
team_points 1
country_classification Classe A
Name: 2104, dtype: object
date 2021-06-23 00:00:00
team France
score 2.0
suf_score 2.0
rank 2.0
rank_suf 5.0
rank_change 0.0
total_points 1757.3
result 2
rank_dif 3.0
points_by_rank 0.2
team_points 1
country_classification Classe S
Name: 2105, dtype: object
date 2021-06-23 00:00:00
team Peru
score 2.0
suf_score 2.0
rank 27.0
rank_suf 53.0
rank_change 0.0
total_points 1511.88
result 2
rank_dif 26.0
points_by_rank 0.018868
team_points 1
country_classification Classe A
Name: 2106, dtype: object
date 2021-06-23 00:00:00
team Colombia
score 1.0
suf_score 2.0
rank 15.0
rank_suf 3.0
rank_change 0.0
total_points 1600.66
result 0
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2107, dtype: object
date 2021-06-23 00:00:00
team Djibouti
score 0.0
suf_score 1.0
rank 183.0
rank_suf 93.0
rank_change 0.0
total_points 918.91
result 0
rank_dif -90.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2108, dtype: object
date 2021-06-24 00:00:00
team Uruguay
score 2.0
suf_score 0.0
rank 9.0
rank_suf 81.0
rank_change 0.0
total_points 1639.08
result 1
rank_dif 72.0
points_by_rank 0.037037
team_points 3
country_classification Classe S-
Name: 2109, dtype: object
date 2021-06-24 00:00:00
team Paraguay
score 2.0
suf_score 0.0
rank 35.0
rank_suf 19.0
rank_change 0.0
total_points 1476.02
result 1
rank_dif -16.0
points_by_rank 0.157895
team_points 3
country_classification Classe A
Name: 2110, dtype: object
date 2021-06-24 00:00:00
team Comoros
score 1.0
suf_score 5.0
rank 131.0
rank_suf 104.0
rank_change 0.0
total_points 1106.44
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2111, dtype: object
date 2021-06-25 00:00:00
team Kuwait
score 0.0
suf_score 2.0
rank 148.0
rank_suf 98.0
rank_change 0.0
total_points 1056.3
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2112, dtype: object
date 2021-06-26 00:00:00
team Austria
score 1.0
suf_score 2.0
rank 23.0
rank_suf 7.0
rank_change 0.0
total_points 1523.42
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2113, dtype: object
date 2021-06-26 00:00:00
team Denmark
score 4.0
suf_score 0.0
rank 10.0
rank_suf 17.0
rank_change 0.0
total_points 1631.55
result 1
rank_dif 7.0
points_by_rank 0.176471
team_points 3
country_classification Classe S-
Name: 2114, dtype: object
date 2021-06-27 00:00:00
team Czech Republic
score 2.0
suf_score 0.0
rank 40.0
rank_suf 16.0
rank_change 0.0
total_points 1458.81
result 1
rank_dif -24.0
points_by_rank 0.1875
team_points 3
country_classification Classe A
Name: 2115, dtype: object
date 2021-06-27 00:00:00
team Portugal
score 0.0
suf_score 1.0
rank 5.0
rank_suf 1.0
rank_change 0.0
total_points 1666.12
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2116, dtype: object
date 2021-06-27 00:00:00
team Ecuador
score 1.0
suf_score 1.0
rank 53.0
rank_suf 3.0
rank_change 0.0
total_points 1413.01
result 2
rank_dif -50.0
points_by_rank 0.333333
team_points 1
country_classification Classe A
Name: 2117, dtype: object
date 2021-06-27 00:00:00
team Peru
score 1.0
suf_score 0.0
rank 27.0
rank_suf 30.0
rank_change 0.0
total_points 1511.88
result 1
rank_dif 3.0
points_by_rank 0.1
team_points 3
country_classification Classe A
Name: 2118, dtype: object
date 2021-06-27 00:00:00
team Guatemala
score 0.0
suf_score 0.0
rank 127.0
rank_suf 69.0
rank_change 0.0
total_points 1129.3
result 2
rank_dif -58.0
points_by_rank 0.014493
team_points 1
country_classification Classe C
Name: 2119, dtype: object
date 2021-06-28 00:00:00
team Spain
score 5.0
suf_score 3.0
rank 6.0
rank_suf 14.0
rank_change 0.0
total_points 1648.13
result 1
rank_dif 8.0
points_by_rank 0.214286
team_points 3
country_classification Classe S-
Name: 2120, dtype: object
date 2021-06-28 00:00:00
team Switzerland
score 3.0
suf_score 3.0
rank 13.0
rank_suf 2.0
rank_change 0.0
total_points 1606.21
result 2
rank_dif -11.0
points_by_rank 0.5
team_points 1
country_classification Classe S-
Name: 2121, dtype: object
date 2021-06-28 00:00:00
team Bolivia
score 1.0
suf_score 4.0
rank 81.0
rank_suf 8.0
rank_change 0.0
total_points 1300.11
result 0
rank_dif -73.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2122, dtype: object
date 2021-06-28 00:00:00
team Paraguay
score 0.0
suf_score 1.0
rank 35.0
rank_suf 9.0
rank_change 0.0
total_points 1476.02
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2123, dtype: object
date 2021-06-29 00:00:00
team Germany
score 0.0
suf_score 2.0
rank 12.0
rank_suf 4.0
rank_change 0.0
total_points 1609.12
result 0
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2124, dtype: object
date 2021-06-29 00:00:00
team Ukraine
score 2.0
suf_score 1.0
rank 24.0
rank_suf 18.0
rank_change 0.0
total_points 1514.64
result 1
rank_dif -6.0
points_by_rank 0.166667
team_points 3
country_classification Classe A
Name: 2125, dtype: object
date 2021-06-30 00:00:00
team Panama
score 0.0
suf_score 3.0
rank 78.0
rank_suf 11.0
rank_change 0.0
total_points 1321.97
result 0
rank_dif -67.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2126, dtype: object
date 2021-07-02 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 6.0
rank_suf 13.0
rank_change 0.0
total_points 1648.13
result 2
rank_dif 7.0
points_by_rank 0.076923
team_points 1
country_classification Classe S-
Name: 2127, dtype: object
date 2021-07-02 00:00:00
team Italy
score 2.0
suf_score 1.0
rank 7.0
rank_suf 1.0
rank_change 0.0
total_points 1642.06
result 1
rank_dif -6.0
points_by_rank 3.0
team_points 3
country_classification Classe S-
Name: 2128, dtype: object
date 2021-07-02 00:00:00
team Paraguay
score 3.0
suf_score 3.0
rank 35.0
rank_suf 27.0
rank_change 0.0
total_points 1476.02
result 2
rank_dif -8.0
points_by_rank 0.037037
team_points 1
country_classification Classe A
Name: 2129, dtype: object
date 2021-07-02 00:00:00
team Chile
score 0.0
suf_score 1.0
rank 19.0
rank_suf 3.0
rank_change 0.0
total_points 1569.52
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2130, dtype: object
date 2021-07-02 00:00:00
team Montserrat
score 1.0
suf_score 6.0
rank 180.0
rank_suf 103.0
rank_change 0.0
total_points 933.64
result 0
rank_dif -77.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2131, dtype: object
date 2021-07-02 00:00:00
team Barbados
score 1.0
suf_score 8.0
rank 162.0
rank_suf 168.0
rank_change 0.0
total_points 1010.95
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2132, dtype: object
date 2021-07-03 00:00:00
team Denmark
score 2.0
suf_score 1.0
rank 10.0
rank_suf 40.0
rank_change 0.0
total_points 1631.55
result 1
rank_dif 30.0
points_by_rank 0.075
team_points 3
country_classification Classe S-
Name: 2133, dtype: object
date 2021-07-03 00:00:00
team England
score 4.0
suf_score 0.0
rank 4.0
rank_suf 24.0
rank_change 0.0
total_points 1686.78
result 1
rank_dif 20.0
points_by_rank 0.125
team_points 3
country_classification Classe S-
Name: 2134, dtype: object
date 2021-07-03 00:00:00
team Nigeria
score 0.0
suf_score 4.0
rank 32.0
rank_suf 11.0
rank_change 0.0
total_points 1487.16
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2135, dtype: object
date 2021-07-03 00:00:00
team Colombia
score 0.0
suf_score 0.0
rank 15.0
rank_suf 9.0
rank_change 0.0
total_points 1600.66
result 2
rank_dif -6.0
points_by_rank 0.111111
team_points 1
country_classification Classe S-
Name: 2136, dtype: object
date 2021-07-03 00:00:00
team Ecuador
score 0.0
suf_score 3.0
rank 53.0
rank_suf 8.0
rank_change 0.0
total_points 1413.01
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2137, dtype: object
date 2021-07-03 00:00:00
team Guyana
score 0.0
suf_score 4.0
rank 165.0
rank_suf 127.0
rank_change 0.0
total_points 990.65
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2138, dtype: object
date 2021-07-04 00:00:00
team El Salvador
score 0.0
suf_score 1.0
rank 69.0
rank_suf 58.0
rank_change 0.0
total_points 1341.24
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2139, dtype: object
date 2021-07-05 00:00:00
team Peru
score 0.0
suf_score 1.0
rank 27.0
rank_suf 3.0
rank_change 0.0
total_points 1511.88
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2140, dtype: object
date 2021-07-06 00:00:00
team Colombia
score 1.0
suf_score 1.0
rank 15.0
rank_suf 8.0
rank_change 0.0
total_points 1600.66
result 2
rank_dif -7.0
points_by_rank 0.125
team_points 1
country_classification Classe S-
Name: 2141, dtype: object
date 2021-07-06 00:00:00
team Spain
score 1.0
suf_score 1.0
rank 6.0
rank_suf 7.0
rank_change 0.0
total_points 1648.13
result 2
rank_dif 1.0
points_by_rank 0.142857
team_points 1
country_classification Classe S-
Name: 2142, dtype: object
date 2021-07-06 00:00:00
team Bermuda
score 1.0
suf_score 4.0
rank 168.0
rank_suf 83.0
rank_change 0.0
total_points 987.78
result 0
rank_dif -85.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2143, dtype: object
date 2021-07-06 00:00:00
team Lesotho
score 1.0
suf_score 3.0
rank 146.0
rank_suf 154.0
rank_change 0.0
total_points 1069.91
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2144, dtype: object
date 2021-07-06 00:00:00
team Botswana
score 0.0
suf_score 1.0
rank 150.0
rank_suf 75.0
rank_change 0.0
total_points 1051.82
result 0
rank_dif -75.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2145, dtype: object
date 2021-07-07 00:00:00
team Denmark
score 1.0
suf_score 2.0
rank 10.0
rank_suf 4.0
rank_change 0.0
total_points 1631.55
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2146, dtype: object
date 2021-07-07 00:00:00
team Zimbabwe
score 0.0
suf_score 0.0
rank 107.0
rank_suf 117.0
rank_change 0.0
total_points 1175.5
result 2
rank_dif 10.0
points_by_rank 0.008547
team_points 1
country_classification Classe C
Name: 2147, dtype: object
date 2021-07-07 00:00:00
team Namibia
score 2.0
suf_score 1.0
rank 111.0
rank_suf 22.0
rank_change 0.0
total_points 1168.44
result 1
rank_dif -89.0
points_by_rank 0.136364
team_points 3
country_classification Classe C
Name: 2148, dtype: object
date 2021-07-08 00:00:00
team Lesotho
score 2.0
suf_score 1.0
rank 146.0
rank_suf 87.0
rank_change 0.0
total_points 1069.91
result 1
rank_dif -59.0
points_by_rank 0.034483
team_points 3
country_classification Classe C
Name: 2149, dtype: object
date 2021-07-08 00:00:00
team Eswatini
score 0.0
suf_score 1.0
rank 154.0
rank_suf 75.0
rank_change 0.0
total_points 1039.24
result 0
rank_dif -79.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2150, dtype: object
date 2021-07-09 00:00:00
team Colombia
score 3.0
suf_score 2.0
rank 15.0
rank_suf 27.0
rank_change 0.0
total_points 1600.66
result 1
rank_dif 12.0
points_by_rank 0.111111
team_points 3
country_classification Classe S-
Name: 2151, dtype: object
date 2021-07-09 00:00:00
team Zimbabwe
score 2.0
suf_score 2.0
rank 107.0
rank_suf 115.0
rank_change 0.0
total_points 1175.5
result 2
rank_dif 8.0
points_by_rank 0.008696
team_points 1
country_classification Classe C
Name: 2152, dtype: object
date 2021-07-09 00:00:00
team Mozambique
score 0.0
suf_score 1.0
rank 117.0
rank_suf 22.0
rank_change 0.0
total_points 1161.55
result 0
rank_dif -95.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2153, dtype: object
date 2021-07-10 00:00:00
team Argentina
score 1.0
suf_score 0.0
rank 8.0
rank_suf 3.0
rank_change 0.0
total_points 1641.95
result 1
rank_dif -5.0
points_by_rank 1.0
team_points 3
country_classification Classe S-
Name: 2154, dtype: object
date 2021-07-10 00:00:00
team Botswana
score 4.0
suf_score 0.0
rank 150.0
rank_suf 146.0
rank_change 0.0
total_points 1051.82
result 1
rank_dif -4.0
points_by_rank 0.020548
team_points 3
country_classification Classe C
Name: 2155, dtype: object
date 2021-07-10 00:00:00
team Eswatini
score 1.0
suf_score 0.0
rank 154.0
rank_suf 87.0
rank_change 0.0
total_points 1039.24
result 1
rank_dif -67.0
points_by_rank 0.034483
team_points 3
country_classification Classe C
Name: 2156, dtype: object
date 2021-07-10 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 0.0
rank 103.0
rank_suf 11.0
rank_change 0.0
total_points 1201.33
result 2
rank_dif -92.0
points_by_rank 0.090909
team_points 1
country_classification Classe B
Name: 2157, dtype: object
date 2021-07-11 00:00:00
team Italy
score 1.0
suf_score 1.0
rank 7.0
rank_suf 4.0
rank_change 0.0
total_points 1642.06
result 2
rank_dif -3.0
points_by_rank 0.25
team_points 1
country_classification Classe S-
Name: 2158, dtype: object
date 2021-07-11 00:00:00
team Zimbabwe
score 0.0
suf_score 2.0
rank 107.0
rank_suf 111.0
rank_change 0.0
total_points 1175.5
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2159, dtype: object
date 2021-07-11 00:00:00
team Malawi
score 0.0
suf_score 2.0
rank 115.0
rank_suf 117.0
rank_change 0.0
total_points 1162.39
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2160, dtype: object
date 2021-07-11 00:00:00
team Guatemala
score 0.0
suf_score 2.0
rank 127.0
rank_suf 69.0
rank_change 0.0
total_points 1129.3
result 0
rank_dif -58.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2161, dtype: object
date 2021-07-11 00:00:00
team Haiti
score 0.0
suf_score 1.0
rank 83.0
rank_suf 20.0
rank_change 0.0
total_points 1290.62
result 0
rank_dif -63.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2162, dtype: object
date 2021-07-12 00:00:00
team Suriname
score 0.0
suf_score 2.0
rank 136.0
rank_suf 45.0
rank_change 0.0
total_points 1089.43
result 0
rank_dif -91.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2163, dtype: object
date 2021-07-13 00:00:00
team Zambia
score 2.0
suf_score 1.0
rank 87.0
rank_suf 150.0
rank_change 0.0
total_points 1280.15
result 1
rank_dif 63.0
points_by_rank 0.02
team_points 3
country_classification Classe B
Name: 2164, dtype: object
date 2021-07-13 00:00:00
team Lesotho
score 0.0
suf_score 4.0
rank 146.0
rank_suf 75.0
rank_change 0.0
total_points 1069.91
result 0
rank_dif -71.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2165, dtype: object
date 2021-07-13 00:00:00
team Zimbabwe
score 1.0
suf_score 2.0
rank 107.0
rank_suf 22.0
rank_change 0.0
total_points 1175.5
result 0
rank_dif -85.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2166, dtype: object
date 2021-07-13 00:00:00
team Namibia
score 1.0
suf_score 1.0
rank 111.0
rank_suf 115.0
rank_change 0.0
total_points 1168.44
result 2
rank_dif 4.0
points_by_rank 0.008696
team_points 1
country_classification Classe C
Name: 2167, dtype: object
date 2021-07-13 00:00:00
team Panama
score 3.0
suf_score 3.0
rank 78.0
rank_suf 58.0
rank_change 0.0
total_points 1321.97
result 2
rank_dif -20.0
points_by_rank 0.017241
team_points 1
country_classification Classe B
Name: 2168, dtype: object
date 2021-07-13 00:00:00
team Grenada
score 0.0
suf_score 4.0
rank 160.0
rank_suf 67.0
rank_change 0.0
total_points 1017.57
result 0
rank_dif -93.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2169, dtype: object
date 2021-07-14 00:00:00
team Zambia
score 0.0
suf_score 0.0
rank 87.0
rank_suf 75.0
rank_change 0.0
total_points 1280.15
result 2
rank_dif -12.0
points_by_rank 0.013333
team_points 1
country_classification Classe B
Name: 2170, dtype: object
date 2021-07-14 00:00:00
team Botswana
score 1.0
suf_score 1.0
rank 150.0
rank_suf 154.0
rank_change 0.0
total_points 1051.82
result 2
rank_dif 4.0
points_by_rank 0.006494
team_points 1
country_classification Classe C
Name: 2171, dtype: object
date 2021-07-14 00:00:00
team Namibia
score 0.0
suf_score 1.0
rank 111.0
rank_suf 117.0
rank_change 0.0
total_points 1168.44
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2172, dtype: object
date 2021-07-14 00:00:00
team Malawi
score 1.0
suf_score 2.0
rank 115.0
rank_suf 22.0
rank_change 0.0
total_points 1162.39
result 0
rank_dif -93.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2173, dtype: object
date 2021-07-14 00:00:00
team El Salvador
score 2.0
suf_score 0.0
rank 69.0
rank_suf 103.0
rank_change 0.0
total_points 1341.24
result 1
rank_dif 34.0
points_by_rank 0.029126
team_points 3
country_classification Classe B
Name: 2174, dtype: object
date 2021-07-14 00:00:00
team Mexico
score 3.0
suf_score 0.0
rank 11.0
rank_suf 127.0
rank_change 0.0
total_points 1629.56
result 1
rank_dif 116.0
points_by_rank 0.023622
team_points 3
country_classification Classe S-
Name: 2175, dtype: object
date 2021-07-15 00:00:00
team Canada
score 4.0
suf_score 1.0
rank 70.0
rank_suf 83.0
rank_change 0.0
total_points 1340.56
result 1
rank_dif 13.0
points_by_rank 0.036145
team_points 3
country_classification Classe B
Name: 2176, dtype: object
date 2021-07-16 00:00:00
team Eswatini
score 2.0
suf_score 2.0
rank 154.0
rank_suf 22.0
rank_change 0.0
total_points 1039.24
result 2
rank_dif -132.0
points_by_rank 0.045455
team_points 1
country_classification Classe C
Name: 2177, dtype: object
date 2021-07-16 00:00:00
team Mozambique
score 0.0
suf_score 3.0
rank 117.0
rank_suf 75.0
rank_change 0.0
total_points 1161.55
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2178, dtype: object
date 2021-07-16 00:00:00
team Costa Rica
score 2.0
suf_score 1.0
rank 50.0
rank_suf 136.0
rank_change 0.0
total_points 1423.4
result 1
rank_dif 86.0
points_by_rank 0.022059
team_points 3
country_classification Classe A
Name: 2179, dtype: object
date 2021-07-17 00:00:00
team Qatar
score 4.0
suf_score 0.0
rank 58.0
rank_suf 160.0
rank_change 0.0
total_points 1397.92
result 1
rank_dif 102.0
points_by_rank 0.01875
team_points 3
country_classification Classe B
Name: 2180, dtype: object
date 2021-07-17 00:00:00
team Honduras
score 3.0
suf_score 2.0
rank 67.0
rank_suf 78.0
rank_change 0.0
total_points 1361.21
result 1
rank_dif 11.0
points_by_rank 0.038462
team_points 3
country_classification Classe B
Name: 2181, dtype: object
date 2021-07-18 00:00:00
team Mozambique
score 1.0
suf_score 1.0
rank 117.0
rank_suf 154.0
rank_change 0.0
total_points 1161.55
result 2
rank_dif 37.0
points_by_rank 0.006494
team_points 1
country_classification Classe C
Name: 2182, dtype: object
date 2021-07-18 00:00:00
team Senegal
score 0.0
suf_score 0.0
rank 22.0
rank_suf 75.0
rank_change 0.0
total_points 1542.45
result 2
rank_dif 53.0
points_by_rank 0.013333
team_points 1
country_classification Classe A
Name: 2183, dtype: object
date 2021-07-18 00:00:00
team Trinidad and Tobago
score 1.0
suf_score 1.0
rank 103.0
rank_suf 127.0
rank_change 0.0
total_points 1201.33
result 2
rank_dif 24.0
points_by_rank 0.007874
team_points 1
country_classification Classe B
Name: 2184, dtype: object
date 2021-07-18 00:00:00
team El Salvador
score 0.0
suf_score 1.0
rank 69.0
rank_suf 11.0
rank_change 0.0
total_points 1341.24
result 0
rank_dif -58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2185, dtype: object
date 2021-07-18 00:00:00
team Canada
score 0.0
suf_score 1.0
rank 70.0
rank_suf 20.0
rank_change 0.0
total_points 1340.56
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2186, dtype: object
date 2021-07-20 00:00:00
team Jamaica
score 0.0
suf_score 1.0
rank 45.0
rank_suf 50.0
rank_change 0.0
total_points 1432.65
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2187, dtype: object
date 2021-07-20 00:00:00
team Grenada
score 1.0
suf_score 3.0
rank 160.0
rank_suf 78.0
rank_change 0.0
total_points 1017.57
result 0
rank_dif -82.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2188, dtype: object
date 2021-07-20 00:00:00
team Qatar
score 2.0
suf_score 0.0
rank 58.0
rank_suf 67.0
rank_change 0.0
total_points 1397.92
result 1
rank_dif 9.0
points_by_rank 0.044776
team_points 3
country_classification Classe B
Name: 2189, dtype: object
date 2021-07-24 00:00:00
team Honduras
score 0.0
suf_score 3.0
rank 67.0
rank_suf 11.0
rank_change 0.0
total_points 1361.21
result 0
rank_dif -56.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2190, dtype: object
date 2021-07-24 00:00:00
team El Salvador
score 2.0
suf_score 3.0
rank 69.0
rank_suf 58.0
rank_change 0.0
total_points 1341.24
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2191, dtype: object
date 2021-07-25 00:00:00
team Canada
score 2.0
suf_score 0.0
rank 70.0
rank_suf 50.0
rank_change 0.0
total_points 1340.56
result 1
rank_dif -20.0
points_by_rank 0.06
team_points 3
country_classification Classe B
Name: 2192, dtype: object
date 2021-07-25 00:00:00
team Jamaica
score 0.0
suf_score 1.0
rank 45.0
rank_suf 20.0
rank_change 0.0
total_points 1432.65
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2193, dtype: object
date 2021-07-29 00:00:00
team Canada
score 1.0
suf_score 2.0
rank 70.0
rank_suf 11.0
rank_change 0.0
total_points 1340.56
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2194, dtype: object
date 2021-07-29 00:00:00
team Qatar
score 0.0
suf_score 1.0
rank 58.0
rank_suf 20.0
rank_change 0.0
total_points 1397.92
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2195, dtype: object
date 2021-08-01 00:00:00
team Mexico
score 0.0
suf_score 1.0
rank 11.0
rank_suf 20.0
rank_change 0.0
total_points 1629.56
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2196, dtype: object
date 2021-08-21 00:00:00
team Costa Rica
score 0.0
suf_score 0.0
rank 44.0
rank_suf 64.0
rank_change -6.0
total_points 1449.79
result 2
rank_dif 20.0
points_by_rank 0.015625
team_points 1
country_classification Classe A
Name: 2197, dtype: object
date 2021-08-22 00:00:00
team Sudan
score 1.0
suf_score 2.0
rank 121.0
rank_suf 117.0
rank_change -2.0
total_points 1147.87
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2198, dtype: object
date 2021-08-26 00:00:00
team Niger
score 0.0
suf_score 3.0
rank 117.0
rank_suf 121.0
rank_change 5.0
total_points 1156.3
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2199, dtype: object
date 2021-08-26 00:00:00
team Sierra Leone
score 0.0
suf_score 0.0
rank 106.0
rank_suf 137.0
rank_change -8.0
total_points 1178.17
result 2
rank_dif 31.0
points_by_rank 0.007299
team_points 1
country_classification Classe C
Name: 2200, dtype: object
date 2021-08-29 00:00:00
team Uganda
score 1.0
suf_score 2.0
rank 84.0
rank_suf 137.0
rank_change 0.0
total_points 1282.14
result 0
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2201, dtype: object
date 2021-09-01 00:00:00
team Haiti
score 1.0
suf_score 6.0
rank 90.0
rank_suf 94.0
rank_change 7.0
total_points 1268.38
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2202, dtype: object
date 2021-09-01 00:00:00
team Seychelles
score 1.0
suf_score 7.0
rank 199.0
rank_suf 133.0
rank_change -1.0
total_points 865.69
result 0
rank_dif -66.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2203, dtype: object
date 2021-09-01 00:00:00
team Wales
score 0.0
suf_score 0.0
rank 19.0
rank_suf 56.0
rank_change 2.0
total_points 1567.29
result 2
rank_dif 37.0
points_by_rank 0.017857
team_points 1
country_classification Classe A
Name: 2204, dtype: object
date 2021-09-01 00:00:00
team Serbia
score 4.0
suf_score 0.0
rank 29.0
rank_suf 42.0
rank_change 4.0
total_points 1507.19
result 1
rank_dif 13.0
points_by_rank 0.071429
team_points 3
country_classification Classe A
Name: 2205, dtype: object
date 2021-09-01 00:00:00
team Greece
score 1.0
suf_score 2.0
rank 48.0
rank_suf 14.0
rank_change -3.0
total_points 1427.04
result 0
rank_dif -34.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2206, dtype: object
date 2021-09-01 00:00:00
team Rwanda
score 0.0
suf_score 1.0
rank 127.0
rank_suf 60.0
rank_change -2.0
total_points 1134.24
result 0
rank_dif -67.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2207, dtype: object
date 2021-09-01 00:00:00
team Angola
score 0.0
suf_score 1.0
rank 126.0
rank_suf 46.0
rank_change 0.0
total_points 1135.88
result 0
rank_dif -80.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2208, dtype: object
date 2021-09-01 00:00:00
team Gabon
score 1.0
suf_score 2.0
rank 85.0
rank_suf 122.0
rank_change -3.0
total_points 1278.1
result 0
rank_dif 37.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2209, dtype: object
date 2021-09-01 00:00:00
team Togo
score 0.0
suf_score 2.0
rank 131.0
rank_suf 21.0
rank_change -2.0
total_points 1105.62
result 0
rank_dif -110.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2210, dtype: object
date 2021-09-01 00:00:00
team Guinea
score 1.0
suf_score 1.0
rank 76.0
rank_suf 109.0
rank_change 4.0
total_points 1329.79
result 2
rank_dif 33.0
points_by_rank 0.009174
team_points 1
country_classification Classe B
Name: 2211, dtype: object
date 2021-09-01 00:00:00
team Republic of Ireland
score 1.0
suf_score 2.0
rank 47.0
rank_suf 8.0
rank_change 0.0
total_points 1429.44
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2212, dtype: object
date 2021-09-01 00:00:00
team Azerbaijan
score 1.0
suf_score 2.0
rank 112.0
rank_suf 96.0
rank_change 2.0
total_points 1166.44
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2213, dtype: object
date 2021-09-01 00:00:00
team Ukraine
score 2.0
suf_score 2.0
rank 25.0
rank_suf 124.0
rank_change 1.0
total_points 1522.7
result 2
rank_dif 99.0
points_by_rank 0.008065
team_points 1
country_classification Classe A
Name: 2214, dtype: object
date 2021-09-01 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 1.0
rank 58.0
rank_suf 3.0
rank_change 3.0
total_points 1401.57
result 2
rank_dif -55.0
points_by_rank 0.333333
team_points 1
country_classification Classe A
Name: 2215, dtype: object
date 2021-09-01 00:00:00
team Israel
score 4.0
suf_score 0.0
rank 81.0
rank_suf 114.0
rank_change -4.0
total_points 1288.22
result 1
rank_dif 33.0
points_by_rank 0.026316
team_points 3
country_classification Classe B
Name: 2216, dtype: object
date 2021-09-01 00:00:00
team Scotland
score 0.0
suf_score 2.0
rank 49.0
rank_suf 11.0
rank_change 5.0
total_points 1424.77
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2217, dtype: object
date 2021-09-01 00:00:00
team Austria
score 2.0
suf_score 0.0
rank 23.0
rank_suf 175.0
rank_change 0.0
total_points 1535.12
result 1
rank_dif 152.0
points_by_rank 0.017143
team_points 3
country_classification Classe A
Name: 2218, dtype: object
date 2021-09-01 00:00:00
team Netherlands
score 1.0
suf_score 1.0
rank 12.0
rank_suf 43.0
rank_change -4.0
total_points 1637.48
result 2
rank_dif 31.0
points_by_rank 0.023256
team_points 1
country_classification Classe S-
Name: 2219, dtype: object
date 2021-09-01 00:00:00
team Gibraltar
score 1.0
suf_score 3.0
rank 194.0
rank_suf 136.0
rank_change -1.0
total_points 880.27
result 0
rank_dif -58.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2220, dtype: object
date 2021-09-01 00:00:00
team Montenegro
score 2.0
suf_score 2.0
rank 67.0
rank_suf 39.0
rank_change 3.0
total_points 1363.03
result 2
rank_dif -28.0
points_by_rank 0.025641
team_points 1
country_classification Classe B
Name: 2221, dtype: object
date 2021-09-01 00:00:00
team Cyprus
score 0.0
suf_score 3.0
rank 99.0
rank_suf 177.0
rank_change 2.0
total_points 1235.3
result 0
rank_dif 78.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2222, dtype: object
date 2021-09-01 00:00:00
team Slovakia
score 1.0
suf_score 1.0
rank 38.0
rank_suf 66.0
rank_change 2.0
total_points 1467.4
result 2
rank_dif 28.0
points_by_rank 0.015152
team_points 1
country_classification Classe A
Name: 2223, dtype: object
date 2021-09-01 00:00:00
team Croatia
score 0.0
suf_score 0.0
rank 18.0
rank_suf 41.0
rank_change 4.0
total_points 1594.36
result 2
rank_dif 23.0
points_by_rank 0.02439
team_points 1
country_classification Classe A
Name: 2224, dtype: object
date 2021-09-02 00:00:00
team India
score 1.0
suf_score 1.0
rank 105.0
rank_suf 168.0
rank_change 0.0
total_points 1180.21
result 2
rank_dif 63.0
points_by_rank 0.005952
team_points 1
country_classification Classe C
Name: 2225, dtype: object
date 2021-09-02 00:00:00
team Burkina Faso
score 2.0
suf_score 0.0
rank 62.0
rank_suf 117.0
rank_change 2.0
total_points 1383.86
result 1
rank_dif 55.0
points_by_rank 0.025641
team_points 3
country_classification Classe B
Name: 2226, dtype: object
date 2021-09-02 00:00:00
team Djibouti
score 0.0
suf_score 8.0
rank 182.0
rank_suf 30.0
rank_change -1.0
total_points 922.37
result 0
rank_dif -152.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2227, dtype: object
date 2021-09-02 00:00:00
team Uganda
score 0.0
suf_score 0.0
rank 84.0
rank_suf 104.0
rank_change 0.0
total_points 1282.14
result 2
rank_dif 20.0
points_by_rank 0.009615
team_points 1
country_classification Classe B
Name: 2228, dtype: object
date 2021-09-02 00:00:00
team Congo
score 1.0
suf_score 1.0
rank 93.0
rank_suf 107.0
rank_change -1.0
total_points 1255.88
result 2
rank_dif 14.0
points_by_rank 0.009346
team_points 1
country_classification Classe B
Name: 2229, dtype: object
date 2021-09-02 00:00:00
team Sudan
score 0.0
suf_score 2.0
rank 121.0
rank_suf 32.0
rank_change -2.0
total_points 1147.87
result 0
rank_dif -89.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2230, dtype: object
date 2021-09-02 00:00:00
team Benin
score 1.0
suf_score 0.0
rank 86.0
rank_suf 97.0
rank_change 4.0
total_points 1277.39
result 1
rank_dif 11.0
points_by_rank 0.030928
team_points 3
country_classification Classe B
Name: 2231, dtype: object
date 2021-09-02 00:00:00
team Iraq
score 0.0
suf_score 0.0
rank 70.0
rank_suf 36.0
rank_change 2.0
total_points 1354.51
result 2
rank_dif -34.0
points_by_rank 0.027778
team_points 1
country_classification Classe B
Name: 2232, dtype: object
date 2021-09-02 00:00:00
team Syria
score 0.0
suf_score 1.0
rank 80.0
rank_suf 26.0
rank_change 1.0
total_points 1302.75
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2233, dtype: object
date 2021-09-02 00:00:00
team Lebanon
score 0.0
suf_score 0.0
rank 98.0
rank_suf 68.0
rank_change 5.0
total_points 1237.98
result 2
rank_dif -30.0
points_by_rank 0.014706
team_points 1
country_classification Classe B
Name: 2234, dtype: object
date 2021-09-02 00:00:00
team Oman
score 1.0
suf_score 0.0
rank 79.0
rank_suf 24.0
rank_change -1.0
total_points 1305.01
result 1
rank_dif -55.0
points_by_rank 0.125
team_points 3
country_classification Classe B
Name: 2235, dtype: object
date 2021-09-02 00:00:00
team China PR
score 0.0
suf_score 3.0
rank 71.0
rank_suf 35.0
rank_change -6.0
total_points 1352.68
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2236, dtype: object
date 2021-09-02 00:00:00
team Vietnam
score 1.0
suf_score 3.0
rank 92.0
rank_suf 61.0
rank_change 0.0
total_points 1260.85
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2237, dtype: object
date 2021-09-02 00:00:00
team Kosovo
score 1.0
suf_score 0.0
rank 115.0
rank_suf 91.0
rank_change -5.0
total_points 1159.02
result 1
rank_dif -24.0
points_by_rank 0.032967
team_points 3
country_classification Classe C
Name: 2238, dtype: object
date 2021-09-02 00:00:00
team Spain
score 1.0
suf_score 2.0
rank 7.0
rank_suf 17.0
rank_change 1.0
total_points 1680.44
result 0
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2239, dtype: object
date 2021-09-02 00:00:00
team Bulgaria
score 1.0
suf_score 1.0
rank 75.0
rank_suf 5.0
rank_change 4.0
total_points 1334.83
result 2
rank_dif -70.0
points_by_rank 0.2
team_points 1
country_classification Classe B
Name: 2240, dtype: object
date 2021-09-02 00:00:00
team Northern Ireland
score 4.0
suf_score 1.0
rank 51.0
rank_suf 134.0
rank_change 3.0
total_points 1422.29
result 1
rank_dif 83.0
points_by_rank 0.022388
team_points 3
country_classification Classe A
Name: 2241, dtype: object
date 2021-09-02 00:00:00
team Belarus
score 0.0
suf_score 1.0
rank 89.0
rank_suf 31.0
rank_change 0.0
total_points 1270.75
result 0
rank_dif -58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2242, dtype: object
date 2021-09-02 00:00:00
team Belgium
score 5.0
suf_score 2.0
rank 1.0
rank_suf 110.0
rank_change 0.0
total_points 1822.34
result 1
rank_dif 109.0
points_by_rank 0.027273
team_points 3
country_classification Classe S
Name: 2243, dtype: object
date 2021-09-02 00:00:00
team San Marino
score 0.0
suf_score 2.0
rank 209.0
rank_suf 156.0
rank_change -1.0
total_points 802.43
result 0
rank_dif -53.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2244, dtype: object
date 2021-09-02 00:00:00
team England
score 4.0
suf_score 0.0
rank 4.0
rank_suf 37.0
rank_change 0.0
total_points 1752.83
result 1
rank_dif 33.0
points_by_rank 0.081081
team_points 3
country_classification Classe S
Name: 2245, dtype: object
date 2021-09-02 00:00:00
team Albania
score 1.0
suf_score 4.0
rank 69.0
rank_suf 27.0
rank_change 3.0
total_points 1359.83
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2246, dtype: object
date 2021-09-02 00:00:00
team Romania
score 2.0
suf_score 0.0
rank 45.0
rank_suf 53.0
rank_change 2.0
total_points 1439.7
result 1
rank_dif 8.0
points_by_rank 0.056604
team_points 3
country_classification Classe A
Name: 2247, dtype: object
date 2021-09-02 00:00:00
team Germany
score 2.0
suf_score 0.0
rank 16.0
rank_suf 189.0
rank_change 4.0
total_points 1613.29
result 1
rank_dif 173.0
points_by_rank 0.015873
team_points 3
country_classification Classe S-
Name: 2248, dtype: object
date 2021-09-02 00:00:00
team Armenia
score 0.0
suf_score 0.0
rank 88.0
rank_suf 72.0
rank_change -2.0
total_points 1273.67
result 2
rank_dif -16.0
points_by_rank 0.013889
team_points 1
country_classification Classe B
Name: 2249, dtype: object
date 2021-09-02 00:00:00
team Colombia
score 1.0
suf_score 1.0
rank 15.0
rank_suf 82.0
rank_change 0.0
total_points 1617.67
result 2
rank_dif 67.0
points_by_rank 0.012195
team_points 1
country_classification Classe S-
Name: 2250, dtype: object
date 2021-09-02 00:00:00
team Paraguay
score 0.0
suf_score 2.0
rank 33.0
rank_suf 55.0
rank_change -2.0
total_points 1483.49
result 0
rank_dif 22.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2251, dtype: object
date 2021-09-02 00:00:00
team Uruguay
score 1.0
suf_score 1.0
rank 13.0
rank_suf 22.0
rank_change 4.0
total_points 1634.63
result 2
rank_dif 9.0
points_by_rank 0.045455
team_points 1
country_classification Classe S-
Name: 2252, dtype: object
date 2021-09-02 00:00:00
team Argentina
score 3.0
suf_score 1.0
rank 6.0
rank_suf 40.0
rank_change -2.0
total_points 1714.43
result 1
rank_dif 34.0
points_by_rank 0.075
team_points 3
country_classification Classe S
Name: 2253, dtype: object
date 2021-09-02 00:00:00
team Brazil
score 1.0
suf_score 0.0
rank 2.0
rank_suf 20.0
rank_change -1.0
total_points 1797.67
result 1
rank_dif 18.0
points_by_rank 0.15
team_points 3
country_classification Classe S
Name: 2254, dtype: object
date 2021-09-02 00:00:00
team Honduras
score 1.0
suf_score 1.0
rank 63.0
rank_suf 59.0
rank_change -4.0
total_points 1377.79
result 2
rank_dif -4.0
points_by_rank 0.016949
team_points 1
country_classification Classe B
Name: 2255, dtype: object
date 2021-09-02 00:00:00
team United States
score 0.0
suf_score 0.0
rank 10.0
rank_suf 64.0
rank_change -10.0
total_points 1647.75
result 2
rank_dif 54.0
points_by_rank 0.015625
team_points 1
country_classification Classe S-
Name: 2256, dtype: object
date 2021-09-02 00:00:00
team Costa Rica
score 0.0
suf_score 0.0
rank 44.0
rank_suf 74.0
rank_change -6.0
total_points 1449.79
result 2
rank_dif 30.0
points_by_rank 0.013514
team_points 1
country_classification Classe A
Name: 2257, dtype: object
date 2021-09-02 00:00:00
team Jamaica
score 1.0
suf_score 2.0
rank 50.0
rank_suf 9.0
rank_change 5.0
total_points 1423.06
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2258, dtype: object
date 2021-09-03 00:00:00
team Zambia
score 2.0
suf_score 1.0
rank 87.0
rank_suf 100.0
rank_change 0.0
total_points 1276.14
result 1
rank_dif 13.0
points_by_rank 0.03
team_points 3
country_classification Classe B
Name: 2259, dtype: object
date 2021-09-03 00:00:00
team Equatorial Guinea
score 0.0
suf_score 3.0
rank 132.0
rank_suf 28.0
rank_change 0.0
total_points 1105.2
result 0
rank_dif -104.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2260, dtype: object
date 2021-09-03 00:00:00
team Liberia
score 0.0
suf_score 2.0
rank 150.0
rank_suf 34.0
rank_change -1.0
total_points 1049.97
result 0
rank_dif -116.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2261, dtype: object
date 2021-09-03 00:00:00
team Malawi
score 0.0
suf_score 2.0
rank 118.0
rank_suf 54.0
rank_change 3.0
total_points 1153.5
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2262, dtype: object
date 2021-09-03 00:00:00
team South Africa
score 0.0
suf_score 0.0
rank 73.0
rank_suf 108.0
rank_change -2.0
total_points 1337.77
result 2
rank_dif 35.0
points_by_rank 0.009259
team_points 1
country_classification Classe B
Name: 2263, dtype: object
date 2021-09-03 00:00:00
team Ethiopia
score 0.0
suf_score 1.0
rank 137.0
rank_suf 52.0
rank_change -3.0
total_points 1079.41
result 0
rank_dif -85.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2264, dtype: object
date 2021-09-04 00:00:00
team Kuwait
score 0.0
suf_score 1.0
rank 142.0
rank_suf 58.0
rank_change -6.0
total_points 1067.44
result 0
rank_dif -84.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2265, dtype: object
date 2021-09-04 00:00:00
team Seychelles
score 1.0
suf_score 8.0
rank 199.0
rank_suf 140.0
rank_change -1.0
total_points 865.69
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2266, dtype: object
date 2021-09-04 00:00:00
team Jordan
score 0.0
suf_score 2.0
rank 95.0
rank_suf 90.0
rank_change 0.0
total_points 1245.31
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2267, dtype: object
date 2021-09-04 00:00:00
team Portugal
score 3.0
suf_score 1.0
rank 8.0
rank_suf 42.0
rank_change 3.0
total_points 1661.51
result 1
rank_dif 34.0
points_by_rank 0.071429
team_points 3
country_classification Classe S-
Name: 2268, dtype: object
date 2021-09-04 00:00:00
team Azerbaijan
score 1.0
suf_score 1.0
rank 112.0
rank_suf 47.0
rank_change 2.0
total_points 1166.44
result 2
rank_dif -65.0
points_by_rank 0.021277
team_points 1
country_classification Classe C
Name: 2269, dtype: object
date 2021-09-04 00:00:00
team Luxembourg
score 1.0
suf_score 4.0
rank 96.0
rank_suf 29.0
rank_change 0.0
total_points 1238.59
result 0
rank_dif -67.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2270, dtype: object
date 2021-09-04 00:00:00
team Kazakhstan
score 0.0
suf_score 1.0
rank 124.0
rank_suf 56.0
rank_change 0.0
total_points 1144.41
result 0
rank_dif -68.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2271, dtype: object
date 2021-09-04 00:00:00
team France
score 1.0
suf_score 1.0
rank 3.0
rank_suf 25.0
rank_change 1.0
total_points 1761.77
result 2
rank_dif 22.0
points_by_rank 0.04
team_points 1
country_classification Classe S
Name: 2272, dtype: object
date 2021-09-04 00:00:00
team Denmark
score 1.0
suf_score 0.0
rank 11.0
rank_suf 114.0
rank_change 1.0
total_points 1642.28
result 1
rank_dif 103.0
points_by_rank 0.026316
team_points 3
country_classification Classe S-
Name: 2273, dtype: object
date 2021-09-04 00:00:00
team Moldova
score 0.0
suf_score 1.0
rank 175.0
rank_suf 49.0
rank_change -2.0
total_points 954.15
result 0
rank_dif -126.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2274, dtype: object
date 2021-09-04 00:00:00
team Austria
score 2.0
suf_score 5.0
rank 23.0
rank_suf 81.0
rank_change 0.0
total_points 1535.12
result 0
rank_dif 58.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2275, dtype: object
date 2021-09-04 00:00:00
team Norway
score 2.0
suf_score 0.0
rank 43.0
rank_suf 136.0
rank_change 1.0
total_points 1450.12
result 1
rank_dif 93.0
points_by_rank 0.022059
team_points 3
country_classification Classe A
Name: 2276, dtype: object
date 2021-09-04 00:00:00
team Turkey
score 3.0
suf_score 0.0
rank 39.0
rank_suf 194.0
rank_change 10.0
total_points 1463.91
result 1
rank_dif 155.0
points_by_rank 0.015464
team_points 3
country_classification Classe A
Name: 2277, dtype: object
date 2021-09-04 00:00:00
team Montenegro
score 0.0
suf_score 4.0
rank 67.0
rank_suf 12.0
rank_change 3.0
total_points 1363.03
result 0
rank_dif -55.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2278, dtype: object
date 2021-09-04 00:00:00
team Malta
score 0.0
suf_score 1.0
rank 177.0
rank_suf 66.0
rank_change 2.0
total_points 952.0
result 0
rank_dif -111.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2279, dtype: object
date 2021-09-04 00:00:00
team Russia
score 2.0
suf_score 0.0
rank 41.0
rank_suf 99.0
rank_change 3.0
total_points 1462.24
result 1
rank_dif 58.0
points_by_rank 0.030303
team_points 3
country_classification Classe A
Name: 2280, dtype: object
date 2021-09-04 00:00:00
team Croatia
score 1.0
suf_score 0.0
rank 18.0
rank_suf 38.0
rank_change 4.0
total_points 1594.36
result 1
rank_dif 20.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 2281, dtype: object
date 2021-09-05 00:00:00
team Palestine
score 2.0
suf_score 0.0
rank 102.0
rank_suf 188.0
rank_change -2.0
total_points 1216.25
result 1
rank_dif 86.0
points_by_rank 0.015957
team_points 3
country_classification Classe B
Name: 2282, dtype: object
date 2021-09-05 00:00:00
team Northern Ireland
score 1.0
suf_score 0.0
rank 51.0
rank_suf 110.0
rank_change 3.0
total_points 1422.29
result 1
rank_dif 59.0
points_by_rank 0.027273
team_points 3
country_classification Classe A
Name: 2283, dtype: object
date 2021-09-05 00:00:00
team India
score 2.0
suf_score 1.0
rank 105.0
rank_suf 168.0
rank_change 0.0
total_points 1180.21
result 1
rank_dif 63.0
points_by_rank 0.017857
team_points 3
country_classification Classe C
Name: 2284, dtype: object
date 2021-09-05 00:00:00
team Uzbekistan
score 1.0
suf_score 2.0
rank 83.0
rank_suf 17.0
rank_change -3.0
total_points 1284.42
result 0
rank_dif -66.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2285, dtype: object
date 2021-09-05 00:00:00
team Kenya
score 1.0
suf_score 1.0
rank 104.0
rank_suf 127.0
rank_change 2.0
total_points 1205.26
result 2
rank_dif 23.0
points_by_rank 0.007874
team_points 1
country_classification Classe B
Name: 2286, dtype: object
date 2021-09-05 00:00:00
team Egypt
score 1.0
suf_score 1.0
rank 46.0
rank_suf 85.0
rank_change 0.0
total_points 1432.63
result 2
rank_dif 39.0
points_by_rank 0.011765
team_points 1
country_classification Classe A
Name: 2287, dtype: object
date 2021-09-05 00:00:00
team Namibia
score 1.0
suf_score 0.0
rank 107.0
rank_suf 131.0
rank_change -4.0
total_points 1172.37
result 1
rank_dif 24.0
points_by_rank 0.022901
team_points 3
country_classification Classe C
Name: 2288, dtype: object
date 2021-09-05 00:00:00
team Greece
score 1.0
suf_score 1.0
rank 48.0
rank_suf 115.0
rank_change -3.0
total_points 1427.04
result 2
rank_dif 67.0
points_by_rank 0.008696
team_points 1
country_classification Classe A
Name: 2289, dtype: object
date 2021-09-05 00:00:00
team Georgia
score 0.0
suf_score 4.0
rank 91.0
rank_suf 7.0
rank_change 0.0
total_points 1264.06
result 0
rank_dif -84.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2290, dtype: object
date 2021-09-05 00:00:00
team Lithuania
score 0.0
suf_score 1.0
rank 134.0
rank_suf 75.0
rank_change 0.0
total_points 1096.56
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2291, dtype: object
date 2021-09-05 00:00:00
team Italy
score 0.0
suf_score 0.0
rank 5.0
rank_suf 14.0
rank_change -2.0
total_points 1744.67
result 2
rank_dif 9.0
points_by_rank 0.071429
team_points 1
country_classification Classe S
Name: 2292, dtype: object
date 2021-09-05 00:00:00
team Wales
score 3.0
suf_score 2.0
rank 19.0
rank_suf 89.0
rank_change 2.0
total_points 1567.29
result 1
rank_dif 70.0
points_by_rank 0.033708
team_points 3
country_classification Classe A
Name: 2293, dtype: object
date 2021-09-05 00:00:00
team Czech Republic
score 0.0
suf_score 3.0
rank 31.0
rank_suf 1.0
rank_change -9.0
total_points 1492.65
result 0
rank_dif -30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2294, dtype: object
date 2021-09-05 00:00:00
team Andorra
score 0.0
suf_score 4.0
rank 156.0
rank_suf 4.0
rank_change -2.0
total_points 1031.64
result 0
rank_dif -152.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2295, dtype: object
date 2021-09-05 00:00:00
team Hungary
score 0.0
suf_score 1.0
rank 37.0
rank_suf 69.0
rank_change 0.0
total_points 1474.36
result 0
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2296, dtype: object
date 2021-09-05 00:00:00
team Poland
score 7.0
suf_score 1.0
rank 27.0
rank_suf 209.0
rank_change 6.0
total_points 1516.27
result 1
rank_dif 182.0
points_by_rank 0.014354
team_points 3
country_classification Classe A
Name: 2297, dtype: object
date 2021-09-05 00:00:00
team North Macedonia
score 2.0
suf_score 2.0
rank 72.0
rank_suf 53.0
rank_change 10.0
total_points 1342.92
result 2
rank_dif -19.0
points_by_rank 0.018868
team_points 1
country_classification Classe B
Name: 2298, dtype: object
date 2021-09-05 00:00:00
team Armenia
score 0.0
suf_score 6.0
rank 88.0
rank_suf 16.0
rank_change -2.0
total_points 1273.67
result 0
rank_dif -72.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2299, dtype: object
date 2021-09-05 00:00:00
team Liechtenstein
score 0.0
suf_score 2.0
rank 189.0
rank_suf 45.0
rank_change 3.0
total_points 907.66
result 0
rank_dif -144.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2300, dtype: object
date 2021-09-05 00:00:00
team Chile
score 0.0
suf_score 0.0
rank 20.0
rank_suf 55.0
rank_change 1.0
total_points 1557.81
result 2
rank_dif 35.0
points_by_rank 0.018182
team_points 1
country_classification Classe A
Name: 2301, dtype: object
date 2021-09-05 00:00:00
team Colombia
score 1.0
suf_score 1.0
rank 15.0
rank_suf 33.0
rank_change 0.0
total_points 1617.67
result 2
rank_dif 18.0
points_by_rank 0.030303
team_points 1
country_classification Classe S-
Name: 2302, dtype: object
date 2021-09-05 00:00:00
team Bolivia
score 2.0
suf_score 4.0
rank 82.0
rank_suf 13.0
rank_change 1.0
total_points 1285.94
result 0
rank_dif -69.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2303, dtype: object
date 2021-09-05 00:00:00
team Venezuela
score 0.0
suf_score 1.0
rank 40.0
rank_suf 22.0
rank_change 10.0
total_points 1463.3
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2304, dtype: object
date 2021-09-05 00:00:00
team Mexico
score 1.0
suf_score 0.0
rank 9.0
rank_suf 44.0
rank_change -2.0
total_points 1658.29
result 1
rank_dif 35.0
points_by_rank 0.068182
team_points 3
country_classification Classe S-
Name: 2305, dtype: object
date 2021-09-05 00:00:00
team Honduras
score 0.0
suf_score 0.0
rank 63.0
rank_suf 64.0
rank_change -4.0
total_points 1377.79
result 2
rank_dif 1.0
points_by_rank 0.015625
team_points 1
country_classification Classe B
Name: 2306, dtype: object
date 2021-09-05 00:00:00
team Panama
score 3.0
suf_score 0.0
rank 74.0
rank_suf 50.0
rank_change -4.0
total_points 1334.85
result 1
rank_dif -24.0
points_by_rank 0.06
team_points 3
country_classification Classe B
Name: 2307, dtype: object
date 2021-09-05 00:00:00
team Canada
score 1.0
suf_score 1.0
rank 59.0
rank_suf 10.0
rank_change -11.0
total_points 1399.35
result 2
rank_dif -49.0
points_by_rank 0.1
team_points 1
country_classification Classe B
Name: 2308, dtype: object
date 2021-09-06 00:00:00
team Niger
score 4.0
suf_score 2.0
rank 117.0
rank_suf 182.0
rank_change 5.0
total_points 1156.3
result 1
rank_dif 65.0
points_by_rank 0.016484
team_points 3
country_classification Classe C
Name: 2309, dtype: object
date 2021-09-06 00:00:00
team Central African Republic
score 0.0
suf_score 1.0
rank 123.0
rank_suf 150.0
rank_change 5.0
total_points 1147.09
result 0
rank_dif 27.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2310, dtype: object
date 2021-09-06 00:00:00
team Mali
score 0.0
suf_score 0.0
rank 60.0
rank_suf 84.0
rank_change 3.0
total_points 1392.64
result 2
rank_dif 24.0
points_by_rank 0.011905
team_points 1
country_classification Classe B
Name: 2311, dtype: object
date 2021-09-06 00:00:00
team Ghana
score 0.0
suf_score 1.0
rank 52.0
rank_suf 73.0
rank_change 3.0
total_points 1420.61
result 0
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2312, dtype: object
date 2021-09-07 00:00:00
team Jordan
score 2.0
suf_score 1.0
rank 95.0
rank_suf 94.0
rank_change 0.0
total_points 1245.31
result 1
rank_dif -1.0
points_by_rank 0.031915
team_points 3
country_classification Classe B
Name: 2313, dtype: object
date 2021-09-07 00:00:00
team Burundi
score 0.0
suf_score 1.0
rank 140.0
rank_suf 133.0
rank_change -2.0
total_points 1075.64
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2314, dtype: object
date 2021-09-07 00:00:00
team Qatar
score 1.0
suf_score 1.0
rank 42.0
rank_suf 96.0
rank_change -16.0
total_points 1455.23
result 2
rank_dif 54.0
points_by_rank 0.010417
team_points 1
country_classification Classe A
Name: 2315, dtype: object
date 2021-09-07 00:00:00
team Algeria
score 1.0
suf_score 1.0
rank 30.0
rank_suf 62.0
rank_change -3.0
total_points 1498.75
result 2
rank_dif 32.0
points_by_rank 0.016129
team_points 1
country_classification Classe A
Name: 2316, dtype: object
date 2021-09-07 00:00:00
team Tunisia
score 2.0
suf_score 0.0
rank 28.0
rank_suf 87.0
rank_change 2.0
total_points 1515.3
result 1
rank_dif 59.0
points_by_rank 0.034483
team_points 3
country_classification Classe A
Name: 2317, dtype: object
date 2021-09-07 00:00:00
team Mauritania
score 0.0
suf_score 1.0
rank 100.0
rank_suf 132.0
rank_change -1.0
total_points 1227.14
result 0
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2318, dtype: object
date 2021-09-07 00:00:00
team Mozambique
score 0.0
suf_score 1.0
rank 113.0
rank_suf 118.0
rank_change -4.0
total_points 1166.38
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2319, dtype: object
date 2021-09-07 00:00:00
team Libya
score 1.0
suf_score 0.0
rank 122.0
rank_suf 126.0
rank_change 3.0
total_points 1147.67
result 1
rank_dif 4.0
points_by_rank 0.02381
team_points 3
country_classification Classe C
Name: 2320, dtype: object
date 2021-09-07 00:00:00
team Zimbabwe
score 0.0
suf_score 1.0
rank 108.0
rank_suf 137.0
rank_change 1.0
total_points 1171.88
result 0
rank_dif 29.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2321, dtype: object
date 2021-09-07 00:00:00
team Senegal
score 3.0
suf_score 1.0
rank 21.0
rank_suf 93.0
rank_change -1.0
total_points 1545.38
result 1
rank_dif 72.0
points_by_rank 0.032258
team_points 3
country_classification Classe A
Name: 2322, dtype: object
date 2021-09-07 00:00:00
team Guinea-Bissau
score 4.0
suf_score 2.0
rank 109.0
rank_suf 121.0
rank_change 1.0
total_points 1171.19
result 1
rank_dif 12.0
points_by_rank 0.024793
team_points 3
country_classification Classe C
Name: 2323, dtype: object
date 2021-09-07 00:00:00
team Madagascar
score 2.0
suf_score 3.0
rank 97.0
rank_suf 135.0
rank_change -3.0
total_points 1238.24
result 0
rank_dif 38.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2324, dtype: object
date 2021-09-07 00:00:00
team United Arab Emirates
score 1.0
suf_score 1.0
rank 68.0
rank_suf 80.0
rank_change -5.0
total_points 1362.3
result 2
rank_dif 12.0
points_by_rank 0.0125
team_points 1
country_classification Classe B
Name: 2325, dtype: object
date 2021-09-07 00:00:00
team Lebanon
score 0.0
suf_score 1.0
rank 98.0
rank_suf 36.0
rank_change 5.0
total_points 1237.98
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2326, dtype: object
date 2021-09-07 00:00:00
team Iran
score 3.0
suf_score 0.0
rank 26.0
rank_suf 70.0
rank_change -5.0
total_points 1522.04
result 1
rank_dif 44.0
points_by_rank 0.042857
team_points 3
country_classification Classe A
Name: 2327, dtype: object
date 2021-09-07 00:00:00
team Japan
score 1.0
suf_score 0.0
rank 24.0
rank_suf 71.0
rank_change -4.0
total_points 1529.45
result 1
rank_dif 47.0
points_by_rank 0.042254
team_points 3
country_classification Classe A
Name: 2328, dtype: object
date 2021-09-07 00:00:00
team Australia
score 1.0
suf_score 0.0
rank 35.0
rank_suf 92.0
rank_change -6.0
total_points 1477.21
result 1
rank_dif 57.0
points_by_rank 0.032609
team_points 3
country_classification Classe A
Name: 2329, dtype: object
date 2021-09-07 00:00:00
team Saudi Arabia
score 1.0
suf_score 0.0
rank 61.0
rank_suf 79.0
rank_change -4.0
total_points 1386.03
result 1
rank_dif 18.0
points_by_rank 0.037975
team_points 3
country_classification Classe B
Name: 2330, dtype: object
date 2021-09-07 00:00:00
team Serbia
score 1.0
suf_score 1.0
rank 29.0
rank_suf 47.0
rank_change 4.0
total_points 1507.19
result 2
rank_dif 18.0
points_by_rank 0.021277
team_points 1
country_classification Classe A
Name: 2331, dtype: object
date 2021-09-07 00:00:00
team Portugal
score 3.0
suf_score 0.0
rank 8.0
rank_suf 112.0
rank_change 3.0
total_points 1661.51
result 1
rank_dif 104.0
points_by_rank 0.026786
team_points 3
country_classification Classe S-
Name: 2332, dtype: object
date 2021-09-07 00:00:00
team Kazakhstan
score 2.0
suf_score 2.0
rank 124.0
rank_suf 58.0
rank_change 0.0
total_points 1144.41
result 2
rank_dif -66.0
points_by_rank 0.017241
team_points 1
country_classification Classe C
Name: 2333, dtype: object
date 2021-09-07 00:00:00
team Finland
score 0.0
suf_score 2.0
rank 56.0
rank_suf 3.0
rank_change 2.0
total_points 1403.92
result 0
rank_dif -53.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2334, dtype: object
date 2021-09-07 00:00:00
team Moldova
score 1.0
suf_score 2.0
rank 175.0
rank_suf 114.0
rank_change -2.0
total_points 954.15
result 0
rank_dif -61.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2335, dtype: object
date 2021-09-07 00:00:00
team Scotland
score 1.0
suf_score 0.0
rank 49.0
rank_suf 23.0
rank_change 5.0
total_points 1424.77
result 1
rank_dif -26.0
points_by_rank 0.130435
team_points 3
country_classification Classe A
Name: 2336, dtype: object
date 2021-09-07 00:00:00
team Israel
score 0.0
suf_score 5.0
rank 81.0
rank_suf 11.0
rank_change -4.0
total_points 1288.22
result 0
rank_dif -70.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2337, dtype: object
date 2021-09-07 00:00:00
team Latvia
score 0.0
suf_score 0.0
rank 136.0
rank_suf 67.0
rank_change -2.0
total_points 1083.57
result 2
rank_dif -69.0
points_by_rank 0.014925
team_points 1
country_classification Classe C
Name: 2338, dtype: object
date 2021-09-07 00:00:00
team Turkey
score 1.0
suf_score 6.0
rank 39.0
rank_suf 12.0
rank_change 10.0
total_points 1463.91
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2339, dtype: object
date 2021-09-07 00:00:00
team Gibraltar
score 1.0
suf_score 5.0
rank 194.0
rank_suf 43.0
rank_change -1.0
total_points 880.27
result 0
rank_dif -151.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2340, dtype: object
date 2021-09-07 00:00:00
team Slovenia
score 0.0
suf_score 3.0
rank 66.0
rank_suf 18.0
rank_change 3.0
total_points 1371.25
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2341, dtype: object
date 2021-09-07 00:00:00
team Cyprus
score 0.0
suf_score 2.0
rank 99.0
rank_suf 38.0
rank_change 2.0
total_points 1235.3
result 0
rank_dif -61.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2342, dtype: object
date 2021-09-07 00:00:00
team Malta
score 0.0
suf_score 2.0
rank 177.0
rank_suf 41.0
rank_change 2.0
total_points 952.0
result 0
rank_dif -136.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2343, dtype: object
date 2021-09-08 00:00:00
team Georgia
score 1.0
suf_score 4.0
rank 91.0
rank_suf 75.0
rank_change 0.0
total_points 1264.06
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2344, dtype: object
date 2021-09-08 00:00:00
team Ukraine
score 1.0
suf_score 1.0
rank 25.0
rank_suf 31.0
rank_change 1.0
total_points 1522.7
result 2
rank_dif 6.0
points_by_rank 0.032258
team_points 1
country_classification Classe A
Name: 2345, dtype: object
date 2021-09-08 00:00:00
team Nicaragua
score 2.0
suf_score 2.0
rank 143.0
rank_suf 125.0
rank_change -4.0
total_points 1063.6
result 2
rank_dif -18.0
points_by_rank 0.008
team_points 1
country_classification Classe C
Name: 2346, dtype: object
date 2021-09-08 00:00:00
team Spain
score 2.0
suf_score 0.0
rank 7.0
rank_suf 115.0
rank_change 1.0
total_points 1680.44
result 1
rank_dif 108.0
points_by_rank 0.026087
team_points 3
country_classification Classe S-
Name: 2347, dtype: object
date 2021-09-08 00:00:00
team Sweden
score 1.0
suf_score 2.0
rank 17.0
rank_suf 48.0
rank_change -1.0
total_points 1606.79
result 0
rank_dif 31.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2348, dtype: object
date 2021-09-08 00:00:00
team Switzerland
score 0.0
suf_score 0.0
rank 14.0
rank_suf 51.0
rank_change 1.0
total_points 1621.37
result 2
rank_dif 37.0
points_by_rank 0.019608
team_points 1
country_classification Classe S-
Name: 2349, dtype: object
date 2021-09-08 00:00:00
team Lithuania
score 0.0
suf_score 5.0
rank 134.0
rank_suf 5.0
rank_change 0.0
total_points 1096.56
result 0
rank_dif -129.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2350, dtype: object
date 2021-09-08 00:00:00
team Estonia
score 0.0
suf_score 0.0
rank 110.0
rank_suf 19.0
rank_change -6.0
total_points 1170.89
result 2
rank_dif -91.0
points_by_rank 0.052632
team_points 1
country_classification Classe C
Name: 2351, dtype: object
date 2021-09-08 00:00:00
team Belgium
score 1.0
suf_score 0.0
rank 1.0
rank_suf 89.0
rank_change 0.0
total_points 1822.34
result 1
rank_dif 88.0
points_by_rank 0.033708
team_points 3
country_classification Classe S
Name: 2352, dtype: object
date 2021-09-08 00:00:00
team San Marino
score 0.0
suf_score 5.0
rank 209.0
rank_suf 69.0
rank_change -1.0
total_points 802.43
result 0
rank_dif -140.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2353, dtype: object
date 2021-09-08 00:00:00
team Andorra
score 1.0
suf_score 2.0
rank 156.0
rank_suf 37.0
rank_change -2.0
total_points 1031.64
result 0
rank_dif -119.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2354, dtype: object
date 2021-09-08 00:00:00
team England
score 1.0
suf_score 1.0
rank 4.0
rank_suf 27.0
rank_change 0.0
total_points 1752.83
result 2
rank_dif 23.0
points_by_rank 0.037037
team_points 1
country_classification Classe S
Name: 2355, dtype: object
date 2021-09-08 00:00:00
team Germany
score 4.0
suf_score 0.0
rank 16.0
rank_suf 53.0
rank_change 4.0
total_points 1613.29
result 1
rank_dif 37.0
points_by_rank 0.056604
team_points 3
country_classification Classe S-
Name: 2356, dtype: object
date 2021-09-08 00:00:00
team Liechtenstein
score 1.0
suf_score 1.0
rank 189.0
rank_suf 88.0
rank_change 3.0
total_points 907.66
result 2
rank_dif -101.0
points_by_rank 0.011364
team_points 1
country_classification Classe D
Name: 2357, dtype: object
date 2021-09-08 00:00:00
team Romania
score 0.0
suf_score 0.0
rank 45.0
rank_suf 72.0
rank_change 2.0
total_points 1439.7
result 2
rank_dif 27.0
points_by_rank 0.013889
team_points 1
country_classification Classe A
Name: 2358, dtype: object
date 2021-09-08 00:00:00
team Jamaica
score 1.0
suf_score 1.0
rank 50.0
rank_suf 44.0
rank_change 5.0
total_points 1423.06
result 2
rank_dif -6.0
points_by_rank 0.022727
team_points 1
country_classification Classe A
Name: 2359, dtype: object
date 2021-09-08 00:00:00
team Mexico
score 1.0
suf_score 1.0
rank 9.0
rank_suf 74.0
rank_change -2.0
total_points 1658.29
result 2
rank_dif 65.0
points_by_rank 0.013514
team_points 1
country_classification Classe S-
Name: 2360, dtype: object
date 2021-09-08 00:00:00
team El Salvador
score 0.0
suf_score 3.0
rank 64.0
rank_suf 59.0
rank_change -5.0
total_points 1375.43
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2361, dtype: object
date 2021-09-08 00:00:00
team United States
score 4.0
suf_score 1.0
rank 10.0
rank_suf 63.0
rank_change -10.0
total_points 1647.75
result 1
rank_dif 53.0
points_by_rank 0.047619
team_points 3
country_classification Classe S-
Name: 2362, dtype: object
date 2021-09-09 00:00:00
team Chile
score 1.0
suf_score 3.0
rank 20.0
rank_suf 15.0
rank_change 1.0
total_points 1557.81
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2363, dtype: object
date 2021-09-09 00:00:00
team Venezuela
score 1.0
suf_score 2.0
rank 40.0
rank_suf 33.0
rank_change 10.0
total_points 1463.3
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2364, dtype: object
date 2021-09-09 00:00:00
team Ecuador
score 0.0
suf_score 1.0
rank 55.0
rank_suf 13.0
rank_change 2.0
total_points 1405.26
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2365, dtype: object
date 2021-09-09 00:00:00
team Bolivia
score 0.0
suf_score 3.0
rank 82.0
rank_suf 6.0
rank_change 1.0
total_points 1285.94
result 0
rank_dif -76.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2366, dtype: object
date 2021-09-09 00:00:00
team Peru
score 0.0
suf_score 2.0
rank 22.0
rank_suf 2.0
rank_change -5.0
total_points 1543.16
result 0
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2367, dtype: object
date 2021-09-24 00:00:00
team Guatemala
score 2.0
suf_score 0.0
rank 123.0
rank_suf 65.0
rank_change -2.0
total_points 1138.4
result 1
rank_dif -58.0
points_by_rank 0.046154
team_points 3
country_classification Classe C
Name: 2368, dtype: object
date 2021-09-30 00:00:00
team Liberia
score 0.0
suf_score 2.0
rank 144.0
rank_suf 48.0
rank_change -6.0
total_points 1060.93
result 0
rank_dif -96.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2369, dtype: object
date 2021-10-01 00:00:00
team Bangladesh
score 1.0
suf_score 0.0
rank 189.0
rank_suf 205.0
rank_change 1.0
total_points 906.84
result 1
rank_dif 16.0
points_by_rank 0.014634
team_points 3
country_classification Classe D
Name: 2370, dtype: object
date 2021-10-01 00:00:00
team Nepal
score 1.0
suf_score 0.0
rank 168.0
rank_suf 158.0
rank_change 0.0
total_points 970.95
result 1
rank_dif -10.0
points_by_rank 0.018987
team_points 3
country_classification Classe D
Name: 2371, dtype: object
date 2021-10-04 00:00:00
team India
score 1.0
suf_score 1.0
rank 107.0
rank_suf 189.0
rank_change 2.0
total_points 1181.45
result 2
rank_dif 82.0
points_by_rank 0.005291
team_points 1
country_classification Classe C
Name: 2372, dtype: object
date 2021-10-04 00:00:00
team Nepal
score 3.0
suf_score 2.0
rank 168.0
rank_suf 205.0
rank_change 0.0
total_points 970.95
result 1
rank_dif 37.0
points_by_rank 0.014634
team_points 3
country_classification Classe D
Name: 2373, dtype: object
date 2021-10-06 00:00:00
team Guinea
score 1.0
suf_score 1.0
rank 76.0
rank_suf 127.0
rank_change 0.0
total_points 1326.09
result 2
rank_dif 51.0
points_by_rank 0.007874
team_points 1
country_classification Classe B
Name: 2374, dtype: object
date 2021-10-06 00:00:00
team Guinea-Bissau
score 0.0
suf_score 5.0
rank 105.0
rank_suf 33.0
rank_change -4.0
total_points 1186.61
result 0
rank_dif -72.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2375, dtype: object
date 2021-10-06 00:00:00
team Curaçao
score 0.0
suf_score 4.0
rank 79.0
rank_suf 91.0
rank_change 1.0
total_points 1310.4
result 0
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2376, dtype: object
date 2021-10-06 00:00:00
team Malaysia
score 0.0
suf_score 4.0
rank 154.0
rank_suf 93.0
rank_change 0.0
total_points 1040.81
result 0
rank_dif -61.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2377, dtype: object
date 2021-10-06 00:00:00
team South Sudan
score 1.0
suf_score 1.0
rank 165.0
rank_suf 108.0
rank_change 0.0
total_points 982.84
result 2
rank_dif -57.0
points_by_rank 0.009259
team_points 1
country_classification Classe D
Name: 2378, dtype: object
date 2021-10-06 00:00:00
team Spain
score 2.0
suf_score 1.0
rank 8.0
rank_suf 5.0
rank_change 1.0
total_points 1673.68
result 1
rank_dif -3.0
points_by_rank 0.6
team_points 3
country_classification Classe S-
Name: 2379, dtype: object
date 2021-10-07 00:00:00
team Lebanon
score 0.0
suf_score 0.0
rank 97.0
rank_suf 72.0
rank_change -1.0
total_points 1233.61
result 2
rank_dif -25.0
points_by_rank 0.013889
team_points 1
country_classification Classe B
Name: 2380, dtype: object
date 2021-10-07 00:00:00
team Syria
score 1.0
suf_score 2.0
rank 81.0
rank_suf 36.0
rank_change 1.0
total_points 1296.75
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2381, dtype: object
date 2021-10-07 00:00:00
team Iran
score 1.0
suf_score 0.0
rank 22.0
rank_suf 69.0
rank_change -4.0
total_points 1538.08
result 1
rank_dif 47.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 2382, dtype: object
date 2021-10-07 00:00:00
team Japan
score 0.0
suf_score 1.0
rank 26.0
rank_suf 56.0
rank_change 2.0
total_points 1520.46
result 0
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2383, dtype: object
date 2021-10-07 00:00:00
team Vietnam
score 2.0
suf_score 3.0
rank 95.0
rank_suf 75.0
rank_change 3.0
total_points 1244.09
result 0
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2384, dtype: object
date 2021-10-07 00:00:00
team Oman
score 1.0
suf_score 3.0
rank 78.0
rank_suf 32.0
rank_change -1.0
total_points 1311.82
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2385, dtype: object
date 2021-10-07 00:00:00
team Costa Rica
score 0.0
suf_score 0.0
rank 44.0
rank_suf 63.0
rank_change 0.0
total_points 1438.29
result 2
rank_dif 19.0
points_by_rank 0.015873
team_points 1
country_classification Classe A
Name: 2386, dtype: object
date 2021-10-07 00:00:00
team Jamaica
score 0.0
suf_score 2.0
rank 59.0
rank_suf 13.0
rank_change 9.0
total_points 1402.39
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2387, dtype: object
date 2021-10-07 00:00:00
team Panama
score 0.0
suf_score 1.0
rank 68.0
rank_suf 65.0
rank_change -6.0
total_points 1358.77
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2388, dtype: object
date 2021-10-07 00:00:00
team Canada
score 1.0
suf_score 1.0
rank 51.0
rank_suf 9.0
rank_change -8.0
total_points 1416.23
result 2
rank_dif -42.0
points_by_rank 0.111111
team_points 1
country_classification Classe A
Name: 2389, dtype: object
date 2021-10-07 00:00:00
team Zambia
score 0.0
suf_score 2.0
rank 85.0
rank_suf 131.0
rank_change -2.0
total_points 1280.19
result 0
rank_dif 46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2390, dtype: object
date 2021-10-07 00:00:00
team Mauritania
score 0.0
suf_score 3.0
rank 104.0
rank_suf 25.0
rank_change 4.0
total_points 1200.6
result 0
rank_dif -79.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2391, dtype: object
date 2021-10-07 00:00:00
team Central African Republic
score 1.0
suf_score 0.0
rank 124.0
rank_suf 34.0
rank_change 1.0
total_points 1136.25
result 1
rank_dif -90.0
points_by_rank 0.088235
team_points 3
country_classification Classe C
Name: 2392, dtype: object
date 2021-10-07 00:00:00
team Uganda
score 1.0
suf_score 0.0
rank 86.0
rank_suf 128.0
rank_change 2.0
total_points 1279.85
result 1
rank_dif 42.0
points_by_rank 0.023438
team_points 3
country_classification Classe B
Name: 2393, dtype: object
date 2021-10-07 00:00:00
team Kenya
score 0.0
suf_score 5.0
rank 102.0
rank_suf 61.0
rank_change -2.0
total_points 1205.12
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2394, dtype: object
date 2021-10-07 00:00:00
team Benin
score 1.0
suf_score 0.0
rank 82.0
rank_suf 132.0
rank_change -4.0
total_points 1290.81
result 1
rank_dif 50.0
points_by_rank 0.022727
team_points 3
country_classification Classe B
Name: 2395, dtype: object
date 2021-10-07 00:00:00
team Bolivia
score 0.0
suf_score 3.0
rank 83.0
rank_suf 52.0
rank_change 1.0
total_points 1283.65
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2396, dtype: object
date 2021-10-07 00:00:00
team Brazil
score 3.0
suf_score 1.0
rank 2.0
rank_suf 49.0
rank_change 0.0
total_points 1811.73
result 1
rank_dif 47.0
points_by_rank 0.061224
team_points 3
country_classification Classe S
Name: 2397, dtype: object
date 2021-10-07 00:00:00
team Argentina
score 0.0
suf_score 0.0
rank 6.0
rank_suf 35.0
rank_change 0.0
total_points 1725.31
result 2
rank_dif 29.0
points_by_rank 0.028571
team_points 1
country_classification Classe S
Name: 2398, dtype: object
date 2021-10-07 00:00:00
team Chile
score 0.0
suf_score 2.0
rank 23.0
rank_suf 21.0
rank_change 3.0
total_points 1536.53
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2399, dtype: object
date 2021-10-07 00:00:00
team Colombia
score 0.0
suf_score 0.0
rank 16.0
rank_suf 12.0
rank_change 1.0
total_points 1618.4
result 2
rank_dif -4.0
points_by_rank 0.083333
team_points 1
country_classification Classe S-
Name: 2400, dtype: object
date 2021-10-07 00:00:00
team Sri Lanka
score 0.0
suf_score 0.0
rank 205.0
rank_suf 107.0
rank_change 0.0
total_points 846.54
result 2
rank_dif -98.0
points_by_rank 0.009346
team_points 1
country_classification Classe D
Name: 2401, dtype: object
date 2021-10-07 00:00:00
team Bangladesh
score 0.0
suf_score 2.0
rank 189.0
rank_suf 158.0
rank_change 1.0
total_points 906.84
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2402, dtype: object
date 2021-10-07 00:00:00
team France
score 3.0
suf_score 2.0
rank 4.0
rank_suf 1.0
rank_change 1.0
total_points 1754.31
result 1
rank_dif -3.0
points_by_rank 3.0
team_points 3
country_classification Classe S
Name: 2403, dtype: object
date 2021-10-08 00:00:00
team Wales
score 2.0
suf_score 2.0
rank 19.0
rank_suf 31.0
rank_change 0.0
total_points 1563.59
result 2
rank_dif 12.0
points_by_rank 0.032258
team_points 1
country_classification Classe A
Name: 2404, dtype: object
date 2021-10-08 00:00:00
team Belarus
score 0.0
suf_score 2.0
rank 90.0
rank_suf 111.0
rank_change 1.0
total_points 1254.81
result 0
rank_dif 21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2405, dtype: object
date 2021-10-08 00:00:00
team Montenegro
score 3.0
suf_score 0.0
rank 71.0
rank_suf 197.0
rank_change 4.0
total_points 1352.83
result 1
rank_dif 126.0
points_by_rank 0.015228
team_points 3
country_classification Classe B
Name: 2406, dtype: object
date 2021-10-08 00:00:00
team Netherlands
score 1.0
suf_score 0.0
rank 11.0
rank_suf 135.0
rank_change -1.0
total_points 1648.2
result 1
rank_dif 124.0
points_by_rank 0.022222
team_points 3
country_classification Classe S-
Name: 2407, dtype: object
date 2021-10-08 00:00:00
team Norway
score 1.0
suf_score 1.0
rank 39.0
rank_suf 41.0
rank_change -4.0
total_points 1461.76
result 2
rank_dif 2.0
points_by_rank 0.02439
team_points 1
country_classification Classe A
Name: 2408, dtype: object
date 2021-10-08 00:00:00
team Slovenia
score 4.0
suf_score 0.0
rank 64.0
rank_suf 171.0
rank_change -2.0
total_points 1370.46
result 1
rank_dif 107.0
points_by_rank 0.017544
team_points 3
country_classification Classe B
Name: 2409, dtype: object
date 2021-10-08 00:00:00
team Croatia
score 3.0
suf_score 0.0
rank 17.0
rank_suf 103.0
rank_change -1.0
total_points 1608.25
result 1
rank_dif 86.0
points_by_rank 0.029126
team_points 3
country_classification Classe S-
Name: 2410, dtype: object
date 2021-10-08 00:00:00
team Slovakia
score 0.0
suf_score 1.0
rank 38.0
rank_suf 37.0
rank_change 0.0
total_points 1462.59
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2411, dtype: object
date 2021-10-08 00:00:00
team Armenia
score 1.0
suf_score 1.0
rank 89.0
rank_suf 60.0
rank_change 1.0
total_points 1262.4
result 2
rank_dif -29.0
points_by_rank 0.016667
team_points 1
country_classification Classe B
Name: 2412, dtype: object
date 2021-10-08 00:00:00
team Romania
score 1.0
suf_score 2.0
rank 42.0
rank_suf 14.0
rank_change -3.0
total_points 1451.8
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2413, dtype: object
date 2021-10-08 00:00:00
team North Macedonia
score 4.0
suf_score 0.0
rank 74.0
rank_suf 188.0
rank_change 2.0
total_points 1345.47
result 1
rank_dif 114.0
points_by_rank 0.015957
team_points 3
country_classification Classe B
Name: 2414, dtype: object
date 2021-10-08 00:00:00
team Niger
score 1.0
suf_score 6.0
rank 119.0
rank_suf 30.0
rank_change 2.0
total_points 1156.17
result 0
rank_dif -89.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2415, dtype: object
date 2021-10-08 00:00:00
team Burkina Faso
score 4.0
suf_score 0.0
rank 62.0
rank_suf 185.0
rank_change 0.0
total_points 1393.82
result 1
rank_dif 123.0
points_by_rank 0.016216
team_points 3
country_classification Classe B
Name: 2416, dtype: object
date 2021-10-08 00:00:00
team Mozambique
score 1.0
suf_score 3.0
rank 116.0
rank_suf 58.0
rank_change 3.0
total_points 1158.59
result 0
rank_dif -58.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2417, dtype: object
date 2021-10-08 00:00:00
team Gabon
score 1.0
suf_score 3.0
rank 88.0
rank_suf 129.0
rank_change 3.0
total_points 1266.61
result 0
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2418, dtype: object
date 2021-10-08 00:00:00
team Libya
score 0.0
suf_score 1.0
rank 110.0
rank_suf 48.0
rank_change -12.0
total_points 1174.94
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2419, dtype: object
date 2021-10-09 00:00:00
team Republic of Ireland
score 3.0
suf_score 0.0
rank 50.0
rank_suf 117.0
rank_change 3.0
total_points 1418.7
result 1
rank_dif 67.0
points_by_rank 0.025641
team_points 3
country_classification Classe A
Name: 2420, dtype: object
date 2021-10-09 00:00:00
team Serbia
score 1.0
suf_score 0.0
rank 28.0
rank_suf 94.0
rank_change -1.0
total_points 1515.97
result 1
rank_dif 66.0
points_by_rank 0.031915
team_points 3
country_classification Classe A
Name: 2421, dtype: object
date 2021-10-09 00:00:00
team Kosovo
score 0.0
suf_score 3.0
rank 109.0
rank_suf 18.0
rank_change -6.0
total_points 1176.28
result 0
rank_dif -91.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2422, dtype: object
date 2021-10-09 00:00:00
team Greece
score 2.0
suf_score 0.0
rank 46.0
rank_suf 96.0
rank_change -2.0
total_points 1435.43
result 1
rank_dif 50.0
points_by_rank 0.03125
team_points 3
country_classification Classe A
Name: 2423, dtype: object
date 2021-10-09 00:00:00
team Bulgaria
score 1.0
suf_score 3.0
rank 70.0
rank_suf 137.0
rank_change -5.0
total_points 1353.93
result 0
rank_dif 67.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2424, dtype: object
date 2021-10-09 00:00:00
team Northern Ireland
score 0.0
suf_score 2.0
rank 47.0
rank_suf 15.0
rank_change -4.0
total_points 1435.06
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2425, dtype: object
date 2021-10-09 00:00:00
team Ukraine
score 2.0
suf_score 1.0
rank 27.0
rank_suf 55.0
rank_change 2.0
total_points 1520.07
result 1
rank_dif 28.0
points_by_rank 0.054545
team_points 3
country_classification Classe A
Name: 2426, dtype: object
date 2021-10-09 00:00:00
team Bosnia and Herzegovina
score 2.0
suf_score 0.0
rank 57.0
rank_suf 120.0
rank_change -1.0
total_points 1405.3
result 1
rank_dif 63.0
points_by_rank 0.025
team_points 3
country_classification Classe A
Name: 2427, dtype: object
date 2021-10-09 00:00:00
team Israel
score 2.0
suf_score 3.0
rank 80.0
rank_suf 45.0
rank_change -1.0
total_points 1310.33
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2428, dtype: object
date 2021-10-09 00:00:00
team Austria
score 2.0
suf_score 0.0
rank 29.0
rank_suf 114.0
rank_change 6.0
total_points 1504.82
result 1
rank_dif 85.0
points_by_rank 0.026316
team_points 3
country_classification Classe A
Name: 2429, dtype: object
date 2021-10-09 00:00:00
team Denmark
score 4.0
suf_score 0.0
rank 10.0
rank_suf 180.0
rank_change -1.0
total_points 1658.49
result 1
rank_dif 170.0
points_by_rank 0.016667
team_points 3
country_classification Classe S-
Name: 2430, dtype: object
date 2021-10-09 00:00:00
team England
score 5.0
suf_score 0.0
rank 3.0
rank_suf 156.0
rank_change -1.0
total_points 1755.44
result 1
rank_dif 153.0
points_by_rank 0.019231
team_points 3
country_classification Classe S
Name: 2431, dtype: object
date 2021-10-09 00:00:00
team Albania
score 1.0
suf_score 0.0
rank 66.0
rank_suf 40.0
rank_change -3.0
total_points 1368.73
result 1
rank_dif -26.0
points_by_rank 0.075
team_points 3
country_classification Classe B
Name: 2432, dtype: object
date 2021-10-09 00:00:00
team San Marino
score 0.0
suf_score 5.0
rank 210.0
rank_suf 24.0
rank_change 1.0
total_points 791.17
result 0
rank_dif -186.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2433, dtype: object
date 2021-10-09 00:00:00
team South Africa
score 3.0
suf_score 1.0
rank 73.0
rank_suf 134.0
rank_change 0.0
total_points 1348.6
result 1
rank_dif 61.0
points_by_rank 0.022388
team_points 3
country_classification Classe B
Name: 2434, dtype: object
date 2021-10-09 00:00:00
team Zimbabwe
score 1.0
suf_score 3.0
rank 113.0
rank_suf 53.0
rank_change 5.0
total_points 1160.91
result 0
rank_dif -60.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2435, dtype: object
date 2021-10-09 00:00:00
team Congo
score 1.0
suf_score 1.0
rank 92.0
rank_suf 136.0
rank_change -1.0
total_points 1247.81
result 2
rank_dif 44.0
points_by_rank 0.007353
team_points 1
country_classification Classe B
Name: 2436, dtype: object
date 2021-10-09 00:00:00
team Namibia
score 1.0
suf_score 4.0
rank 106.0
rank_suf 20.0
rank_change -1.0
total_points 1185.12
result 0
rank_dif -86.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2437, dtype: object
date 2021-10-09 00:00:00
team Sudan
score 2.0
suf_score 2.0
rank 127.0
rank_suf 76.0
rank_change 6.0
total_points 1130.91
result 2
rank_dif -51.0
points_by_rank 0.013158
team_points 1
country_classification Classe C
Name: 2438, dtype: object
date 2021-10-09 00:00:00
team New Zealand
score 2.0
suf_score 1.0
rank 121.0
rank_suf 79.0
rank_change 2.0
total_points 1149.43
result 1
rank_dif -42.0
points_by_rank 0.037975
team_points 3
country_classification Classe C
Name: 2439, dtype: object
date 2021-10-09 00:00:00
team Sierra Leone
score 2.0
suf_score 1.0
rank 108.0
rank_suf 149.0
rank_change 2.0
total_points 1177.71
result 1
rank_dif 41.0
points_by_rank 0.020134
team_points 3
country_classification Classe C
Name: 2440, dtype: object
date 2021-10-09 00:00:00
team Qatar
score 0.0
suf_score 3.0
rank 43.0
rank_suf 7.0
rank_change 1.0
total_points 1445.83
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2441, dtype: object
date 2021-10-09 00:00:00
team Malaysia
score 1.0
suf_score 5.0
rank 154.0
rank_suf 84.0
rank_change 0.0
total_points 1040.81
result 0
rank_dif -70.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2442, dtype: object
date 2021-10-09 00:00:00
team Cambodia
score 1.0
suf_score 0.0
rank 178.0
rank_suf 203.0
rank_change -1.0
total_points 950.26
result 1
rank_dif 25.0
points_by_rank 0.014778
team_points 3
country_classification Classe D
Name: 2443, dtype: object
date 2021-10-09 00:00:00
team Guinea-Bissau
score 0.0
suf_score 3.0
rank 105.0
rank_suf 33.0
rank_change -4.0
total_points 1186.61
result 0
rank_dif -72.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2444, dtype: object
date 2021-10-10 00:00:00
team El Salvador
score 1.0
suf_score 2.0
rank 65.0
rank_suf 44.0
rank_change 1.0
total_points 1369.73
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2445, dtype: object
date 2021-10-10 00:00:00
team Canada
score 0.0
suf_score 0.0
rank 51.0
rank_suf 59.0
rank_change -8.0
total_points 1416.23
result 2
rank_dif 8.0
points_by_rank 0.016949
team_points 1
country_classification Classe A
Name: 2446, dtype: object
date 2021-10-10 00:00:00
team United States
score 0.0
suf_score 1.0
rank 13.0
rank_suf 68.0
rank_change 3.0
total_points 1643.1
result 0
rank_dif 55.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2447, dtype: object
date 2021-10-10 00:00:00
team Honduras
score 0.0
suf_score 3.0
rank 63.0
rank_suf 9.0
rank_change 0.0
total_points 1371.61
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2448, dtype: object
date 2021-10-10 00:00:00
team Equatorial Guinea
score 1.0
suf_score 1.0
rank 131.0
rank_suf 85.0
rank_change -1.0
total_points 1116.12
result 2
rank_dif -46.0
points_by_rank 0.011765
team_points 1
country_classification Classe C
Name: 2449, dtype: object
date 2021-10-10 00:00:00
team Tunisia
score 0.0
suf_score 0.0
rank 25.0
rank_suf 104.0
rank_change -3.0
total_points 1526.87
result 2
rank_dif 79.0
points_by_rank 0.009615
team_points 1
country_classification Classe A
Name: 2450, dtype: object
date 2021-10-10 00:00:00
team Nigeria
score 2.0
suf_score 0.0
rank 34.0
rank_suf 124.0
rank_change 0.0
total_points 1492.37
result 1
rank_dif 90.0
points_by_rank 0.024194
team_points 3
country_classification Classe A
Name: 2451, dtype: object
date 2021-10-10 00:00:00
team Mali
score 1.0
suf_score 0.0
rank 61.0
rank_suf 102.0
rank_change 1.0
total_points 1396.52
result 1
rank_dif 41.0
points_by_rank 0.029412
team_points 3
country_classification Classe B
Name: 2452, dtype: object
date 2021-10-10 00:00:00
team Rwanda
score 0.0
suf_score 1.0
rank 128.0
rank_suf 86.0
rank_change 1.0
total_points 1129.37
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2453, dtype: object
date 2021-10-10 00:00:00
team Tanzania
score 1.0
suf_score 0.0
rank 132.0
rank_suf 82.0
rank_change -3.0
total_points 1115.37
result 1
rank_dif -50.0
points_by_rank 0.036585
team_points 3
country_classification Classe C
Name: 2454, dtype: object
date 2021-10-10 00:00:00
team Peru
score 0.0
suf_score 1.0
rank 21.0
rank_suf 83.0
rank_change -1.0
total_points 1548.78
result 0
rank_dif 62.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2455, dtype: object
date 2021-10-10 00:00:00
team Brazil
score 0.0
suf_score 0.0
rank 2.0
rank_suf 16.0
rank_change 0.0
total_points 1811.73
result 2
rank_dif 14.0
points_by_rank 0.0625
team_points 1
country_classification Classe S
Name: 2456, dtype: object
date 2021-10-10 00:00:00
team Ecuador
score 1.0
suf_score 2.0
rank 52.0
rank_suf 49.0
rank_change -3.0
total_points 1415.09
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2457, dtype: object
date 2021-10-10 00:00:00
team Uruguay
score 0.0
suf_score 3.0
rank 12.0
rank_suf 6.0
rank_change -1.0
total_points 1645.42
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2458, dtype: object
date 2021-10-10 00:00:00
team Paraguay
score 0.0
suf_score 2.0
rank 35.0
rank_suf 23.0
rank_change 2.0
total_points 1484.31
result 0
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2459, dtype: object
date 2021-10-10 00:00:00
team Sri Lanka
score 0.0
suf_score 1.0
rank 205.0
rank_suf 158.0
rank_change 0.0
total_points 846.54
result 0
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2460, dtype: object
date 2021-10-10 00:00:00
team India
score 1.0
suf_score 0.0
rank 107.0
rank_suf 168.0
rank_change 2.0
total_points 1181.45
result 1
rank_dif 61.0
points_by_rank 0.017857
team_points 3
country_classification Classe C
Name: 2461, dtype: object
date 2021-10-10 00:00:00
team Belgium
score 1.0
suf_score 2.0
rank 1.0
rank_suf 5.0
rank_change 0.0
total_points 1832.33
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 2462, dtype: object
date 2021-10-10 00:00:00
team France
score 2.0
suf_score 1.0
rank 4.0
rank_suf 8.0
rank_change 1.0
total_points 1754.31
result 1
rank_dif 4.0
points_by_rank 0.375
team_points 3
country_classification Classe S
Name: 2463, dtype: object
date 2021-10-11 00:00:00
team Czech Republic
score 2.0
suf_score 0.0
rank 31.0
rank_suf 90.0
rank_change 0.0
total_points 1494.78
result 1
rank_dif 59.0
points_by_rank 0.033333
team_points 3
country_classification Classe A
Name: 2464, dtype: object
date 2021-10-11 00:00:00
team Wales
score 1.0
suf_score 0.0
rank 19.0
rank_suf 111.0
rank_change 0.0
total_points 1563.59
result 1
rank_dif 92.0
points_by_rank 0.027027
team_points 3
country_classification Classe A
Name: 2465, dtype: object
date 2021-10-11 00:00:00
team Gibraltar
score 0.0
suf_score 6.0
rank 197.0
rank_suf 11.0
rank_change 3.0
total_points 867.7
result 0
rank_dif -186.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2466, dtype: object
date 2021-10-11 00:00:00
team Montenegro
score 0.0
suf_score 2.0
rank 71.0
rank_suf 39.0
rank_change 4.0
total_points 1352.83
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2467, dtype: object
date 2021-10-11 00:00:00
team Turkey
score 2.0
suf_score 1.0
rank 41.0
rank_suf 135.0
rank_change 2.0
total_points 1455.44
result 1
rank_dif 94.0
points_by_rank 0.022222
team_points 3
country_classification Classe A
Name: 2468, dtype: object
date 2021-10-11 00:00:00
team Malta
score 2.0
suf_score 2.0
rank 171.0
rank_suf 103.0
rank_change -6.0
total_points 963.16
result 2
rank_dif -68.0
points_by_rank 0.009709
team_points 1
country_classification Classe D
Name: 2469, dtype: object
date 2021-10-11 00:00:00
team Slovakia
score 2.0
suf_score 2.0
rank 38.0
rank_suf 17.0
rank_change 0.0
total_points 1462.59
result 2
rank_dif -21.0
points_by_rank 0.058824
team_points 1
country_classification Classe A
Name: 2470, dtype: object
date 2021-10-11 00:00:00
team Russia
score 2.0
suf_score 1.0
rank 37.0
rank_suf 64.0
rank_change -4.0
total_points 1475.43
result 1
rank_dif 27.0
points_by_rank 0.046875
team_points 3
country_classification Classe A
Name: 2471, dtype: object
date 2021-10-11 00:00:00
team Liechtenstein
score 0.0
suf_score 4.0
rank 188.0
rank_suf 60.0
rank_change -1.0
total_points 910.94
result 0
rank_dif -128.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2472, dtype: object
date 2021-10-11 00:00:00
team Germany
score 4.0
suf_score 0.0
rank 14.0
rank_suf 74.0
rank_change -2.0
total_points 1627.8
result 1
rank_dif 60.0
points_by_rank 0.040541
team_points 3
country_classification Classe S-
Name: 2473, dtype: object
date 2021-10-11 00:00:00
team Armenia
score 0.0
suf_score 1.0
rank 89.0
rank_suf 42.0
rank_change 1.0
total_points 1262.4
result 0
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2474, dtype: object
date 2021-10-11 00:00:00
team Djibouti
score 0.0
suf_score 2.0
rank 185.0
rank_suf 62.0
rank_change 3.0
total_points 912.57
result 0
rank_dif -123.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2475, dtype: object
date 2021-10-11 00:00:00
team Cameroon
score 1.0
suf_score 0.0
rank 58.0
rank_suf 116.0
rank_change 4.0
total_points 1404.46
result 1
rank_dif 58.0
points_by_rank 0.025862
team_points 3
country_classification Classe A
Name: 2476, dtype: object
date 2021-10-11 00:00:00
team Angola
score 0.0
suf_score 2.0
rank 129.0
rank_suf 88.0
rank_change 3.0
total_points 1118.12
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2477, dtype: object
date 2021-10-11 00:00:00
team Egypt
score 3.0
suf_score 0.0
rank 48.0
rank_suf 110.0
rank_change 2.0
total_points 1434.62
result 1
rank_dif 62.0
points_by_rank 0.027273
team_points 3
country_classification Classe A
Name: 2478, dtype: object
date 2021-10-12 00:00:00
team South Korea
score 1.0
suf_score 1.0
rank 36.0
rank_suf 22.0
rank_change 0.0
total_points 1479.41
result 2
rank_dif -14.0
points_by_rank 0.045455
team_points 1
country_classification Classe A
Name: 2479, dtype: object
date 2021-10-12 00:00:00
team Lebanon
score 3.0
suf_score 2.0
rank 97.0
rank_suf 81.0
rank_change -1.0
total_points 1233.61
result 1
rank_dif -16.0
points_by_rank 0.037037
team_points 3
country_classification Classe B
Name: 2480, dtype: object
date 2021-10-12 00:00:00
team Iraq
score 2.0
suf_score 2.0
rank 72.0
rank_suf 69.0
rank_change 2.0
total_points 1348.83
result 2
rank_dif -3.0
points_by_rank 0.014493
team_points 1
country_classification Classe B
Name: 2481, dtype: object
date 2021-10-12 00:00:00
team Australia
score 1.0
suf_score 2.0
rank 32.0
rank_suf 26.0
rank_change -3.0
total_points 1493.99
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2482, dtype: object
date 2021-10-12 00:00:00
team Vietnam
score 1.0
suf_score 3.0
rank 95.0
rank_suf 78.0
rank_change 3.0
total_points 1244.09
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2483, dtype: object
date 2021-10-12 00:00:00
team China PR
score 2.0
suf_score 3.0
rank 75.0
rank_suf 56.0
rank_change 4.0
total_points 1334.52
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2484, dtype: object
date 2021-10-12 00:00:00
team Luxembourg
score 0.0
suf_score 5.0
rank 94.0
rank_suf 7.0
rank_change -2.0
total_points 1244.55
result 0
rank_dif -87.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2485, dtype: object
date 2021-10-12 00:00:00
team Azerbaijan
score 1.0
suf_score 3.0
rank 117.0
rank_suf 28.0
rank_change 5.0
total_points 1158.46
result 0
rank_dif -89.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2486, dtype: object
date 2021-10-12 00:00:00
team Georgia
score 2.0
suf_score 1.0
rank 96.0
rank_suf 109.0
rank_change 5.0
total_points 1240.87
result 1
rank_dif 13.0
points_by_rank 0.027523
team_points 3
country_classification Classe B
Name: 2487, dtype: object
date 2021-10-12 00:00:00
team Greece
score 0.0
suf_score 2.0
rank 46.0
rank_suf 18.0
rank_change -2.0
total_points 1435.43
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2488, dtype: object
date 2021-10-12 00:00:00
team Northern Ireland
score 1.0
suf_score 2.0
rank 47.0
rank_suf 70.0
rank_change -4.0
total_points 1435.06
result 0
rank_dif 23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2489, dtype: object
date 2021-10-12 00:00:00
team Switzerland
score 4.0
suf_score 0.0
rank 15.0
rank_suf 137.0
rank_change 1.0
total_points 1622.73
result 1
rank_dif 122.0
points_by_rank 0.021898
team_points 3
country_classification Classe S-
Name: 2490, dtype: object
date 2021-10-12 00:00:00
team Finland
score 2.0
suf_score 0.0
rank 55.0
rank_suf 120.0
rank_change -1.0
total_points 1406.92
result 1
rank_dif 65.0
points_by_rank 0.025
team_points 3
country_classification Classe A
Name: 2491, dtype: object
date 2021-10-12 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 1.0
rank 57.0
rank_suf 27.0
rank_change -1.0
total_points 1405.3
result 2
rank_dif -30.0
points_by_rank 0.037037
team_points 1
country_classification Classe A
Name: 2492, dtype: object
date 2021-10-12 00:00:00
team Scotland
score 1.0
suf_score 0.0
rank 45.0
rank_suf 114.0
rank_change -4.0
total_points 1435.64
result 1
rank_dif 69.0
points_by_rank 0.026316
team_points 3
country_classification Classe A
Name: 2493, dtype: object
date 2021-10-12 00:00:00
team Austria
score 0.0
suf_score 1.0
rank 29.0
rank_suf 10.0
rank_change 6.0
total_points 1504.82
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2494, dtype: object
date 2021-10-12 00:00:00
team Moldova
score 1.0
suf_score 2.0
rank 180.0
rank_suf 80.0
rank_change 5.0
total_points 940.3
result 0
rank_dif -100.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2495, dtype: object
date 2021-10-12 00:00:00
team Hungary
score 1.0
suf_score 1.0
rank 40.0
rank_suf 3.0
rank_change 3.0
total_points 1456.93
result 2
rank_dif -37.0
points_by_rank 0.333333
team_points 1
country_classification Classe A
Name: 2496, dtype: object
date 2021-10-12 00:00:00
team Poland
score 1.0
suf_score 0.0
rank 24.0
rank_suf 66.0
rank_change -3.0
total_points 1531.82
result 1
rank_dif 42.0
points_by_rank 0.045455
team_points 3
country_classification Classe A
Name: 2497, dtype: object
date 2021-10-12 00:00:00
team Andorra
score 3.0
suf_score 0.0
rank 156.0
rank_suf 210.0
rank_change 0.0
total_points 1033.27
result 1
rank_dif 54.0
points_by_rank 0.014286
team_points 3
country_classification Classe C
Name: 2498, dtype: object
date 2021-10-12 00:00:00
team Algeria
score 4.0
suf_score 0.0
rank 30.0
rank_suf 119.0
rank_change 0.0
total_points 1498.62
result 1
rank_dif 89.0
points_by_rank 0.02521
team_points 3
country_classification Classe A
Name: 2499, dtype: object
date 2021-10-12 00:00:00
team Ghana
score 1.0
suf_score 0.0
rank 53.0
rank_suf 113.0
rank_change 1.0
total_points 1411.3
result 1
rank_dif 60.0
points_by_rank 0.026549
team_points 3
country_classification Classe A
Name: 2500, dtype: object
date 2021-10-12 00:00:00
team Ethiopia
score 0.0
suf_score 1.0
rank 134.0
rank_suf 73.0
rank_change -3.0
total_points 1092.74
result 0
rank_dif -61.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2501, dtype: object
date 2021-10-12 00:00:00
team Senegal
score 3.0
suf_score 1.0
rank 20.0
rank_suf 106.0
rank_change -1.0
total_points 1555.37
result 1
rank_dif 86.0
points_by_rank 0.028302
team_points 3
country_classification Classe A
Name: 2502, dtype: object
date 2021-10-12 00:00:00
team Togo
score 2.0
suf_score 1.0
rank 136.0
rank_suf 92.0
rank_change 5.0
total_points 1090.95
result 1
rank_dif -44.0
points_by_rank 0.032609
team_points 3
country_classification Classe C
Name: 2503, dtype: object
date 2021-10-12 00:00:00
team New Zealand
score 1.0
suf_score 0.0
rank 121.0
rank_suf 91.0
rank_change 2.0
total_points 1149.43
result 1
rank_dif -30.0
points_by_rank 0.032967
team_points 3
country_classification Classe C
Name: 2504, dtype: object
date 2021-10-12 00:00:00
team Uzbekistan
score 0.0
suf_score 3.0
rank 84.0
rank_suf 93.0
rank_change 1.0
total_points 1282.27
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2505, dtype: object
date 2021-10-12 00:00:00
team Qatar
score 0.0
suf_score 4.0
rank 43.0
rank_suf 50.0
rank_change 1.0
total_points 1445.83
result 0
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2506, dtype: object
date 2021-10-12 00:00:00
team Gambia
score 2.0
suf_score 1.0
rank 149.0
rank_suf 165.0
rank_change 1.0
total_points 1053.18
result 1
rank_dif 16.0
points_by_rank 0.018182
team_points 3
country_classification Classe C
Name: 2507, dtype: object
date 2021-10-12 00:00:00
team Guam
score 1.0
suf_score 2.0
rank 203.0
rank_suf 178.0
rank_change 0.0
total_points 858.49
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2508, dtype: object
date 2021-10-12 00:00:00
team Guinea
score 1.0
suf_score 4.0
rank 76.0
rank_suf 33.0
rank_change 0.0
total_points 1326.09
result 0
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2509, dtype: object
date 2021-10-13 00:00:00
team Jamaica
score 2.0
suf_score 0.0
rank 59.0
rank_suf 63.0
rank_change 9.0
total_points 1402.39
result 1
rank_dif 4.0
points_by_rank 0.047619
team_points 3
country_classification Classe A
Name: 2510, dtype: object
date 2021-10-13 00:00:00
team Costa Rica
score 1.0
suf_score 2.0
rank 44.0
rank_suf 13.0
rank_change 0.0
total_points 1438.29
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2511, dtype: object
date 2021-10-13 00:00:00
team Panama
score 1.0
suf_score 4.0
rank 68.0
rank_suf 51.0
rank_change -6.0
total_points 1358.77
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2512, dtype: object
date 2021-10-13 00:00:00
team Mexico
score 2.0
suf_score 0.0
rank 9.0
rank_suf 65.0
rank_change 0.0
total_points 1666.19
result 1
rank_dif 56.0
points_by_rank 0.046154
team_points 3
country_classification Classe S-
Name: 2513, dtype: object
date 2021-10-13 00:00:00
team Nepal
score 1.0
suf_score 1.0
rank 168.0
rank_suf 189.0
rank_change 0.0
total_points 970.95
result 2
rank_dif 21.0
points_by_rank 0.005291
team_points 1
country_classification Classe D
Name: 2514, dtype: object
date 2021-10-13 00:00:00
team India
score 3.0
suf_score 1.0
rank 107.0
rank_suf 158.0
rank_change 2.0
total_points 1181.45
result 1
rank_dif 51.0
points_by_rank 0.018987
team_points 3
country_classification Classe C
Name: 2515, dtype: object
date 2021-10-14 00:00:00
team Paraguay
score 0.0
suf_score 4.0
rank 35.0
rank_suf 83.0
rank_change 2.0
total_points 1484.31
result 0
rank_dif 48.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2516, dtype: object
date 2021-10-14 00:00:00
team Ecuador
score 0.0
suf_score 0.0
rank 52.0
rank_suf 16.0
rank_change -3.0
total_points 1415.09
result 2
rank_dif -36.0
points_by_rank 0.0625
team_points 1
country_classification Classe A
Name: 2517, dtype: object
date 2021-10-14 00:00:00
team Peru
score 0.0
suf_score 1.0
rank 21.0
rank_suf 6.0
rank_change -1.0
total_points 1548.78
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2518, dtype: object
date 2021-10-14 00:00:00
team Uruguay
score 1.0
suf_score 4.0
rank 12.0
rank_suf 2.0
rank_change -1.0
total_points 1645.42
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2519, dtype: object
date 2021-10-14 00:00:00
team Venezuela
score 0.0
suf_score 3.0
rank 49.0
rank_suf 23.0
rank_change 9.0
total_points 1434.14
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2520, dtype: object
date 2021-10-16 00:00:00
team Nepal
score 0.0
suf_score 3.0
rank 168.0
rank_suf 107.0
rank_change 0.0
total_points 970.95
result 0
rank_dif -61.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2521, dtype: object
date 2021-10-27 00:00:00
team Ecuador
score 3.0
suf_score 2.0
rank 55.0
rank_suf 9.0
rank_change 3.0
total_points 1416.93
result 1
rank_dif -46.0
points_by_rank 0.333333
team_points 3
country_classification Classe A
Name: 2522, dtype: object
date 2021-11-05 00:00:00
team Bolivia
score 1.0
suf_score 0.0
rank 78.0
rank_suf 65.0
rank_change -5.0
total_points 1309.75
result 1
rank_dif -13.0
points_by_rank 0.046154
team_points 3
country_classification Classe B
Name: 2523, dtype: object
date 2021-11-09 00:00:00
team Maldives
score 4.0
suf_score 4.0
rank 156.0
rank_suf 204.0
rank_change -2.0
total_points 1030.92
result 2
rank_dif 48.0
points_by_rank 0.004902
team_points 1
country_classification Classe C
Name: 2524, dtype: object
date 2021-11-10 00:00:00
team Jordan
score 2.0
suf_score 0.0
rank 90.0
rank_suf 113.0
rank_change -3.0
total_points 1254.12
result 1
rank_dif 23.0
points_by_rank 0.026549
team_points 3
country_classification Classe B
Name: 2525, dtype: object
date 2021-11-10 00:00:00
team Cuba
score 3.0
suf_score 0.0
rank 179.0
rank_suf 143.0
rank_change 0.0
total_points 946.86
result 1
rank_dif -36.0
points_by_rank 0.020979
team_points 3
country_classification Classe D
Name: 2526, dtype: object
date 2021-11-10 00:00:00
team Seychelles
score 1.0
suf_score 1.0
rank 199.0
rank_suf 187.0
rank_change 0.0
total_points 862.84
result 2
rank_dif -12.0
points_by_rank 0.005348
team_points 1
country_classification Classe D
Name: 2527, dtype: object
date 2021-11-11 00:00:00
team Kuwait
score 0.0
suf_score 7.0
rank 142.0
rank_suf 31.0
rank_change 0.0
total_points 1065.31
result 0
rank_dif -111.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2528, dtype: object
date 2021-11-11 00:00:00
team Qatar
score 0.0
suf_score 4.0
rank 46.0
rank_suf 25.0
rank_change 3.0
total_points 1437.73
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2529, dtype: object
date 2021-11-11 00:00:00
team Bulgaria
score 1.0
suf_score 1.0
rank 70.0
rank_suf 26.0
rank_change 0.0
total_points 1350.11
result 2
rank_dif -44.0
points_by_rank 0.038462
team_points 1
country_classification Classe B
Name: 2530, dtype: object
date 2021-11-11 00:00:00
team Kenya
score 1.0
suf_score 1.0
rank 104.0
rank_suf 82.0
rank_change 2.0
total_points 1189.24
result 2
rank_dif -22.0
points_by_rank 0.012195
team_points 1
country_classification Classe C
Name: 2531, dtype: object
date 2021-11-11 00:00:00
team Mali
score 3.0
suf_score 0.0
rank 57.0
rank_suf 133.0
rank_change -4.0
total_points 1412.39
result 1
rank_dif 76.0
points_by_rank 0.022556
team_points 3
country_classification Classe A
Name: 2532, dtype: object
date 2021-11-11 00:00:00
team Ghana
score 1.0
suf_score 1.0
rank 52.0
rank_suf 137.0
rank_change -1.0
total_points 1424.87
result 2
rank_dif 85.0
points_by_rank 0.007299
team_points 1
country_classification Classe A
Name: 2533, dtype: object
date 2021-11-11 00:00:00
team Zimbabwe
score 0.0
suf_score 1.0
rank 118.0
rank_suf 66.0
rank_change 5.0
total_points 1147.34
result 0
rank_dif -52.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2534, dtype: object
date 2021-11-11 00:00:00
team Namibia
score 1.0
suf_score 1.0
rank 108.0
rank_suf 97.0
rank_change 2.0
total_points 1175.54
result 2
rank_dif -11.0
points_by_rank 0.010309
team_points 1
country_classification Classe C
Name: 2535, dtype: object
date 2021-11-11 00:00:00
team Senegal
score 1.0
suf_score 1.0
rank 20.0
rank_suf 134.0
rank_change 0.0
total_points 1564.95
result 2
rank_dif 114.0
points_by_rank 0.007463
team_points 1
country_classification Classe A
Name: 2536, dtype: object
date 2021-11-11 00:00:00
team Madagascar
score 0.0
suf_score 2.0
rank 99.0
rank_suf 83.0
rank_change -1.0
total_points 1218.76
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2537, dtype: object
date 2021-11-11 00:00:00
team Iran
score 2.0
suf_score 1.0
rank 22.0
rank_suf 92.0
rank_change 0.0
total_points 1545.02
result 1
rank_dif 70.0
points_by_rank 0.032609
team_points 3
country_classification Classe A
Name: 2538, dtype: object
date 2021-11-11 00:00:00
team Syria
score 1.0
suf_score 1.0
rank 85.0
rank_suf 72.0
rank_change 4.0
total_points 1274.72
result 2
rank_dif -13.0
points_by_rank 0.013889
team_points 1
country_classification Classe B
Name: 2539, dtype: object
date 2021-11-11 00:00:00
team United Arab Emirates
score 0.0
suf_score 1.0
rank 71.0
rank_suf 35.0
rank_change 2.0
total_points 1349.42
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2540, dtype: object
date 2021-11-11 00:00:00
team Oman
score 1.0
suf_score 1.0
rank 77.0
rank_suf 75.0
rank_change -1.0
total_points 1314.36
result 2
rank_dif -2.0
points_by_rank 0.013333
team_points 1
country_classification Classe B
Name: 2541, dtype: object
date 2021-11-11 00:00:00
team Japan
score 1.0
suf_score 0.0
rank 28.0
rank_suf 98.0
rank_change 2.0
total_points 1517.69
result 1
rank_dif 70.0
points_by_rank 0.030612
team_points 3
country_classification Classe A
Name: 2542, dtype: object
date 2021-11-11 00:00:00
team Saudi Arabia
score 0.0
suf_score 0.0
rank 49.0
rank_suf 34.0
rank_change -7.0
total_points 1432.21
result 2
rank_dif -15.0
points_by_rank 0.029412
team_points 1
country_classification Classe A
Name: 2543, dtype: object
date 2021-11-11 00:00:00
team Portugal
score 0.0
suf_score 0.0
rank 8.0
rank_suf 51.0
rank_change 1.0
total_points 1681.73
result 2
rank_dif 43.0
points_by_rank 0.019608
team_points 1
country_classification Classe S-
Name: 2544, dtype: object
date 2021-11-11 00:00:00
team Luxembourg
score 3.0
suf_score 1.0
rank 94.0
rank_suf 119.0
rank_change 0.0
total_points 1234.13
result 1
rank_dif 25.0
points_by_rank 0.02521
team_points 3
country_classification Classe B
Name: 2545, dtype: object
date 2021-11-11 00:00:00
team Sweden
score 0.0
suf_score 2.0
rank 17.0
rank_suf 93.0
rank_change -1.0
total_points 1618.69
result 0
rank_dif 76.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2546, dtype: object
date 2021-11-11 00:00:00
team Spain
score 1.0
suf_score 0.0
rank 7.0
rank_suf 47.0
rank_change -1.0
total_points 1687.66
result 1
rank_dif 40.0
points_by_rank 0.06383
team_points 3
country_classification Classe S-
Name: 2547, dtype: object
date 2021-11-11 00:00:00
team Cyprus
score 0.0
suf_score 6.0
rank 103.0
rank_suf 33.0
rank_change 0.0
total_points 1192.92
result 0
rank_dif -70.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2548, dtype: object
date 2021-11-11 00:00:00
team Croatia
score 7.0
suf_score 1.0
rank 18.0
rank_suf 173.0
rank_change 1.0
total_points 1608.84
result 1
rank_dif 155.0
points_by_rank 0.017341
team_points 3
country_classification Classe S-
Name: 2549, dtype: object
date 2021-11-11 00:00:00
team Slovenia
score 2.0
suf_score 2.0
rank 64.0
rank_suf 40.0
rank_change 0.0
total_points 1364.96
result 2
rank_dif -24.0
points_by_rank 0.025
team_points 1
country_classification Classe B
Name: 2550, dtype: object
date 2021-11-11 00:00:00
team Liechtenstein
score 0.0
suf_score 9.0
rank 190.0
rank_suf 12.0
rank_change 2.0
total_points 903.63
result 0
rank_dif -178.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2551, dtype: object
date 2021-11-11 00:00:00
team North Macedonia
score 5.0
suf_score 0.0
rank 74.0
rank_suf 89.0
rank_change 0.0
total_points 1343.19
result 1
rank_dif 15.0
points_by_rank 0.033708
team_points 3
country_classification Classe B
Name: 2552, dtype: object
date 2021-11-11 00:00:00
team Iceland
score 0.0
suf_score 0.0
rank 62.0
rank_suf 41.0
rank_change 2.0
total_points 1397.49
result 2
rank_dif -21.0
points_by_rank 0.02439
team_points 1
country_classification Classe B
Name: 2553, dtype: object
date 2021-11-11 00:00:00
team Venezuela
score 0.0
suf_score 1.0
rank 50.0
rank_suf 55.0
rank_change 1.0
total_points 1431.51
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2554, dtype: object
date 2021-11-11 00:00:00
team Chile
score 1.0
suf_score 0.0
rank 21.0
rank_suf 38.0
rank_change -2.0
total_points 1546.26
result 1
rank_dif 17.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 2555, dtype: object
date 2021-11-11 00:00:00
team Bolivia
score 0.0
suf_score 3.0
rank 78.0
rank_suf 24.0
rank_change -5.0
total_points 1309.75
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2556, dtype: object
date 2021-11-11 00:00:00
team Colombia
score 0.0
suf_score 1.0
rank 16.0
rank_suf 2.0
rank_change 0.0
total_points 1618.76
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2557, dtype: object
date 2021-11-12 00:00:00
team Niger
score 1.0
suf_score 1.0
rank 121.0
rank_suf 61.0
rank_change 2.0
total_points 1145.75
result 2
rank_dif -60.0
points_by_rank 0.016393
team_points 1
country_classification Classe C
Name: 2558, dtype: object
date 2021-11-12 00:00:00
team Algeria
score 4.0
suf_score 0.0
rank 30.0
rank_suf 188.0
rank_change 0.0
total_points 1509.04
result 1
rank_dif 158.0
points_by_rank 0.015957
team_points 3
country_classification Classe A
Name: 2559, dtype: object
date 2021-11-12 00:00:00
team Libya
score 0.0
suf_score 1.0
rank 112.0
rank_suf 88.0
rank_change 2.0
total_points 1161.71
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2560, dtype: object
date 2021-11-12 00:00:00
team Egypt
score 2.0
suf_score 2.0
rank 44.0
rank_suf 129.0
rank_change -4.0
total_points 1447.85
result 2
rank_dif 85.0
points_by_rank 0.007752
team_points 1
country_classification Classe A
Name: 2561, dtype: object
date 2021-11-12 00:00:00
team Guinea-Bissau
score 0.0
suf_score 0.0
rank 109.0
rank_suf 79.0
rank_change 4.0
total_points 1175.03
result 2
rank_dif -30.0
points_by_rank 0.012658
team_points 1
country_classification Classe C
Name: 2562, dtype: object
date 2021-11-12 00:00:00
team Sudan
score 0.0
suf_score 3.0
rank 123.0
rank_suf 29.0
rank_change -4.0
total_points 1139.67
result 0
rank_dif -94.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2563, dtype: object
date 2021-11-12 00:00:00
team Costa Rica
score 0.0
suf_score 1.0
rank 45.0
rank_suf 48.0
rank_change 1.0
total_points 1439.61
result 0
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2564, dtype: object
date 2021-11-12 00:00:00
team Panama
score 3.0
suf_score 2.0
rank 69.0
rank_suf 68.0
rank_change 1.0
total_points 1354.42
result 1
rank_dif -1.0
points_by_rank 0.044118
team_points 3
country_classification Classe B
Name: 2565, dtype: object
date 2021-11-12 00:00:00
team Jamaica
score 1.0
suf_score 1.0
rank 59.0
rank_suf 65.0
rank_change 0.0
total_points 1407.72
result 2
rank_dif 6.0
points_by_rank 0.015385
team_points 1
country_classification Classe A
Name: 2566, dtype: object
date 2021-11-12 00:00:00
team Mexico
score 0.0
suf_score 2.0
rank 9.0
rank_suf 13.0
rank_change 0.0
total_points 1672.92
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2567, dtype: object
date 2021-11-12 00:00:00
team Lithuania
score 0.0
suf_score 1.0
rank 135.0
rank_suf 58.0
rank_change -2.0
total_points 1097.8
result 0
rank_dif -77.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2568, dtype: object
date 2021-11-12 00:00:00
team Switzerland
score 1.0
suf_score 1.0
rank 14.0
rank_suf 4.0
rank_change -1.0
total_points 1633.8
result 2
rank_dif -10.0
points_by_rank 0.25
team_points 1
country_classification Classe S-
Name: 2569, dtype: object
date 2021-11-12 00:00:00
team Scotland
score 2.0
suf_score 0.0
rank 42.0
rank_suf 181.0
rank_change -3.0
total_points 1451.37
result 1
rank_dif 139.0
points_by_rank 0.016575
team_points 3
country_classification Classe A
Name: 2570, dtype: object
date 2021-11-12 00:00:00
team Faroe Islands
score 1.0
suf_score 3.0
rank 116.0
rank_suf 10.0
rank_change 2.0
total_points 1148.94
result 0
rank_dif -106.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2571, dtype: object
date 2021-11-12 00:00:00
team Israel
score 2.0
suf_score 4.0
rank 80.0
rank_suf 32.0
rank_change 0.0
total_points 1305.76
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2572, dtype: object
date 2021-11-12 00:00:00
team Albania
score 0.0
suf_score 5.0
rank 63.0
rank_suf 5.0
rank_change -3.0
total_points 1374.33
result 0
rank_dif -58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2573, dtype: object
date 2021-11-12 00:00:00
team Poland
score 4.0
suf_score 1.0
rank 23.0
rank_suf 153.0
rank_change -1.0
total_points 1542.2
result 1
rank_dif 130.0
points_by_rank 0.019608
team_points 3
country_classification Classe A
Name: 2574, dtype: object
date 2021-11-12 00:00:00
team San Marino
score 0.0
suf_score 4.0
rank 210.0
rank_suf 43.0
rank_change 0.0
total_points 782.71
result 0
rank_dif -167.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2575, dtype: object
date 2021-11-12 00:00:00
team Argentina
score 1.0
suf_score 0.0
rank 6.0
rank_suf 15.0
rank_change 0.0
total_points 1738.79
result 1
rank_dif 9.0
points_by_rank 0.2
team_points 3
country_classification Classe S
Name: 2576, dtype: object
date 2021-11-13 00:00:00
team Myanmar
score 1.0
suf_score 2.0
rank 145.0
rank_suf 141.0
rank_change -1.0
total_points 1057.44
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2577, dtype: object
date 2021-11-13 00:00:00
team Cuba
score 0.0
suf_score 2.0
rank 179.0
rank_suf 143.0
rank_change 0.0
total_points 946.86
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2578, dtype: object
date 2021-11-13 00:00:00
team Comoros
score 2.0
suf_score 0.0
rank 132.0
rank_suf 107.0
rank_change -1.0
total_points 1112.0
result 1
rank_dif -25.0
points_by_rank 0.028037
team_points 3
country_classification Classe C
Name: 2579, dtype: object
date 2021-11-13 00:00:00
team Maldives
score 1.0
suf_score 2.0
rank 156.0
rank_suf 187.0
rank_change -2.0
total_points 1030.92
result 0
rank_dif 31.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2580, dtype: object
date 2021-11-13 00:00:00
team Seychelles
score 1.0
suf_score 0.0
rank 199.0
rank_suf 204.0
rank_change 0.0
total_points 862.84
result 1
rank_dif 5.0
points_by_rank 0.014706
team_points 3
country_classification Classe D
Name: 2581, dtype: object
date 2021-11-13 00:00:00
team Mauritania
score 0.0
suf_score 4.0
rank 102.0
rank_suf 87.0
rank_change -2.0
total_points 1202.17
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2582, dtype: object
date 2021-11-13 00:00:00
team Tunisia
score 0.0
suf_score 1.0
rank 27.0
rank_suf 126.0
rank_change 2.0
total_points 1525.3
result 0
rank_dif 99.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2583, dtype: object
date 2021-11-13 00:00:00
team Nigeria
score 2.0
suf_score 0.0
rank 36.0
rank_suf 150.0
rank_change 2.0
total_points 1478.18
result 1
rank_dif 114.0
points_by_rank 0.02
team_points 3
country_classification Classe A
Name: 2584, dtype: object
date 2021-11-13 00:00:00
team Cameroon
score 4.0
suf_score 0.0
rank 54.0
rank_suf 120.0
rank_change -4.0
total_points 1418.21
result 1
rank_dif 66.0
points_by_rank 0.025
team_points 3
country_classification Classe A
Name: 2585, dtype: object
date 2021-11-13 00:00:00
team Finland
score 3.0
suf_score 1.0
rank 60.0
rank_suf 56.0
rank_change 5.0
total_points 1403.96
result 1
rank_dif -4.0
points_by_rank 0.053571
team_points 3
country_classification Classe A
Name: 2586, dtype: object
date 2021-11-13 00:00:00
team Kazakhstan
score 0.0
suf_score 8.0
rank 125.0
rank_suf 3.0
rank_change 5.0
total_points 1137.46
result 0
rank_dif -122.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2587, dtype: object
date 2021-11-13 00:00:00
team Belarus
score 1.0
suf_score 5.0
rank 95.0
rank_suf 19.0
rank_change 5.0
total_points 1233.59
result 0
rank_dif -76.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2588, dtype: object
date 2021-11-13 00:00:00
team Estonia
score 1.0
suf_score 3.0
rank 105.0
rank_suf 1.0
rank_change -6.0
total_points 1184.03
result 0
rank_dif -104.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2589, dtype: object
date 2021-11-13 00:00:00
team Latvia
score 0.0
suf_score 0.0
rank 136.0
rank_suf 37.0
rank_change 1.0
total_points 1084.88
result 2
rank_dif -99.0
points_by_rank 0.027027
team_points 1
country_classification Classe C
Name: 2590, dtype: object
date 2021-11-13 00:00:00
team Gibraltar
score 0.0
suf_score 6.0
rank 198.0
rank_suf 39.0
rank_change 1.0
total_points 863.17
result 0
rank_dif -159.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2591, dtype: object
date 2021-11-13 00:00:00
team Netherlands
score 2.0
suf_score 2.0
rank 11.0
rank_suf 73.0
rank_change 0.0
total_points 1652.01
result 2
rank_dif 62.0
points_by_rank 0.013699
team_points 1
country_classification Classe S-
Name: 2592, dtype: object
date 2021-11-14 00:00:00
team Qatar
score 2.0
suf_score 2.0
rank 46.0
rank_suf 119.0
rank_change 3.0
total_points 1437.73
result 2
rank_dif 73.0
points_by_rank 0.008403
team_points 1
country_classification Classe A
Name: 2593, dtype: object
date 2021-11-14 00:00:00
team Cuba
score 0.0
suf_score 2.0
rank 179.0
rank_suf 143.0
rank_change 0.0
total_points 946.86
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2594, dtype: object
date 2021-11-14 00:00:00
team Uganda
score 0.0
suf_score 1.0
rank 82.0
rank_suf 57.0
rank_change -4.0
total_points 1297.43
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2595, dtype: object
date 2021-11-14 00:00:00
team Ethiopia
score 1.0
suf_score 1.0
rank 137.0
rank_suf 118.0
rank_change 3.0
total_points 1079.37
result 2
rank_dif -19.0
points_by_rank 0.008475
team_points 1
country_classification Classe C
Name: 2596, dtype: object
date 2021-11-14 00:00:00
team South Africa
score 0.0
suf_score 1.0
rank 66.0
rank_suf 52.0
rank_change -7.0
total_points 1361.97
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2597, dtype: object
date 2021-11-14 00:00:00
team Congo
score 0.0
suf_score 2.0
rank 97.0
rank_suf 20.0
rank_change 5.0
total_points 1228.16
result 0
rank_dif -77.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2598, dtype: object
date 2021-11-14 00:00:00
team Tanzania
score 1.0
suf_score 1.0
rank 130.0
rank_suf 99.0
rank_change -2.0
total_points 1123.84
result 2
rank_dif -31.0
points_by_rank 0.010101
team_points 1
country_classification Classe C
Name: 2599, dtype: object
date 2021-11-14 00:00:00
team Serbia
score 2.0
suf_score 1.0
rank 25.0
rank_suf 8.0
rank_change -3.0
total_points 1527.34
result 1
rank_dif -17.0
points_by_rank 0.375
team_points 3
country_classification Classe A
Name: 2600, dtype: object
date 2021-11-14 00:00:00
team Republic of Ireland
score 3.0
suf_score 0.0
rank 51.0
rank_suf 94.0
rank_change 1.0
total_points 1430.59
result 1
rank_dif 43.0
points_by_rank 0.031915
team_points 3
country_classification Classe A
Name: 2601, dtype: object
date 2021-11-14 00:00:00
team Sweden
score 0.0
suf_score 1.0
rank 17.0
rank_suf 7.0
rank_change -1.0
total_points 1618.69
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2602, dtype: object
date 2021-11-14 00:00:00
team Kosovo
score 1.0
suf_score 1.0
rank 113.0
rank_suf 47.0
rank_change 4.0
total_points 1161.19
result 2
rank_dif -66.0
points_by_rank 0.021277
team_points 1
country_classification Classe C
Name: 2603, dtype: object
date 2021-11-14 00:00:00
team Russia
score 0.0
suf_score 1.0
rank 33.0
rank_suf 18.0
rank_change -4.0
total_points 1497.45
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2604, dtype: object
date 2021-11-14 00:00:00
team Slovakia
score 6.0
suf_score 0.0
rank 40.0
rank_suf 173.0
rank_change 2.0
total_points 1454.16
result 1
rank_dif 133.0
points_by_rank 0.017341
team_points 3
country_classification Classe A
Name: 2605, dtype: object
date 2021-11-14 00:00:00
team Cyprus
score 1.0
suf_score 2.0
rank 103.0
rank_suf 64.0
rank_change 0.0
total_points 1192.92
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2606, dtype: object
date 2021-11-14 00:00:00
team Romania
score 2.0
suf_score 0.0
rank 41.0
rank_suf 190.0
rank_change -1.0
total_points 1451.76
result 1
rank_dif 149.0
points_by_rank 0.015789
team_points 3
country_classification Classe A
Name: 2607, dtype: object
date 2021-11-14 00:00:00
team Iceland
score 1.0
suf_score 3.0
rank 62.0
rank_suf 74.0
rank_change 2.0
total_points 1397.49
result 0
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2608, dtype: object
date 2021-11-14 00:00:00
team Germany
score 4.0
suf_score 1.0
rank 12.0
rank_suf 89.0
rank_change -2.0
total_points 1642.47
result 1
rank_dif 77.0
points_by_rank 0.033708
team_points 3
country_classification Classe S-
Name: 2609, dtype: object
date 2021-11-15 00:00:00
team Uzbekistan
score 0.0
suf_score 1.0
rank 84.0
rank_suf 93.0
rank_change 0.0
total_points 1279.73
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2610, dtype: object
date 2021-11-15 00:00:00
team Kuwait
score 1.0
suf_score 1.0
rank 142.0
rank_suf 135.0
rank_change 0.0
total_points 1065.31
result 2
rank_dif -7.0
points_by_rank 0.007407
team_points 1
country_classification Classe C
Name: 2611, dtype: object
date 2021-11-15 00:00:00
team Djibouti
score 2.0
suf_score 7.0
rank 188.0
rank_suf 121.0
rank_change 3.0
total_points 905.83
result 0
rank_dif -67.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2612, dtype: object
date 2021-11-15 00:00:00
team Rwanda
score 1.0
suf_score 2.0
rank 133.0
rank_suf 104.0
rank_change 5.0
total_points 1111.79
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2613, dtype: object
date 2021-11-15 00:00:00
team Togo
score 1.0
suf_score 0.0
rank 134.0
rank_suf 108.0
rank_change -2.0
total_points 1110.59
result 1
rank_dif -26.0
points_by_rank 0.027778
team_points 3
country_classification Classe C
Name: 2614, dtype: object
date 2021-11-15 00:00:00
team Sudan
score 0.0
suf_score 0.0
rank 123.0
rank_suf 109.0
rank_change -4.0
total_points 1139.67
result 2
rank_dif -14.0
points_by_rank 0.009174
team_points 1
country_classification Classe C
Name: 2615, dtype: object
date 2021-11-15 00:00:00
team Italy
score 0.0
suf_score 0.0
rank 4.0
rank_suf 58.0
rank_change -1.0
total_points 1750.52
result 2
rank_dif 54.0
points_by_rank 0.017241
team_points 1
country_classification Classe S
Name: 2616, dtype: object
date 2021-11-15 00:00:00
team Bulgaria
score 0.0
suf_score 4.0
rank 70.0
rank_suf 14.0
rank_change 0.0
total_points 1350.11
result 0
rank_dif -56.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2617, dtype: object
date 2021-11-15 00:00:00
team Denmark
score 0.0
suf_score 2.0
rank 10.0
rank_suf 42.0
rank_change 0.0
total_points 1668.98
result 0
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2618, dtype: object
date 2021-11-15 00:00:00
team Moldova
score 1.0
suf_score 4.0
rank 181.0
rank_suf 32.0
rank_change 1.0
total_points 933.81
result 0
rank_dif -149.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2619, dtype: object
date 2021-11-15 00:00:00
team Faroe Islands
score 2.0
suf_score 3.0
rank 116.0
rank_suf 80.0
rank_change 2.0
total_points 1148.94
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2620, dtype: object
date 2021-11-15 00:00:00
team Andorra
score 0.0
suf_score 1.0
rank 153.0
rank_suf 63.0
rank_change -3.0
total_points 1038.88
result 0
rank_dif -90.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2621, dtype: object
date 2021-11-15 00:00:00
team Hungary
score 2.0
suf_score 1.0
rank 43.0
rank_suf 23.0
rank_change 3.0
total_points 1449.08
result 1
rank_dif -20.0
points_by_rank 0.130435
team_points 3
country_classification Classe A
Name: 2622, dtype: object
date 2021-11-15 00:00:00
team England
score 10.0
suf_score 0.0
rank 5.0
rank_suf 210.0
rank_change 2.0
total_points 1750.16
result 1
rank_dif 205.0
points_by_rank 0.014286
team_points 3
country_classification Classe S
Name: 2623, dtype: object
date 2021-11-16 00:00:00
team Jordan
score 0.0
suf_score 1.0
rank 90.0
rank_suf 95.0
rank_change -3.0
total_points 1254.12
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2624, dtype: object
date 2021-11-16 00:00:00
team Tajikistan
score 0.0
suf_score 1.0
rank 114.0
rank_suf 125.0
rank_change -4.0
total_points 1157.77
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2625, dtype: object
date 2021-11-16 00:00:00
team Gambia
score 0.0
suf_score 2.0
rank 147.0
rank_suf 111.0
rank_change -2.0
total_points 1053.72
result 0
rank_dif -36.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2626, dtype: object
date 2021-11-16 00:00:00
team Afghanistan
score 1.0
suf_score 0.0
rank 152.0
rank_suf 165.0
rank_change -1.0
total_points 1045.34
result 1
rank_dif 13.0
points_by_rank 0.018182
team_points 3
country_classification Classe C
Name: 2627, dtype: object
date 2021-11-16 00:00:00
team Seychelles
score 0.0
suf_score 0.0
rank 199.0
rank_suf 156.0
rank_change 0.0
total_points 862.84
result 2
rank_dif -43.0
points_by_rank 0.00641
team_points 1
country_classification Classe D
Name: 2628, dtype: object
date 2021-11-16 00:00:00
team Bangladesh
score 1.0
suf_score 2.0
rank 187.0
rank_suf 204.0
rank_change -2.0
total_points 907.84
result 0
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2629, dtype: object
date 2021-11-16 00:00:00
team Burkina Faso
score 2.0
suf_score 2.0
rank 61.0
rank_suf 30.0
rank_change -1.0
total_points 1400.56
result 2
rank_dif -31.0
points_by_rank 0.033333
team_points 1
country_classification Classe A
Name: 2630, dtype: object
date 2021-11-16 00:00:00
team Equatorial Guinea
score 1.0
suf_score 1.0
rank 126.0
rank_suf 102.0
rank_change -5.0
total_points 1135.52
result 2
rank_dif -24.0
points_by_rank 0.009804
team_points 1
country_classification Classe C
Name: 2631, dtype: object
date 2021-11-16 00:00:00
team Zambia
score 1.0
suf_score 3.0
rank 87.0
rank_suf 27.0
rank_change 2.0
total_points 1260.8
result 0
rank_dif -60.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2632, dtype: object
date 2021-11-16 00:00:00
team Central African Republic
score 1.0
suf_score 3.0
rank 115.0
rank_suf 150.0
rank_change -9.0
total_points 1150.45
result 0
rank_dif 35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2633, dtype: object
date 2021-11-16 00:00:00
team Malawi
score 0.0
suf_score 1.0
rank 120.0
rank_suf 122.0
rank_change 5.0
total_points 1146.25
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2634, dtype: object
date 2021-11-16 00:00:00
team Gabon
score 1.0
suf_score 2.0
rank 88.0
rank_suf 44.0
rank_change 0.0
total_points 1260.39
result 0
rank_dif -44.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2635, dtype: object
date 2021-11-16 00:00:00
team Angola
score 1.0
suf_score 1.0
rank 129.0
rank_suf 112.0
rank_change 0.0
total_points 1124.33
result 2
rank_dif -17.0
points_by_rank 0.008929
team_points 1
country_classification Classe C
Name: 2636, dtype: object
date 2021-11-16 00:00:00
team Guinea
score 0.0
suf_score 3.0
rank 79.0
rank_suf 29.0
rank_change 3.0
total_points 1309.15
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2637, dtype: object
date 2021-11-16 00:00:00
team United Arab Emirates
score 1.0
suf_score 0.0
rank 71.0
rank_suf 92.0
rank_change 2.0
total_points 1349.42
result 1
rank_dif 21.0
points_by_rank 0.032609
team_points 3
country_classification Classe B
Name: 2638, dtype: object
date 2021-11-16 00:00:00
team South Korea
score 3.0
suf_score 0.0
rank 35.0
rank_suf 72.0
rank_change -1.0
total_points 1489.1
result 1
rank_dif 37.0
points_by_rank 0.041667
team_points 3
country_classification Classe A
Name: 2639, dtype: object
date 2021-11-16 00:00:00
team Iran
score 3.0
suf_score 0.0
rank 22.0
rank_suf 85.0
rank_change 0.0
total_points 1545.02
result 1
rank_dif 63.0
points_by_rank 0.035294
team_points 3
country_classification Classe A
Name: 2640, dtype: object
date 2021-11-16 00:00:00
team Australia
score 1.0
suf_score 1.0
rank 34.0
rank_suf 75.0
rank_change 2.0
total_points 1489.86
result 2
rank_dif 41.0
points_by_rank 0.013333
team_points 1
country_classification Classe A
Name: 2641, dtype: object
date 2021-11-16 00:00:00
team Saudi Arabia
score 1.0
suf_score 0.0
rank 49.0
rank_suf 98.0
rank_change -7.0
total_points 1432.21
result 1
rank_dif 49.0
points_by_rank 0.030612
team_points 3
country_classification Classe A
Name: 2642, dtype: object
date 2021-11-16 00:00:00
team Japan
score 1.0
suf_score 0.0
rank 28.0
rank_suf 77.0
rank_change 2.0
total_points 1517.69
result 1
rank_dif 49.0
points_by_rank 0.038961
team_points 3
country_classification Classe A
Name: 2643, dtype: object
date 2021-11-16 00:00:00
team United States
score 1.0
suf_score 1.0
rank 13.0
rank_suf 59.0
rank_change 0.0
total_points 1639.42
result 2
rank_dif 46.0
points_by_rank 0.016949
team_points 1
country_classification Classe S-
Name: 2644, dtype: object
date 2021-11-16 00:00:00
team Mexico
score 1.0
suf_score 2.0
rank 9.0
rank_suf 48.0
rank_change 0.0
total_points 1672.92
result 0
rank_dif 39.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2645, dtype: object
date 2021-11-16 00:00:00
team Honduras
score 1.0
suf_score 2.0
rank 68.0
rank_suf 45.0
rank_change 5.0
total_points 1355.17
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2646, dtype: object
date 2021-11-16 00:00:00
team El Salvador
score 1.0
suf_score 2.0
rank 65.0
rank_suf 69.0
rank_change 0.0
total_points 1364.7
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2647, dtype: object
date 2021-11-16 00:00:00
team Ukraine
score 2.0
suf_score 0.0
rank 26.0
rank_suf 56.0
rank_change -1.0
total_points 1527.12
result 1
rank_dif 30.0
points_by_rank 0.053571
team_points 3
country_classification Classe A
Name: 2648, dtype: object
date 2021-11-16 00:00:00
team France
score 2.0
suf_score 0.0
rank 3.0
rank_suf 60.0
rank_change -1.0
total_points 1779.24
result 1
rank_dif 57.0
points_by_rank 0.05
team_points 3
country_classification Classe S
Name: 2649, dtype: object
date 2021-11-16 00:00:00
team Belgium
score 1.0
suf_score 1.0
rank 1.0
rank_suf 19.0
rank_change 0.0
total_points 1832.33
result 2
rank_dif 18.0
points_by_rank 0.052632
team_points 1
country_classification Classe S
Name: 2650, dtype: object
date 2021-11-16 00:00:00
team Estonia
score 0.0
suf_score 2.0
rank 105.0
rank_suf 31.0
rank_change -6.0
total_points 1184.03
result 0
rank_dif -74.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2651, dtype: object
date 2021-11-16 00:00:00
team Latvia
score 3.0
suf_score 1.0
rank 136.0
rank_suf 198.0
rank_change 1.0
total_points 1084.88
result 1
rank_dif 62.0
points_by_rank 0.015152
team_points 3
country_classification Classe C
Name: 2652, dtype: object
date 2021-11-16 00:00:00
team Turkey
score 2.0
suf_score 1.0
rank 39.0
rank_suf 73.0
rank_change -2.0
total_points 1460.53
result 1
rank_dif 34.0
points_by_rank 0.041096
team_points 3
country_classification Classe A
Name: 2653, dtype: object
date 2021-11-16 00:00:00
team Norway
score 0.0
suf_score 2.0
rank 37.0
rank_suf 11.0
rank_change -2.0
total_points 1471.62
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2654, dtype: object
date 2021-11-16 00:00:00
team Uruguay
score 0.0
suf_score 3.0
rank 15.0
rank_suf 78.0
rank_change 3.0
total_points 1625.67
result 0
rank_dif 63.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2655, dtype: object
date 2021-11-16 00:00:00
team Peru
score 2.0
suf_score 1.0
rank 24.0
rank_suf 50.0
rank_change 3.0
total_points 1534.06
result 1
rank_dif 26.0
points_by_rank 0.06
team_points 3
country_classification Classe A
Name: 2656, dtype: object
date 2021-11-16 00:00:00
team Paraguay
score 0.0
suf_score 0.0
rank 38.0
rank_suf 16.0
rank_change 3.0
total_points 1461.28
result 2
rank_dif -22.0
points_by_rank 0.0625
team_points 1
country_classification Classe A
Name: 2657, dtype: object
date 2021-11-16 00:00:00
team Brazil
score 0.0
suf_score 0.0
rank 2.0
rank_suf 6.0
rank_change 0.0
total_points 1820.36
result 2
rank_dif 4.0
points_by_rank 0.166667
team_points 1
country_classification Classe S
Name: 2658, dtype: object
date 2021-11-16 00:00:00
team Ecuador
score 2.0
suf_score 0.0
rank 55.0
rank_suf 21.0
rank_change 3.0
total_points 1416.93
result 1
rank_dif -34.0
points_by_rank 0.142857
team_points 3
country_classification Classe A
Name: 2659, dtype: object
date 2021-11-19 00:00:00
team Seychelles
score 3.0
suf_score 3.0
rank 197.0
rank_suf 204.0
rank_change -2.0
total_points 869.51
result 2
rank_dif 7.0
points_by_rank 0.004902
team_points 1
country_classification Classe D
Name: 2660, dtype: object
date 2021-11-25 00:00:00
team Myanmar
score 1.0
suf_score 4.0
rank 148.0
rank_suf 166.0
rank_change 3.0
total_points 1052.57
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2661, dtype: object
date 2021-11-30 00:00:00
team Oman
score 1.0
suf_score 1.0
rank 78.0
rank_suf 75.0
rank_change 1.0
total_points 1307.09
result 2
rank_dif -3.0
points_by_rank 0.013333
team_points 1
country_classification Classe B
Name: 2662, dtype: object
date 2021-11-30 00:00:00
team Bahrain
score 0.0
suf_score 1.0
rank 90.0
rank_suf 51.0
rank_change -1.0
total_points 1255.75
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2663, dtype: object
date 2021-11-30 00:00:00
team Mauritania
score 1.0
suf_score 5.0
rank 103.0
rank_suf 29.0
rank_change 1.0
total_points 1190.23
result 0
rank_dif -74.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2664, dtype: object
date 2021-11-30 00:00:00
team Syria
score 1.0
suf_score 2.0
rank 85.0
rank_suf 70.0
rank_change 0.0
total_points 1269.96
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2665, dtype: object
date 2021-12-01 00:00:00
team Palestine
score 0.0
suf_score 4.0
rank 98.0
rank_suf 28.0
rank_change -2.0
total_points 1211.32
result 0
rank_dif -70.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2666, dtype: object
date 2021-12-01 00:00:00
team Jordan
score 1.0
suf_score 0.0
rank 91.0
rank_suf 48.0
rank_change 1.0
total_points 1252.95
result 1
rank_dif -43.0
points_by_rank 0.0625
team_points 3
country_classification Classe B
Name: 2667, dtype: object
date 2021-12-01 00:00:00
team Sudan
score 0.0
suf_score 4.0
rank 124.0
rank_suf 32.0
rank_change 1.0
total_points 1135.89
result 0
rank_dif -92.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2668, dtype: object
date 2021-12-01 00:00:00
team Lebanon
score 0.0
suf_score 1.0
rank 94.0
rank_suf 45.0
rank_change 2.0
total_points 1233.76
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2669, dtype: object
date 2021-12-03 00:00:00
team Iraq
score 0.0
suf_score 0.0
rank 75.0
rank_suf 90.0
rank_change 3.0
total_points 1335.58
result 2
rank_dif 15.0
points_by_rank 0.011111
team_points 1
country_classification Classe B
Name: 2670, dtype: object
date 2021-12-03 00:00:00
team Oman
score 1.0
suf_score 2.0
rank 78.0
rank_suf 51.0
rank_change 1.0
total_points 1307.09
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2671, dtype: object
date 2021-12-03 00:00:00
team United Arab Emirates
score 1.0
suf_score 0.0
rank 70.0
rank_suf 103.0
rank_change -1.0
total_points 1350.41
result 1
rank_dif 33.0
points_by_rank 0.029126
team_points 3
country_classification Classe B
Name: 2672, dtype: object
date 2021-12-03 00:00:00
team Tunisia
score 0.0
suf_score 2.0
rank 29.0
rank_suf 85.0
rank_change 2.0
total_points 1512.13
result 0
rank_dif 56.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2673, dtype: object
date 2021-12-04 00:00:00
team Ecuador
score 1.0
suf_score 1.0
rank 46.0
rank_suf 69.0
rank_change -9.0
total_points 1448.74
result 2
rank_dif 23.0
points_by_rank 0.014493
team_points 1
country_classification Classe A
Name: 2674, dtype: object
date 2021-12-04 00:00:00
team Morocco
score 4.0
suf_score 0.0
rank 28.0
rank_suf 91.0
rank_change -1.0
total_points 1525.5
result 1
rank_dif 63.0
points_by_rank 0.032967
team_points 3
country_classification Classe A
Name: 2675, dtype: object
date 2021-12-04 00:00:00
team Saudi Arabia
score 1.0
suf_score 1.0
rank 48.0
rank_suf 98.0
rank_change -1.0
total_points 1441.17
result 2
rank_dif 50.0
points_by_rank 0.010204
team_points 1
country_classification Classe A
Name: 2676, dtype: object
date 2021-12-04 00:00:00
team Algeria
score 2.0
suf_score 0.0
rank 32.0
rank_suf 94.0
rank_change 2.0
total_points 1508.54
result 1
rank_dif 62.0
points_by_rank 0.031915
team_points 3
country_classification Classe A
Name: 2677, dtype: object
date 2021-12-04 00:00:00
team Egypt
score 5.0
suf_score 0.0
rank 45.0
rank_suf 124.0
rank_change 1.0
total_points 1449.51
result 1
rank_dif 79.0
points_by_rank 0.024194
team_points 3
country_classification Classe A
Name: 2678, dtype: object
date 2021-12-06 00:00:00
team Bahrain
score 0.0
suf_score 3.0
rank 90.0
rank_suf 78.0
rank_change -1.0
total_points 1255.75
result 0
rank_dif -12.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2679, dtype: object
date 2021-12-06 00:00:00
team Iraq
score 0.0
suf_score 3.0
rank 75.0
rank_suf 51.0
rank_change 3.0
total_points 1335.58
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2680, dtype: object
date 2021-12-06 00:00:00
team Mauritania
score 2.0
suf_score 1.0
rank 103.0
rank_suf 85.0
rank_change 1.0
total_points 1190.23
result 1
rank_dif -18.0
points_by_rank 0.035294
team_points 3
country_classification Classe C
Name: 2681, dtype: object
date 2021-12-06 00:00:00
team United Arab Emirates
score 0.0
suf_score 1.0
rank 70.0
rank_suf 29.0
rank_change -1.0
total_points 1350.41
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2682, dtype: object
date 2021-12-07 00:00:00
team Palestine
score 1.0
suf_score 5.0
rank 98.0
rank_suf 91.0
rank_change -2.0
total_points 1211.32
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2683, dtype: object
date 2021-12-07 00:00:00
team Saudi Arabia
score 0.0
suf_score 1.0
rank 48.0
rank_suf 28.0
rank_change -1.0
total_points 1441.17
result 0
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2684, dtype: object
date 2021-12-07 00:00:00
team Egypt
score 1.0
suf_score 1.0
rank 45.0
rank_suf 32.0
rank_change 1.0
total_points 1449.51
result 2
rank_dif -13.0
points_by_rank 0.03125
team_points 1
country_classification Classe A
Name: 2685, dtype: object
date 2021-12-07 00:00:00
team Sudan
score 0.0
suf_score 1.0
rank 124.0
rank_suf 94.0
rank_change 1.0
total_points 1135.89
result 0
rank_dif -30.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2686, dtype: object
date 2021-12-08 00:00:00
team Chile
score 2.0
suf_score 2.0
rank 24.0
rank_suf 14.0
rank_change 3.0
total_points 1541.33
result 2
rank_dif -10.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 2687, dtype: object
date 2021-12-09 00:00:00
team Uganda
score 2.0
suf_score 0.0
rank 82.0
rank_suf 131.0
rank_change 0.0
total_points 1285.28
result 1
rank_dif 49.0
points_by_rank 0.022901
team_points 3
country_classification Classe B
Name: 2688, dtype: object
date 2021-12-10 00:00:00
team Oman
score 1.0
suf_score 2.0
rank 78.0
rank_suf 29.0
rank_change 1.0
total_points 1307.09
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2689, dtype: object
date 2021-12-10 00:00:00
team United Arab Emirates
score 0.0
suf_score 5.0
rank 70.0
rank_suf 51.0
rank_change -1.0
total_points 1350.41
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2690, dtype: object
date 2021-12-11 00:00:00
team Jordan
score 1.0
suf_score 3.0
rank 91.0
rank_suf 45.0
rank_change 1.0
total_points 1252.95
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2691, dtype: object
date 2021-12-11 00:00:00
team Algeria
score 2.0
suf_score 2.0
rank 32.0
rank_suf 28.0
rank_change 2.0
total_points 1508.54
result 2
rank_dif -4.0
points_by_rank 0.035714
team_points 1
country_classification Classe A
Name: 2692, dtype: object
date 2021-12-11 00:00:00
team Chile
score 1.0
suf_score 0.0
rank 24.0
rank_suf 69.0
rank_change 3.0
total_points 1541.33
result 1
rank_dif 45.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 2693, dtype: object
date 2021-12-15 00:00:00
team Egypt
score 0.0
suf_score 1.0
rank 45.0
rank_suf 29.0
rank_change 1.0
total_points 1449.51
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2694, dtype: object
date 2021-12-15 00:00:00
team Algeria
score 2.0
suf_score 1.0
rank 32.0
rank_suf 51.0
rank_change 2.0
total_points 1508.54
result 1
rank_dif 19.0
points_by_rank 0.058824
team_points 3
country_classification Classe A
Name: 2695, dtype: object
date 2021-12-18 00:00:00
team Egypt
score 0.0
suf_score 0.0
rank 45.0
rank_suf 51.0
rank_change 1.0
total_points 1449.51
result 2
rank_dif 6.0
points_by_rank 0.019608
team_points 1
country_classification Classe A
Name: 2696, dtype: object
date 2021-12-18 00:00:00
team Algeria
score 2.0
suf_score 0.0
rank 32.0
rank_suf 29.0
rank_change 2.0
total_points 1508.54
result 1
rank_dif -3.0
points_by_rank 0.103448
team_points 3
country_classification Classe A
Name: 2697, dtype: object
date 2021-12-18 00:00:00
team Bosnia and Herzegovina
score 0.0
suf_score 1.0
rank 61.0
rank_suf 12.0
rank_change 5.0
total_points 1392.56
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2698, dtype: object
date 2021-12-30 00:00:00
team Burkina Faso
score 0.0
suf_score 0.0
rank 60.0
rank_suf 103.0
rank_change 0.0
total_points 1397.64
result 2
rank_dif 43.0
points_by_rank 0.009709
team_points 1
country_classification Classe B
Name: 2699, dtype: object
date 2021-12-30 00:00:00
team Ethiopia
score 3.0
suf_score 2.0
rank 137.0
rank_suf 125.0
rank_change 0.0
total_points 1087.89
result 1
rank_dif -12.0
points_by_rank 0.024
team_points 3
country_classification Classe C
Name: 2700, dtype: object
date 2021-12-31 00:00:00
team Comoros
score 1.0
suf_score 2.0
rank 132.0
rank_suf 129.0
rank_change 0.0
total_points 1117.65
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2701, dtype: object
date 2022-01-02 00:00:00
team Burkina Faso
score 3.0
suf_score 0.0
rank 60.0
rank_suf 89.0
rank_change 0.0
total_points 1397.64
result 1
rank_dif 29.0
points_by_rank 0.033708
team_points 3
country_classification Classe B
Name: 2702, dtype: object
date 2022-01-02 00:00:00
team Zimbabwe
score 0.0
suf_score 0.0
rank 121.0
rank_suf 125.0
rank_change 0.0
total_points 1138.44
result 2
rank_dif 4.0
points_by_rank 0.008
team_points 1
country_classification Classe C
Name: 2703, dtype: object
date 2022-01-03 00:00:00
team Guinea
score 0.0
suf_score 3.0
rank 81.0
rank_suf 135.0
rank_change 0.0
total_points 1298.32
result 0
rank_dif 54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2704, dtype: object
date 2022-01-04 00:00:00
team Gabon
score 1.0
suf_score 1.0
rank 89.0
rank_suf 103.0
rank_change 0.0
total_points 1262.0
result 2
rank_dif 14.0
points_by_rank 0.009709
team_points 1
country_classification Classe B
Name: 2705, dtype: object
date 2022-01-05 00:00:00
team Ghana
score 0.0
suf_score 3.0
rank 52.0
rank_suf 29.0
rank_change 0.0
total_points 1428.97
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2706, dtype: object
date 2022-01-06 00:00:00
team Guinea
score 2.0
suf_score 0.0
rank 81.0
rank_suf 135.0
rank_change 0.0
total_points 1298.32
result 1
rank_dif 54.0
points_by_rank 0.022222
team_points 3
country_classification Classe B
Name: 2707, dtype: object
date 2022-01-09 00:00:00
team Burkina Faso
score 1.0
suf_score 2.0
rank 60.0
rank_suf 50.0
rank_change 0.0
total_points 1397.64
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2708, dtype: object
date 2022-01-10 00:00:00
team Zimbabwe
score 0.0
suf_score 1.0
rank 121.0
rank_suf 20.0
rank_change 0.0
total_points 1138.44
result 0
rank_dif -101.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2709, dtype: object
date 2022-01-10 00:00:00
team Malawi
score 0.0
suf_score 1.0
rank 129.0
rank_suf 81.0
rank_change 0.0
total_points 1127.21
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2710, dtype: object
date 2022-01-10 00:00:00
team Ghana
score 0.0
suf_score 1.0
rank 52.0
rank_suf 28.0
rank_change 0.0
total_points 1428.97
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2711, dtype: object
date 2022-01-10 00:00:00
team Gabon
score 1.0
suf_score 0.0
rank 89.0
rank_suf 132.0
rank_change 0.0
total_points 1262.0
result 1
rank_dif 43.0
points_by_rank 0.022727
team_points 3
country_classification Classe B
Name: 2712, dtype: object
date 2022-01-11 00:00:00
team Egypt
score 0.0
suf_score 1.0
rank 45.0
rank_suf 36.0
rank_change 0.0
total_points 1451.77
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2713, dtype: object
date 2022-01-11 00:00:00
team Guinea-Bissau
score 0.0
suf_score 0.0
rank 106.0
rank_suf 125.0
rank_change 0.0
total_points 1177.14
result 2
rank_dif 19.0
points_by_rank 0.008
team_points 1
country_classification Classe C
Name: 2714, dtype: object
date 2022-01-11 00:00:00
team Sierra Leone
score 0.0
suf_score 0.0
rank 108.0
rank_suf 29.0
rank_change 0.0
total_points 1174.12
result 2
rank_dif -79.0
points_by_rank 0.034483
team_points 1
country_classification Classe C
Name: 2715, dtype: object
date 2022-01-12 00:00:00
team Uganda
score 1.0
suf_score 1.0
rank 82.0
rank_suf 62.0
rank_change 0.0
total_points 1285.28
result 2
rank_dif -20.0
points_by_rank 0.016129
team_points 1
country_classification Classe B
Name: 2716, dtype: object
date 2022-01-12 00:00:00
team Mali
score 1.0
suf_score 0.0
rank 53.0
rank_suf 30.0
rank_change 0.0
total_points 1427.98
result 1
rank_dif -23.0
points_by_rank 0.1
team_points 3
country_classification Classe A
Name: 2717, dtype: object
date 2022-01-12 00:00:00
team Gambia
score 1.0
suf_score 0.0
rank 150.0
rank_suf 103.0
rank_change -1.0
total_points 1049.74
result 1
rank_dif -47.0
points_by_rank 0.029126
team_points 3
country_classification Classe C
Name: 2718, dtype: object
date 2022-01-13 00:00:00
team Ethiopia
score 1.0
suf_score 4.0
rank 137.0
rank_suf 50.0
rank_change 0.0
total_points 1087.89
result 0
rank_dif -87.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2719, dtype: object
date 2022-01-14 00:00:00
team Guinea
score 0.0
suf_score 0.0
rank 81.0
rank_suf 20.0
rank_change 0.0
total_points 1298.32
result 2
rank_dif -61.0
points_by_rank 0.05
team_points 1
country_classification Classe B
Name: 2720, dtype: object
date 2022-01-14 00:00:00
team Zimbabwe
score 1.0
suf_score 2.0
rank 121.0
rank_suf 129.0
rank_change 0.0
total_points 1138.44
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2721, dtype: object
date 2022-01-14 00:00:00
team Comoros
score 0.0
suf_score 2.0
rank 132.0
rank_suf 28.0
rank_change 0.0
total_points 1117.65
result 0
rank_dif -104.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2722, dtype: object
date 2022-01-14 00:00:00
team Ghana
score 1.0
suf_score 1.0
rank 52.0
rank_suf 89.0
rank_change 0.0
total_points 1428.97
result 2
rank_dif 37.0
points_by_rank 0.011236
team_points 1
country_classification Classe A
Name: 2723, dtype: object
date 2022-01-15 00:00:00
team Iceland
score 1.0
suf_score 5.0
rank 62.0
rank_suf 33.0
rank_change 0.0
total_points 1385.21
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2724, dtype: object
date 2022-01-15 00:00:00
team Sudan
score 1.0
suf_score 3.0
rank 125.0
rank_suf 36.0
rank_change 1.0
total_points 1131.74
result 0
rank_dif -89.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2725, dtype: object
date 2022-01-15 00:00:00
team Egypt
score 1.0
suf_score 0.0
rank 45.0
rank_suf 106.0
rank_change 0.0
total_points 1451.77
result 1
rank_dif 61.0
points_by_rank 0.028302
team_points 3
country_classification Classe A
Name: 2726, dtype: object
date 2022-01-16 00:00:00
team Honduras
score 1.0
suf_score 2.0
rank 76.0
rank_suf 16.0
rank_change 0.0
total_points 1332.16
result 0
rank_dif -60.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2727, dtype: object
date 2022-01-16 00:00:00
team Panama
score 1.0
suf_score 1.0
rank 63.0
rank_suf 22.0
rank_change 0.0
total_points 1379.34
result 2
rank_dif -41.0
points_by_rank 0.045455
team_points 1
country_classification Classe B
Name: 2728, dtype: object
date 2022-01-16 00:00:00
team Equatorial Guinea
score 1.0
suf_score 0.0
rank 114.0
rank_suf 29.0
rank_change 0.0
total_points 1156.78
result 1
rank_dif -85.0
points_by_rank 0.103448
team_points 3
country_classification Classe C
Name: 2729, dtype: object
date 2022-01-16 00:00:00
team Mali
score 1.0
suf_score 1.0
rank 53.0
rank_suf 150.0
rank_change 0.0
total_points 1427.98
result 2
rank_dif 97.0
points_by_rank 0.006667
team_points 1
country_classification Classe A
Name: 2730, dtype: object
date 2022-01-16 00:00:00
team Mauritania
score 0.0
suf_score 4.0
rank 103.0
rank_suf 30.0
rank_change 0.0
total_points 1190.26
result 0
rank_dif -73.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2731, dtype: object
date 2022-01-17 00:00:00
team Ethiopia
score 1.0
suf_score 1.0
rank 137.0
rank_suf 60.0
rank_change 0.0
total_points 1087.89
result 2
rank_dif -77.0
points_by_rank 0.016667
team_points 1
country_classification Classe C
Name: 2732, dtype: object
date 2022-01-18 00:00:00
team Uganda
score 3.0
suf_score 2.0
rank 82.0
rank_suf 181.0
rank_change 0.0
total_points 1285.28
result 1
rank_dif 99.0
points_by_rank 0.016575
team_points 3
country_classification Classe B
Name: 2733, dtype: object
date 2022-01-18 00:00:00
team Senegal
score 0.0
suf_score 0.0
rank 20.0
rank_suf 129.0
rank_change 0.0
total_points 1561.68
result 2
rank_dif 109.0
points_by_rank 0.007752
team_points 1
country_classification Classe A
Name: 2734, dtype: object
date 2022-01-18 00:00:00
team Guinea
score 1.0
suf_score 2.0
rank 81.0
rank_suf 121.0
rank_change 0.0
total_points 1298.32
result 0
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2735, dtype: object
date 2022-01-18 00:00:00
team Morocco
score 2.0
suf_score 2.0
rank 28.0
rank_suf 89.0
rank_change 0.0
total_points 1529.93
result 2
rank_dif 61.0
points_by_rank 0.011236
team_points 1
country_classification Classe A
Name: 2736, dtype: object
date 2022-01-18 00:00:00
team Comoros
score 3.0
suf_score 2.0
rank 132.0
rank_suf 52.0
rank_change 0.0
total_points 1117.65
result 1
rank_dif -80.0
points_by_rank 0.057692
team_points 3
country_classification Classe C
Name: 2737, dtype: object
date 2022-01-19 00:00:00
team Sudan
score 0.0
suf_score 1.0
rank 125.0
rank_suf 45.0
rank_change 1.0
total_points 1131.74
result 0
rank_dif -80.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2738, dtype: object
date 2022-01-19 00:00:00
team Nigeria
score 2.0
suf_score 0.0
rank 36.0
rank_suf 106.0
rank_change 0.0
total_points 1478.78
result 1
rank_dif 70.0
points_by_rank 0.028302
team_points 3
country_classification Classe A
Name: 2739, dtype: object
date 2022-01-20 00:00:00
team Moldova
score 0.0
suf_score 4.0
rank 181.0
rank_suf 33.0
rank_change 0.0
total_points 928.35
result 0
rank_dif -148.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2740, dtype: object
date 2022-01-20 00:00:00
team Jamaica
score 0.0
suf_score 3.0
rank 57.0
rank_suf 22.0
rank_change 0.0
total_points 1412.13
result 0
rank_dif -35.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2741, dtype: object
date 2022-01-20 00:00:00
team Equatorial Guinea
score 1.0
suf_score 0.0
rank 114.0
rank_suf 108.0
rank_change 0.0
total_points 1156.78
result 1
rank_dif -6.0
points_by_rank 0.027778
team_points 3
country_classification Classe C
Name: 2742, dtype: object
date 2022-01-20 00:00:00
team Tunisia
score 0.0
suf_score 1.0
rank 30.0
rank_suf 150.0
rank_change 1.0
total_points 1512.72
result 0
rank_dif 120.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2743, dtype: object
date 2022-01-20 00:00:00
team Mauritania
score 0.0
suf_score 2.0
rank 103.0
rank_suf 53.0
rank_change 0.0
total_points 1190.26
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2744, dtype: object
date 2022-01-21 00:00:00
team Trinidad and Tobago
score 0.0
suf_score 5.0
rank 100.0
rank_suf 77.0
rank_change 0.0
total_points 1207.94
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2745, dtype: object
date 2022-01-21 00:00:00
team Uganda
score 0.0
suf_score 1.0
rank 82.0
rank_suf 75.0
rank_change 0.0
total_points 1285.28
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2746, dtype: object
date 2022-01-23 00:00:00
team Gabon
score 1.0
suf_score 1.0
rank 89.0
rank_suf 60.0
rank_change 0.0
total_points 1262.0
result 2
rank_dif -29.0
points_by_rank 0.016667
team_points 1
country_classification Classe B
Name: 2747, dtype: object
date 2022-01-23 00:00:00
team Tunisia
score 1.0
suf_score 0.0
rank 30.0
rank_suf 36.0
rank_change 1.0
total_points 1512.72
result 1
rank_dif 6.0
points_by_rank 0.083333
team_points 3
country_classification Classe A
Name: 2748, dtype: object
date 2022-01-24 00:00:00
team Comoros
score 1.0
suf_score 2.0
rank 132.0
rank_suf 50.0
rank_change 0.0
total_points 1117.65
result 0
rank_dif -82.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2749, dtype: object
date 2022-01-24 00:00:00
team Gambia
score 1.0
suf_score 0.0
rank 150.0
rank_suf 81.0
rank_change -1.0
total_points 1049.74
result 1
rank_dif -69.0
points_by_rank 0.037037
team_points 3
country_classification Classe C
Name: 2750, dtype: object
date 2022-01-25 00:00:00
team Malawi
score 1.0
suf_score 2.0
rank 129.0
rank_suf 28.0
rank_change 0.0
total_points 1127.21
result 0
rank_dif -101.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2751, dtype: object
date 2022-01-26 00:00:00
team Equatorial Guinea
score 0.0
suf_score 0.0
rank 114.0
rank_suf 53.0
rank_change 0.0
total_points 1156.78
result 2
rank_dif -61.0
points_by_rank 0.018868
team_points 1
country_classification Classe C
Name: 2752, dtype: object
date 2022-01-27 00:00:00
team Uganda
score 1.0
suf_score 3.0
rank 82.0
rank_suf 91.0
rank_change 0.0
total_points 1285.28
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2753, dtype: object
date 2022-01-27 00:00:00
team Timor-Leste
score 1.0
suf_score 4.0
rank 196.0
rank_suf 164.0
rank_change 2.0
total_points 873.13
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2754, dtype: object
date 2022-01-27 00:00:00
team South Sudan
score 0.0
suf_score 3.0
rank 167.0
rank_suf 84.0
rank_change 0.0
total_points 980.25
result 0
rank_dif -83.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2755, dtype: object
date 2022-01-27 00:00:00
team Mexico
score 2.0
suf_score 1.0
rank 14.0
rank_suf 57.0
rank_change 0.0
total_points 1638.3
result 1
rank_dif 43.0
points_by_rank 0.052632
team_points 3
country_classification Classe S-
Name: 2756, dtype: object
date 2022-01-27 00:00:00
team El Salvador
score 0.0
suf_score 1.0
rank 70.0
rank_suf 11.0
rank_change 1.0
total_points 1349.47
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2757, dtype: object
date 2022-01-27 00:00:00
team Canada
score 2.0
suf_score 0.0
rank 40.0
rank_suf 76.0
rank_change 0.0
total_points 1462.32
result 1
rank_dif 36.0
points_by_rank 0.039474
team_points 3
country_classification Classe A
Name: 2758, dtype: object
date 2022-01-27 00:00:00
team Panama
score 0.0
suf_score 1.0
rank 63.0
rank_suf 49.0
rank_change 0.0
total_points 1379.34
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2759, dtype: object
date 2022-01-27 00:00:00
team South Korea
score 1.0
suf_score 0.0
rank 33.0
rank_suf 95.0
rank_change 0.0
total_points 1507.24
result 1
rank_dif 62.0
points_by_rank 0.031579
team_points 3
country_classification Classe A
Name: 2760, dtype: object
date 2022-01-27 00:00:00
team Iraq
score 0.0
suf_score 1.0
rank 75.0
rank_suf 21.0
rank_change 0.0
total_points 1333.03
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2761, dtype: object
date 2022-01-27 00:00:00
team Syria
score 0.0
suf_score 2.0
rank 86.0
rank_suf 69.0
rank_change 1.0
total_points 1268.54
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2762, dtype: object
date 2022-01-27 00:00:00
team China PR
score 0.0
suf_score 2.0
rank 74.0
rank_suf 26.0
rank_change 0.0
total_points 1337.33
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2763, dtype: object
date 2022-01-27 00:00:00
team Vietnam
score 0.0
suf_score 4.0
rank 98.0
rank_suf 35.0
rank_change -1.0
total_points 1212.54
result 0
rank_dif -63.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2764, dtype: object
date 2022-01-27 00:00:00
team Oman
score 0.0
suf_score 1.0
rank 79.0
rank_suf 51.0
rank_change 1.0
total_points 1306.01
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2765, dtype: object
date 2022-01-27 00:00:00
team Brazil
score 1.0
suf_score 1.0
rank 2.0
rank_suf 46.0
rank_change 0.0
total_points 1826.35
result 2
rank_dif 44.0
points_by_rank 0.021739
team_points 1
country_classification Classe S
Name: 2766, dtype: object
date 2022-01-27 00:00:00
team Uruguay
score 1.0
suf_score 0.0
rank 17.0
rank_suf 43.0
rank_change 0.0
total_points 1596.66
result 1
rank_dif 26.0
points_by_rank 0.069767
team_points 3
country_classification Classe A
Name: 2767, dtype: object
date 2022-01-27 00:00:00
team Argentina
score 2.0
suf_score 1.0
rank 5.0
rank_suf 24.0
rank_change 0.0
total_points 1750.51
result 1
rank_dif 19.0
points_by_rank 0.125
team_points 3
country_classification Classe S
Name: 2768, dtype: object
date 2022-01-28 00:00:00
team New Zealand
score 1.0
suf_score 3.0
rank 110.0
rank_suf 90.0
rank_change 0.0
total_points 1165.81
result 0
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2769, dtype: object
date 2022-01-28 00:00:00
team Barbados
score 0.0
suf_score 1.0
rank 162.0
rank_suf 139.0
rank_change 0.0
total_points 995.94
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2770, dtype: object
date 2022-01-28 00:00:00
team Peru
score 1.0
suf_score 0.0
rank 22.0
rank_suf 16.0
rank_change 0.0
total_points 1551.15
result 1
rank_dif -6.0
points_by_rank 0.1875
team_points 3
country_classification Classe A
Name: 2771, dtype: object
date 2022-01-28 00:00:00
team Bolivia
score 1.0
suf_score 4.0
rank 77.0
rank_suf 59.0
rank_change 0.0
total_points 1324.21
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2772, dtype: object
date 2022-01-29 00:00:00
team Libya
score 0.0
suf_score 2.0
rank 117.0
rank_suf 142.0
rank_change 1.0
total_points 1151.06
result 0
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2773, dtype: object
date 2022-01-29 00:00:00
team Mauritius
score 0.0
suf_score 1.0
rank 172.0
rank_suf 169.0
rank_change 0.0
total_points 964.94
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2774, dtype: object
date 2022-01-29 00:00:00
team Belize
score 0.0
suf_score 4.0
rank 170.0
rank_suf 143.0
rank_change -1.0
total_points 967.42
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2775, dtype: object
date 2022-01-29 00:00:00
team Tunisia
score 0.0
suf_score 1.0
rank 30.0
rank_suf 60.0
rank_change 1.0
total_points 1512.72
result 0
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2776, dtype: object
date 2022-01-29 00:00:00
team Gambia
score 0.0
suf_score 2.0
rank 150.0
rank_suf 50.0
rank_change -1.0
total_points 1049.74
result 0
rank_dif -100.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2777, dtype: object
date 2022-01-30 00:00:00
team Timor-Leste
score 0.0
suf_score 3.0
rank 196.0
rank_suf 164.0
rank_change 2.0
total_points 873.13
result 0
rank_dif -32.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2778, dtype: object
date 2022-01-30 00:00:00
team Morocco
score 1.0
suf_score 2.0
rank 28.0
rank_suf 45.0
rank_change 0.0
total_points 1529.93
result 0
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2779, dtype: object
date 2022-01-30 00:00:00
team Equatorial Guinea
score 1.0
suf_score 3.0
rank 114.0
rank_suf 20.0
rank_change 0.0
total_points 1156.78
result 0
rank_dif -94.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2780, dtype: object
date 2022-01-30 00:00:00
team United States
score 0.0
suf_score 2.0
rank 11.0
rank_suf 40.0
rank_change -1.0
total_points 1648.51
result 0
rank_dif 29.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2781, dtype: object
date 2022-01-30 00:00:00
team Costa Rica
score 0.0
suf_score 0.0
rank 49.0
rank_suf 14.0
rank_change 0.0
total_points 1437.43
result 2
rank_dif -35.0
points_by_rank 0.071429
team_points 1
country_classification Classe A
Name: 2782, dtype: object
date 2022-01-30 00:00:00
team Jamaica
score 2.0
suf_score 3.0
rank 57.0
rank_suf 63.0
rank_change 0.0
total_points 1412.13
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2783, dtype: object
date 2022-01-30 00:00:00
team El Salvador
score 2.0
suf_score 0.0
rank 70.0
rank_suf 76.0
rank_change 1.0
total_points 1349.47
result 1
rank_dif 6.0
points_by_rank 0.039474
team_points 3
country_classification Classe B
Name: 2784, dtype: object
date 2022-02-01 00:00:00
team Libya
score 2.0
suf_score 0.0
rank 117.0
rank_suf 142.0
rank_change 1.0
total_points 1151.06
result 1
rank_dif 25.0
points_by_rank 0.021127
team_points 3
country_classification Classe C
Name: 2785, dtype: object
date 2022-02-01 00:00:00
team Mauritius
score 0.0
suf_score 1.0
rank 172.0
rank_suf 169.0
rank_change 0.0
total_points 964.94
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2786, dtype: object
date 2022-02-01 00:00:00
team Belize
score 1.0
suf_score 1.0
rank 170.0
rank_suf 143.0
rank_change -1.0
total_points 967.42
result 2
rank_dif -27.0
points_by_rank 0.006993
team_points 1
country_classification Classe D
Name: 2787, dtype: object
date 2022-02-01 00:00:00
team Guyana
score 1.0
suf_score 2.0
rank 176.0
rank_suf 139.0
rank_change 0.0
total_points 958.87
result 0
rank_dif -37.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2788, dtype: object
date 2022-02-01 00:00:00
team Iraq
score 1.0
suf_score 1.0
rank 75.0
rank_suf 95.0
rank_change 0.0
total_points 1333.03
result 2
rank_dif 20.0
points_by_rank 0.010526
team_points 1
country_classification Classe B
Name: 2789, dtype: object
date 2022-02-01 00:00:00
team United Arab Emirates
score 0.0
suf_score 1.0
rank 69.0
rank_suf 21.0
rank_change -1.0
total_points 1350.39
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2790, dtype: object
date 2022-02-01 00:00:00
team South Korea
score 2.0
suf_score 0.0
rank 33.0
rank_suf 86.0
rank_change 0.0
total_points 1507.24
result 1
rank_dif 53.0
points_by_rank 0.034884
team_points 3
country_classification Classe A
Name: 2791, dtype: object
date 2022-02-01 00:00:00
team China PR
score 1.0
suf_score 3.0
rank 74.0
rank_suf 98.0
rank_change 0.0
total_points 1337.33
result 0
rank_dif 24.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2792, dtype: object
date 2022-02-01 00:00:00
team Saudi Arabia
score 0.0
suf_score 2.0
rank 51.0
rank_suf 26.0
rank_change 3.0
total_points 1434.71
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2793, dtype: object
date 2022-02-01 00:00:00
team Australia
score 2.0
suf_score 2.0
rank 35.0
rank_suf 79.0
rank_change 0.0
total_points 1484.88
result 2
rank_dif 44.0
points_by_rank 0.012658
team_points 1
country_classification Classe A
Name: 2794, dtype: object
date 2022-02-01 00:00:00
team Chile
score 3.0
suf_score 2.0
rank 24.0
rank_suf 77.0
rank_change 0.0
total_points 1543.42
result 1
rank_dif 53.0
points_by_rank 0.038961
team_points 3
country_classification Classe A
Name: 2795, dtype: object
date 2022-02-01 00:00:00
team Venezuela
score 1.0
suf_score 4.0
rank 59.0
rank_suf 17.0
rank_change 0.0
total_points 1409.14
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2796, dtype: object
date 2022-02-01 00:00:00
team Colombia
score 0.0
suf_score 1.0
rank 16.0
rank_suf 5.0
rank_change 0.0
total_points 1607.15
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2797, dtype: object
date 2022-02-01 00:00:00
team Ecuador
score 1.0
suf_score 1.0
rank 46.0
rank_suf 22.0
rank_change 0.0
total_points 1448.27
result 2
rank_dif -24.0
points_by_rank 0.045455
team_points 1
country_classification Classe A
Name: 2798, dtype: object
date 2022-02-01 00:00:00
team Paraguay
score 0.0
suf_score 4.0
rank 43.0
rank_suf 2.0
rank_change 0.0
total_points 1454.52
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2799, dtype: object
date 2022-02-02 00:00:00
team Senegal
score 3.0
suf_score 1.0
rank 20.0
rank_suf 60.0
rank_change 0.0
total_points 1561.68
result 1
rank_dif 40.0
points_by_rank 0.05
team_points 3
country_classification Classe A
Name: 2800, dtype: object
date 2022-02-02 00:00:00
team Honduras
score 0.0
suf_score 3.0
rank 76.0
rank_suf 11.0
rank_change 0.0
total_points 1332.16
result 0
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2801, dtype: object
date 2022-02-02 00:00:00
team Costa Rica
score 1.0
suf_score 0.0
rank 49.0
rank_suf 57.0
rank_change 0.0
total_points 1437.43
result 1
rank_dif 8.0
points_by_rank 0.052632
team_points 3
country_classification Classe A
Name: 2802, dtype: object
date 2022-02-02 00:00:00
team Canada
score 2.0
suf_score 0.0
rank 40.0
rank_suf 70.0
rank_change 0.0
total_points 1462.32
result 1
rank_dif 30.0
points_by_rank 0.042857
team_points 3
country_classification Classe A
Name: 2803, dtype: object
date 2022-02-02 00:00:00
team Panama
score 0.0
suf_score 1.0
rank 63.0
rank_suf 14.0
rank_change 0.0
total_points 1379.34
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2804, dtype: object
date 2022-02-03 00:00:00
team Egypt
score 0.0
suf_score 0.0
rank 45.0
rank_suf 50.0
rank_change 0.0
total_points 1451.77
result 2
rank_dif 5.0
points_by_rank 0.02
team_points 1
country_classification Classe A
Name: 2805, dtype: object
date 2022-02-05 00:00:00
team Burkina Faso
score 3.0
suf_score 3.0
rank 60.0
rank_suf 50.0
rank_change 0.0
total_points 1397.64
result 2
rank_dif -10.0
points_by_rank 0.02
team_points 1
country_classification Classe B
Name: 2806, dtype: object
date 2022-02-06 00:00:00
team Egypt
score 0.0
suf_score 0.0
rank 45.0
rank_suf 20.0
rank_change 0.0
total_points 1451.77
result 2
rank_dif -25.0
points_by_rank 0.05
team_points 1
country_classification Classe A
Name: 2807, dtype: object
date 2022-03-17 00:00:00
team Solomon Islands
score 2.0
suf_score 0.0
rank 142.0
rank_suf 190.0
rank_change 1.0
total_points 1072.78
result 1
rank_dif 48.0
points_by_rank 0.015789
team_points 3
country_classification Classe C
Name: 2808, dtype: object
date 2022-03-18 00:00:00
team New Zealand
score 1.0
suf_score 0.0
rank 111.0
rank_suf 165.0
rank_change 1.0
total_points 1161.66
result 1
rank_dif 54.0
points_by_rank 0.018182
team_points 3
country_classification Classe C
Name: 2809, dtype: object
date 2022-03-18 00:00:00
team Fiji
score 2.0
suf_score 1.0
rank 162.0
rank_suf 153.0
rank_change 1.0
total_points 996.27
result 1
rank_dif -9.0
points_by_rank 0.019608
team_points 3
country_classification Classe D
Name: 2810, dtype: object
date 2022-03-18 00:00:00
team Zambia
score 1.0
suf_score 3.0
rank 88.0
rank_suf 74.0
rank_change 0.0
total_points 1264.64
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2811, dtype: object
date 2022-03-19 00:00:00
team Seychelles
score 0.0
suf_score 0.0
rank 196.0
rank_suf 176.0
rank_change -1.0
total_points 870.63
result 2
rank_dif -20.0
points_by_rank 0.005682
team_points 1
country_classification Classe D
Name: 2812, dtype: object
date 2022-03-21 00:00:00
team New Caledonia
score 0.0
suf_score 1.0
rank 153.0
rank_suf 165.0
rank_change 0.0
total_points 1035.12
result 0
rank_dif 12.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2813, dtype: object
date 2022-03-21 00:00:00
team Fiji
score 0.0
suf_score 4.0
rank 162.0
rank_suf 111.0
rank_change 1.0
total_points 996.27
result 0
rank_dif -51.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2814, dtype: object
date 2022-03-23 00:00:00
team India
score 1.0
suf_score 2.0
rank 104.0
rank_suf 89.0
rank_change 0.0
total_points 1182.75
result 0
rank_dif -15.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2815, dtype: object
date 2022-03-23 00:00:00
team Grenada
score 0.0
suf_score 0.0
rank 169.0
rank_suf 203.0
rank_change 1.0
total_points 974.03
result 2
rank_dif 34.0
points_by_rank 0.004926
team_points 1
country_classification Classe D
Name: 2816, dtype: object
date 2022-03-23 00:00:00
team Equatorial Guinea
score 0.0
suf_score 3.0
rank 99.0
rank_suf 113.0
rank_change -15.0
total_points 1210.07
result 0
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2817, dtype: object
date 2022-03-23 00:00:00
team Mongolia
score 0.0
suf_score 1.0
rank 184.0
rank_suf 187.0
rank_change 0.0
total_points 916.68
result 0
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2818, dtype: object
date 2022-03-23 00:00:00
team Philippines
score 0.0
suf_score 2.0
rank 129.0
rank_suf 154.0
rank_change 1.0
total_points 1129.91
result 0
rank_dif 25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2819, dtype: object
date 2022-03-23 00:00:00
team Niger
score 1.0
suf_score 1.0
rank 114.0
rank_suf 117.0
rank_change 1.0
total_points 1158.39
result 2
rank_dif 3.0
points_by_rank 0.008547
team_points 1
country_classification Classe C
Name: 2820, dtype: object
date 2022-03-23 00:00:00
team Central African Republic
score 1.0
suf_score 3.0
rank 130.0
rank_suf 132.0
rank_change 0.0
total_points 1127.2
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2821, dtype: object
date 2022-03-23 00:00:00
team Gambia
score 1.0
suf_score 0.0
rank 125.0
rank_suf 180.0
rank_change -25.0
total_points 1135.18
result 1
rank_dif 55.0
points_by_rank 0.016667
team_points 3
country_classification Classe C
Name: 2822, dtype: object
date 2022-03-23 00:00:00
team South Sudan
score 4.0
suf_score 2.0
rank 168.0
rank_suf 192.0
rank_change 1.0
total_points 977.81
result 1
rank_dif 24.0
points_by_rank 0.015625
team_points 3
country_classification Classe D
Name: 2823, dtype: object
date 2022-03-23 00:00:00
team Lesotho
score 0.0
suf_score 0.0
rank 146.0
rank_suf 196.0
rank_change 1.0
total_points 1057.62
result 2
rank_dif 50.0
points_by_rank 0.005102
team_points 1
country_classification Classe C
Name: 2824, dtype: object
date 2022-03-23 00:00:00
team Eswatini
score 3.0
suf_score 0.0
rank 147.0
rank_suf 194.0
rank_change 1.0
total_points 1054.14
result 1
rank_dif 47.0
points_by_rank 0.015464
team_points 3
country_classification Classe C
Name: 2825, dtype: object
date 2022-03-24 00:00:00
team El Salvador
score 1.0
suf_score 1.0
rank 70.0
rank_suf 62.0
rank_change 0.0
total_points 1346.04
result 2
rank_dif -8.0
points_by_rank 0.016129
team_points 1
country_classification Classe B
Name: 2826, dtype: object
date 2022-03-24 00:00:00
team United States
score 0.0
suf_score 0.0
rank 13.0
rank_suf 12.0
rank_change 2.0
total_points 1643.34
result 2
rank_dif -1.0
points_by_rank 0.083333
team_points 1
country_classification Classe S-
Name: 2827, dtype: object
date 2022-03-24 00:00:00
team Honduras
score 1.0
suf_score 1.0
rank 78.0
rank_suf 63.0
rank_change 2.0
total_points 1303.96
result 2
rank_dif -15.0
points_by_rank 0.015873
team_points 1
country_classification Classe B
Name: 2828, dtype: object
date 2022-03-24 00:00:00
team Canada
score 0.0
suf_score 1.0
rank 33.0
rank_suf 42.0
rank_change -7.0
total_points 1497.82
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2829, dtype: object
date 2022-03-24 00:00:00
team Syria
score 3.0
suf_score 0.0
rank 91.0
rank_suf 95.0
rank_change 5.0
total_points 1251.22
result 1
rank_dif 4.0
points_by_rank 0.031579
team_points 3
country_classification Classe B
Name: 2830, dtype: object
date 2022-03-24 00:00:00
team United Arab Emirates
score 0.0
suf_score 1.0
rank 69.0
rank_suf 74.0
rank_change 0.0
total_points 1353.1
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2831, dtype: object
date 2022-03-24 00:00:00
team Iran
score 0.0
suf_score 2.0
rank 21.0
rank_suf 29.0
rank_change 0.0
total_points 1572.89
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2832, dtype: object
date 2022-03-24 00:00:00
team Saudi Arabia
score 1.0
suf_score 1.0
rank 53.0
rank_suf 75.0
rank_change 2.0
total_points 1433.95
result 2
rank_dif 22.0
points_by_rank 0.013333
team_points 1
country_classification Classe A
Name: 2833, dtype: object
date 2022-03-24 00:00:00
team Oman
score 1.0
suf_score 0.0
rank 79.0
rank_suf 98.0
rank_change 0.0
total_points 1301.0
result 1
rank_dif 19.0
points_by_rank 0.030612
team_points 3
country_classification Classe B
Name: 2834, dtype: object
date 2022-03-24 00:00:00
team Japan
score 2.0
suf_score 0.0
rank 23.0
rank_suf 37.0
rank_change -3.0
total_points 1549.82
result 1
rank_dif 14.0
points_by_rank 0.081081
team_points 3
country_classification Classe A
Name: 2835, dtype: object
date 2022-03-24 00:00:00
team Tahiti
score 1.0
suf_score 3.0
rank 159.0
rank_suf 142.0
rank_change 0.0
total_points 1014.27
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2836, dtype: object
date 2022-03-24 00:00:00
team Papua New Guinea
score 2.0
suf_score 1.0
rank 165.0
rank_suf 162.0
rank_change 0.0
total_points 990.55
result 1
rank_dif -3.0
points_by_rank 0.018519
team_points 3
country_classification Classe D
Name: 2837, dtype: object
date 2022-03-24 00:00:00
team New Caledonia
score 1.0
suf_score 7.0
rank 153.0
rank_suf 111.0
rank_change 0.0
total_points 1035.12
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2838, dtype: object
date 2022-03-24 00:00:00
team Bolivia
score 0.0
suf_score 3.0
rank 76.0
rank_suf 19.0
rank_change -1.0
total_points 1308.12
result 0
rank_dif -57.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2839, dtype: object
date 2022-03-24 00:00:00
team Chile
score 0.0
suf_score 4.0
rank 26.0
rank_suf 2.0
rank_change 2.0
total_points 1543.16
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2840, dtype: object
date 2022-03-24 00:00:00
team Ecuador
score 1.0
suf_score 3.0
rank 44.0
rank_suf 50.0
rank_change -2.0
total_points 1458.63
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2841, dtype: object
date 2022-03-24 00:00:00
team Peru
score 0.0
suf_score 1.0
rank 22.0
rank_suf 16.0
rank_change 0.0
total_points 1563.45
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2842, dtype: object
date 2022-03-24 00:00:00
team North Macedonia
score 1.0
suf_score 0.0
rank 67.0
rank_suf 6.0
rank_change 0.0
total_points 1367.23
result 1
rank_dif -61.0
points_by_rank 0.5
team_points 3
country_classification Classe B
Name: 2843, dtype: object
date 2022-03-24 00:00:00
team Turkey
score 1.0
suf_score 3.0
rank 39.0
rank_suf 8.0
rank_change 2.0
total_points 1472.72
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2844, dtype: object
date 2022-03-24 00:00:00
team Czech Republic
score 0.0
suf_score 1.0
rank 31.0
rank_suf 17.0
rank_change -1.0
total_points 1510.42
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2845, dtype: object
date 2022-03-24 00:00:00
team Austria
score 1.0
suf_score 2.0
rank 30.0
rank_suf 20.0
rank_change -1.0
total_points 1511.56
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2846, dtype: object
date 2022-03-24 00:00:00
team Montenegro
score 0.0
suf_score 1.0
rank 72.0
rank_suf 92.0
rank_change 0.0
total_points 1342.89
result 0
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2847, dtype: object
date 2022-03-24 00:00:00
team Cuba
score 0.0
suf_score 1.0
rank 179.0
rank_suf 123.0
rank_change 0.0
total_points 948.96
result 0
rank_dif -56.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2848, dtype: object
date 2022-03-24 00:00:00
team Serbia
score 1.0
suf_score 0.0
rank 25.0
rank_suf 41.0
rank_change 2.0
total_points 1547.38
result 1
rank_dif 16.0
points_by_rank 0.073171
team_points 3
country_classification Classe A
Name: 2849, dtype: object
date 2022-03-24 00:00:00
team Burkina Faso
score 0.0
suf_score 5.0
rank 56.0
rank_suf 109.0
rank_change -4.0
total_points 1418.58
result 0
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2850, dtype: object
date 2022-03-24 00:00:00
team Benin
score 4.0
suf_score 0.0
rank 83.0
rank_suf 145.0
rank_change 0.0
total_points 1282.53
result 1
rank_dif 62.0
points_by_rank 0.02069
team_points 3
country_classification Classe B
Name: 2851, dtype: object
date 2022-03-24 00:00:00
team Bangladesh
score 0.0
suf_score 2.0
rank 186.0
rank_suf 157.0
rank_change 0.0
total_points 907.83
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2852, dtype: object
date 2022-03-24 00:00:00
team Poland
score 1.0
suf_score 1.0
rank 28.0
rank_suf 40.0
rank_change 1.0
total_points 1530.62
result 2
rank_dif 12.0
points_by_rank 0.025
team_points 1
country_classification Classe A
Name: 2853, dtype: object
date 2022-03-24 00:00:00
team Nepal
score 0.0
suf_score 2.0
rank 167.0
rank_suf 112.0
rank_change -2.0
total_points 982.22
result 0
rank_dif -55.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2854, dtype: object
date 2022-03-24 00:00:00
team Sierra Leone
score 0.0
suf_score 3.0
rank 107.0
rank_suf 126.0
rank_change -1.0
total_points 1173.81
result 0
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2855, dtype: object
date 2022-03-24 00:00:00
team Cyprus
score 0.0
suf_score 0.0
rank 105.0
rank_suf 106.0
rank_change 0.0
total_points 1178.65
result 2
rank_dif 1.0
points_by_rank 0.009434
team_points 1
country_classification Classe C
Name: 2856, dtype: object
date 2022-03-24 00:00:00
team Kazakhstan
score 2.0
suf_score 1.0
rank 120.0
rank_suf 181.0
rank_change 1.0
total_points 1140.71
result 1
rank_dif 61.0
points_by_rank 0.016575
team_points 3
country_classification Classe C
Name: 2857, dtype: object
date 2022-03-24 00:00:00
team São Tomé and Príncipe
score 0.0
suf_score 3.0
rank 189.0
rank_suf 176.0
rank_change 0.0
total_points 903.31
result 0
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2858, dtype: object
date 2022-03-25 00:00:00
team Algeria
score 1.0
suf_score 0.0
rank 43.0
rank_suf 38.0
rank_change 14.0
total_points 1460.93
result 1
rank_dif -5.0
points_by_rank 0.078947
team_points 3
country_classification Classe A
Name: 2859, dtype: object
date 2022-03-25 00:00:00
team Senegal
score 0.0
suf_score 1.0
rank 18.0
rank_suf 34.0
rank_change -2.0
total_points 1587.78
result 0
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2860, dtype: object
date 2022-03-25 00:00:00
team Nigeria
score 0.0
suf_score 0.0
rank 32.0
rank_suf 61.0
rank_change -4.0
total_points 1509.91
result 2
rank_dif 29.0
points_by_rank 0.016393
team_points 1
country_classification Classe A
Name: 2861, dtype: object
date 2022-03-25 00:00:00
team Tunisia
score 1.0
suf_score 0.0
rank 36.0
rank_suf 48.0
rank_change 6.0
total_points 1489.92
result 1
rank_dif 12.0
points_by_rank 0.0625
team_points 3
country_classification Classe A
Name: 2862, dtype: object
date 2022-03-25 00:00:00
team Venezuela
score 0.0
suf_score 3.0
rank 58.0
rank_suf 4.0
rank_change -1.0
total_points 1411.45
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2863, dtype: object
date 2022-03-25 00:00:00
team Georgia
score 1.0
suf_score 0.0
rank 86.0
rank_suf 59.0
rank_change 1.0
total_points 1269.24
result 1
rank_dif -27.0
points_by_rank 0.050847
team_points 3
country_classification Classe B
Name: 2864, dtype: object
date 2022-03-25 00:00:00
team Ethiopia
score 1.0
suf_score 2.0
rank 138.0
rank_suf 131.0
rank_change 1.0
total_points 1081.24
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2865, dtype: object
date 2022-03-25 00:00:00
team Zambia
score 3.0
suf_score 1.0
rank 88.0
rank_suf 97.0
rank_change 0.0
total_points 1264.64
result 1
rank_dif 9.0
points_by_rank 0.030928
team_points 3
country_classification Classe B
Name: 2866, dtype: object
date 2022-03-25 00:00:00
team Kuwait
score 1.0
suf_score 1.0
rank 143.0
rank_suf 135.0
rank_change 1.0
total_points 1065.56
result 2
rank_dif -8.0
points_by_rank 0.007407
team_points 1
country_classification Classe C
Name: 2867, dtype: object
date 2022-03-25 00:00:00
team Northern Ireland
score 3.0
suf_score 1.0
rank 54.0
rank_suf 93.0
rank_change 0.0
total_points 1424.97
result 1
rank_dif 39.0
points_by_rank 0.032258
team_points 3
country_classification Classe A
Name: 2868, dtype: object
date 2022-03-25 00:00:00
team Azerbaijan
score 0.0
suf_score 1.0
rank 121.0
rank_suf 174.0
rank_change 1.0
total_points 1139.02
result 0
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2869, dtype: object
date 2022-03-25 00:00:00
team Slovakia
score 0.0
suf_score 2.0
rank 46.0
rank_suf 45.0
rank_change 4.0
total_points 1455.36
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2870, dtype: object
date 2022-03-25 00:00:00
team Greece
score 1.0
suf_score 0.0
rank 55.0
rank_suf 47.0
rank_change 0.0
total_points 1421.99
result 1
rank_dif -8.0
points_by_rank 0.06383
team_points 3
country_classification Classe A
Name: 2871, dtype: object
date 2022-03-25 00:00:00
team Lithuania
score 2.0
suf_score 1.0
rank 137.0
rank_suf 210.0
rank_change 1.0
total_points 1091.77
result 1
rank_dif 73.0
points_by_rank 0.014286
team_points 3
country_classification Classe C
Name: 2872, dtype: object
date 2022-03-25 00:00:00
team Guinea
score 0.0
suf_score 0.0
rank 81.0
rank_suf 68.0
rank_change 0.0
total_points 1292.58
result 2
rank_dif -13.0
points_by_rank 0.014706
team_points 1
country_classification Classe B
Name: 2873, dtype: object
date 2022-03-25 00:00:00
team Uganda
score 1.0
suf_score 1.0
rank 84.0
rank_suf 115.0
rank_change 2.0
total_points 1279.18
result 2
rank_dif 31.0
points_by_rank 0.008696
team_points 1
country_classification Classe B
Name: 2874, dtype: object
date 2022-03-25 00:00:00
team Barbados
score 0.0
suf_score 9.0
rank 163.0
rank_suf 101.0
rank_change 1.0
total_points 995.94
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2875, dtype: object
date 2022-03-26 00:00:00
team Guinea-Bissau
score 2.0
suf_score 3.0
rank 113.0
rank_suf 127.0
rank_change 7.0
total_points 1158.62
result 0
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2876, dtype: object
date 2022-03-26 00:00:00
team Burundi
score 0.0
suf_score 1.0
rank 141.0
rank_suf 89.0
rank_change 1.0
total_points 1075.82
result 0
rank_dif -52.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2877, dtype: object
date 2022-03-26 00:00:00
team India
score 0.0
suf_score 3.0
rank 104.0
rank_suf 94.0
rank_change 0.0
total_points 1182.75
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2878, dtype: object
date 2022-03-26 00:00:00
team Sudan
score 0.0
suf_score 0.0
rank 133.0
rank_suf 130.0
rank_change 8.0
total_points 1118.31
result 2
rank_dif -3.0
points_by_rank 0.007692
team_points 1
country_classification Classe C
Name: 2879, dtype: object
date 2022-03-26 00:00:00
team Slovenia
score 1.0
suf_score 1.0
rank 64.0
rank_suf 15.0
rank_change -1.0
total_points 1375.42
result 2
rank_dif -49.0
points_by_rank 0.066667
team_points 1
country_classification Classe B
Name: 2880, dtype: object
date 2022-03-26 00:00:00
team Switzerland
score 1.0
suf_score 2.0
rank 14.0
rank_suf 5.0
rank_change 1.0
total_points 1642.83
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2881, dtype: object
date 2022-03-26 00:00:00
team Iceland
score 1.0
suf_score 1.0
rank 60.0
rank_suf 57.0
rank_change -2.0
total_points 1382.81
result 2
rank_dif -3.0
points_by_rank 0.017544
team_points 1
country_classification Classe B
Name: 2882, dtype: object
date 2022-03-26 00:00:00
team Israel
score 0.0
suf_score 2.0
rank 77.0
rank_suf 11.0
rank_change -1.0
total_points 1306.7
result 0
rank_dif -66.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2883, dtype: object
date 2022-03-26 00:00:00
team Faroe Islands
score 0.0
suf_score 0.0
rank 124.0
rank_suf 203.0
rank_change 1.0
total_points 1136.99
result 2
rank_dif 79.0
points_by_rank 0.004926
team_points 1
country_classification Classe C
Name: 2884, dtype: object
date 2022-03-26 00:00:00
team Niger
score 1.0
suf_score 2.0
rank 114.0
rank_suf 118.0
rank_change 1.0
total_points 1158.39
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2885, dtype: object
date 2022-03-26 00:00:00
team Mozambique
score 1.0
suf_score 2.0
rank 117.0
rank_suf 116.0
rank_change -1.0
total_points 1151.0
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2886, dtype: object
date 2022-03-26 00:00:00
team Denmark
score 2.0
suf_score 4.0
rank 9.0
rank_suf 10.0
rank_change 0.0
total_points 1654.54
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2887, dtype: object
date 2022-03-26 00:00:00
team Bulgaria
score 1.0
suf_score 2.0
rank 71.0
rank_suf 52.0
rank_change 0.0
total_points 1345.47
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2888, dtype: object
date 2022-03-26 00:00:00
team Belgium
score 2.0
suf_score 2.0
rank 1.0
rank_suf 49.0
rank_change 0.0
total_points 1828.45
result 2
rank_dif 48.0
points_by_rank 0.020408
team_points 1
country_classification Classe S
Name: 2889, dtype: object
date 2022-03-26 00:00:00
team Malaysia
score 1.0
suf_score 2.0
rank 154.0
rank_suf 161.0
rank_change 0.0
total_points 1034.53
result 0
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2890, dtype: object
date 2022-03-26 00:00:00
team Albania
score 1.0
suf_score 2.0
rank 65.0
rank_suf 7.0
rank_change -1.0
total_points 1374.98
result 0
rank_dif -58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2891, dtype: object
date 2022-03-27 00:00:00
team Costa Rica
score 2.0
suf_score 1.0
rank 42.0
rank_suf 70.0
rank_change -7.0
total_points 1464.06
result 1
rank_dif 28.0
points_by_rank 0.042857
team_points 3
country_classification Classe A
Name: 2892, dtype: object
date 2022-03-27 00:00:00
team Jamaica
score 0.0
suf_score 4.0
rank 62.0
rank_suf 33.0
rank_change 5.0
total_points 1378.62
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2893, dtype: object
date 2022-03-27 00:00:00
team Mexico
score 1.0
suf_score 0.0
rank 12.0
rank_suf 78.0
rank_change -2.0
total_points 1647.9
result 1
rank_dif 66.0
points_by_rank 0.038462
team_points 3
country_classification Classe S-
Name: 2894, dtype: object
date 2022-03-27 00:00:00
team Panama
score 1.0
suf_score 5.0
rank 63.0
rank_suf 13.0
rank_change 0.0
total_points 1375.56
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2895, dtype: object
date 2022-03-27 00:00:00
team Tahiti
score 0.0
suf_score 1.0
rank 159.0
rank_suf 111.0
rank_change 0.0
total_points 1014.27
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2896, dtype: object
date 2022-03-27 00:00:00
team Papua New Guinea
score 2.0
suf_score 3.0
rank 165.0
rank_suf 142.0
rank_change 0.0
total_points 990.55
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2897, dtype: object
date 2022-03-27 00:00:00
team Guyana
score 5.0
suf_score 0.0
rank 175.0
rank_suf 163.0
rank_change -1.0
total_points 958.87
result 1
rank_dif -12.0
points_by_rank 0.018405
team_points 3
country_classification Classe D
Name: 2898, dtype: object
date 2022-03-27 00:00:00
team Cuba
score 3.0
suf_score 0.0
rank 179.0
rank_suf 170.0
rank_change 0.0
total_points 948.96
result 1
rank_dif -9.0
points_by_rank 0.017647
team_points 3
country_classification Classe D
Name: 2899, dtype: object
date 2022-03-27 00:00:00
team Zambia
score 1.0
suf_score 2.0
rank 88.0
rank_suf 83.0
rank_change 0.0
total_points 1264.64
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2900, dtype: object
date 2022-03-27 00:00:00
team Haiti
score 1.0
suf_score 2.0
rank 87.0
rank_suf 123.0
rank_change 0.0
total_points 1268.05
result 0
rank_dif 36.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2901, dtype: object
date 2022-03-27 00:00:00
team Sierra Leone
score 1.0
suf_score 0.0
rank 107.0
rank_suf 145.0
rank_change -1.0
total_points 1173.81
result 1
rank_dif 38.0
points_by_rank 0.02069
team_points 3
country_classification Classe C
Name: 2902, dtype: object
date 2022-03-27 00:00:00
team Suriname
score 0.0
suf_score 1.0
rank 140.0
rank_suf 112.0
rank_change 1.0
total_points 1077.57
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2903, dtype: object
date 2022-03-27 00:00:00
team Djibouti
score 0.0
suf_score 1.0
rank 192.0
rank_suf 168.0
rank_change 0.0
total_points 896.62
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2904, dtype: object
date 2022-03-27 00:00:00
team Seychelles
score 1.0
suf_score 3.0
rank 196.0
rank_suf 146.0
rank_change -1.0
total_points 870.63
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2905, dtype: object
date 2022-03-27 00:00:00
team Somalia
score 1.0
suf_score 2.0
rank 194.0
rank_suf 147.0
rank_change 0.0
total_points 873.71
result 0
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2906, dtype: object
date 2022-03-27 00:00:00
team São Tomé and Príncipe
score 3.0
suf_score 3.0
rank 189.0
rank_suf 176.0
rank_change 0.0
total_points 903.31
result 2
rank_dif -13.0
points_by_rank 0.005682
team_points 1
country_classification Classe D
Name: 2907, dtype: object
date 2022-03-28 00:00:00
team Grenada
score 0.0
suf_score 1.0
rank 169.0
rank_suf 155.0
rank_change 1.0
total_points 974.03
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2908, dtype: object
date 2022-03-28 00:00:00
team Greece
score 0.0
suf_score 1.0
rank 55.0
rank_suf 72.0
rank_change 0.0
total_points 1421.99
result 0
rank_dif 17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2909, dtype: object
date 2022-03-28 00:00:00
team Fiji
score 2.0
suf_score 1.0
rank 162.0
rank_suf 164.0
rank_change 1.0
total_points 996.27
result 1
rank_dif 2.0
points_by_rank 0.018293
team_points 3
country_classification Classe D
Name: 2910, dtype: object
date 2022-03-29 00:00:00
team Cameroon
score 2.0
suf_score 1.0
rank 38.0
rank_suf 43.0
rank_change -12.0
total_points 1480.82
result 1
rank_dif 5.0
points_by_rank 0.069767
team_points 3
country_classification Classe A
Name: 2911, dtype: object
date 2022-03-29 00:00:00
team Ghana
score 1.0
suf_score 1.0
rank 61.0
rank_suf 32.0
rank_change 9.0
total_points 1381.45
result 2
rank_dif -29.0
points_by_rank 0.03125
team_points 1
country_classification Classe B
Name: 2912, dtype: object
date 2022-03-29 00:00:00
team Egypt
score 0.0
suf_score 1.0
rank 34.0
rank_suf 18.0
rank_change -11.0
total_points 1497.05
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2913, dtype: object
date 2022-03-29 00:00:00
team Mali
score 0.0
suf_score 0.0
rank 48.0
rank_suf 36.0
rank_change -5.0
total_points 1446.49
result 2
rank_dif -12.0
points_by_rank 0.027778
team_points 1
country_classification Classe A
Name: 2914, dtype: object
date 2022-03-29 00:00:00
team Lebanon
score 0.0
suf_score 2.0
rank 95.0
rank_suf 21.0
rank_change 0.0
total_points 1228.97
result 0
rank_dif -74.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2915, dtype: object
date 2022-03-29 00:00:00
team Iraq
score 1.0
suf_score 1.0
rank 74.0
rank_suf 91.0
rank_change -1.0
total_points 1325.44
result 2
rank_dif 17.0
points_by_rank 0.010989
team_points 1
country_classification Classe B
Name: 2916, dtype: object
date 2022-03-29 00:00:00
team South Korea
score 0.0
suf_score 1.0
rank 29.0
rank_suf 69.0
rank_change -4.0
total_points 1522.85
result 0
rank_dif 40.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2917, dtype: object
date 2022-03-29 00:00:00
team Vietnam
score 1.0
suf_score 1.0
rank 98.0
rank_suf 23.0
rank_change 0.0
total_points 1218.55
result 2
rank_dif -75.0
points_by_rank 0.043478
team_points 1
country_classification Classe B
Name: 2918, dtype: object
date 2022-03-29 00:00:00
team China PR
score 0.0
suf_score 2.0
rank 75.0
rank_suf 79.0
rank_change 1.0
total_points 1313.81
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2919, dtype: object
date 2022-03-29 00:00:00
team Australia
score 0.0
suf_score 1.0
rank 37.0
rank_suf 53.0
rank_change 2.0
total_points 1486.86
result 0
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2920, dtype: object
date 2022-03-29 00:00:00
team Argentina
score 1.0
suf_score 1.0
rank 4.0
rank_suf 44.0
rank_change -1.0
total_points 1766.99
result 2
rank_dif 40.0
points_by_rank 0.022727
team_points 1
country_classification Classe S
Name: 2921, dtype: object
date 2022-03-29 00:00:00
team Paraguay
score 0.0
suf_score 2.0
rank 50.0
rank_suf 22.0
rank_change 7.0
total_points 1440.53
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2922, dtype: object
date 2022-03-29 00:00:00
team Brazil
score 4.0
suf_score 0.0
rank 2.0
rank_suf 76.0
rank_change 0.0
total_points 1823.42
result 1
rank_dif 74.0
points_by_rank 0.039474
team_points 3
country_classification Classe S
Name: 2923, dtype: object
date 2022-03-29 00:00:00
team Colombia
score 1.0
suf_score 0.0
rank 19.0
rank_suf 58.0
rank_change 3.0
total_points 1585.89
result 1
rank_dif 39.0
points_by_rank 0.051724
team_points 3
country_classification Classe A
Name: 2924, dtype: object
date 2022-03-29 00:00:00
team Uruguay
score 2.0
suf_score 0.0
rank 16.0
rank_suf 26.0
rank_change -1.0
total_points 1614.05
result 1
rank_dif 10.0
points_by_rank 0.115385
team_points 3
country_classification Classe S-
Name: 2925, dtype: object
date 2022-03-29 00:00:00
team Sweden
score 0.0
suf_score 2.0
rank 17.0
rank_suf 28.0
rank_change -1.0
total_points 1588.26
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2926, dtype: object
date 2022-03-29 00:00:00
team North Macedonia
score 0.0
suf_score 2.0
rank 67.0
rank_suf 8.0
rank_change 0.0
total_points 1367.23
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2927, dtype: object
date 2022-03-29 00:00:00
team Georgia
score 0.0
suf_score 0.0
rank 86.0
rank_suf 65.0
rank_change 1.0
total_points 1269.24
result 2
rank_dif -21.0
points_by_rank 0.015385
team_points 1
country_classification Classe B
Name: 2928, dtype: object
date 2022-03-29 00:00:00
team Equatorial Guinea
score 0.0
suf_score 0.0
rank 99.0
rank_suf 127.0
rank_change -15.0
total_points 1210.07
result 2
rank_dif 28.0
points_by_rank 0.007874
team_points 1
country_classification Classe B
Name: 2929, dtype: object
date 2022-03-29 00:00:00
team Scotland
score 2.0
suf_score 2.0
rank 40.0
rank_suf 30.0
rank_change 2.0
total_points 1471.82
result 2
rank_dif -10.0
points_by_rank 0.033333
team_points 1
country_classification Classe A
Name: 2930, dtype: object
date 2022-03-29 00:00:00
team Latvia
score 1.0
suf_score 0.0
rank 135.0
rank_suf 121.0
rank_change 1.0
total_points 1100.03
result 1
rank_dif -14.0
points_by_rank 0.024793
team_points 3
country_classification Classe C
Name: 2931, dtype: object
date 2022-03-29 00:00:00
team Belarus
score 1.0
suf_score 0.0
rank 94.0
rank_suf 89.0
rank_change 0.0
total_points 1233.43
result 1
rank_dif -5.0
points_by_rank 0.033708
team_points 3
country_classification Classe B
Name: 2932, dtype: object
date 2022-03-29 00:00:00
team Mongolia
score 0.0
suf_score 0.0
rank 184.0
rank_suf 186.0
rank_change 0.0
total_points 916.68
result 2
rank_dif 2.0
points_by_rank 0.005376
team_points 1
country_classification Classe D
Name: 2933, dtype: object
date 2022-03-29 00:00:00
team Burkina Faso
score 0.0
suf_score 3.0
rank 56.0
rank_suf 1.0
rank_change -4.0
total_points 1418.58
result 0
rank_dif -55.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2934, dtype: object
date 2022-03-29 00:00:00
team Luxembourg
score 0.0
suf_score 1.0
rank 93.0
rank_suf 59.0
rank_change 0.0
total_points 1236.45
result 0
rank_dif -34.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2935, dtype: object
date 2022-03-29 00:00:00
team Sierra Leone
score 2.0
suf_score 1.0
rank 107.0
rank_suf 97.0
rank_change -1.0
total_points 1173.81
result 1
rank_dif -10.0
points_by_rank 0.030928
team_points 3
country_classification Classe C
Name: 2936, dtype: object
date 2022-03-29 00:00:00
team Bulgaria
score 1.0
suf_score 2.0
rank 71.0
rank_suf 15.0
rank_change 0.0
total_points 1345.47
result 0
rank_dif -56.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2937, dtype: object
date 2022-03-29 00:00:00
team Serbia
score 0.0
suf_score 3.0
rank 25.0
rank_suf 9.0
rank_change 2.0
total_points 1547.38
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2938, dtype: object
date 2022-03-29 00:00:00
team Liechtenstein
score 0.0
suf_score 1.0
rank 191.0
rank_suf 124.0
rank_change 0.0
total_points 899.52
result 0
rank_dif -67.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2939, dtype: object
date 2022-03-29 00:00:00
team Slovakia
score 2.0
suf_score 0.0
rank 46.0
rank_suf 57.0
rank_change 4.0
total_points 1455.36
result 1
rank_dif 11.0
points_by_rank 0.052632
team_points 3
country_classification Classe A
Name: 2940, dtype: object
date 2022-03-29 00:00:00
team South Africa
score 0.0
suf_score 5.0
rank 68.0
rank_suf 3.0
rank_change 0.0
total_points 1358.24
result 0
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2941, dtype: object
date 2022-03-29 00:00:00
team Romania
score 2.0
suf_score 2.0
rank 47.0
rank_suf 77.0
rank_change 3.0
total_points 1453.18
result 2
rank_dif 30.0
points_by_rank 0.012987
team_points 1
country_classification Classe A
Name: 2942, dtype: object
date 2022-03-29 00:00:00
team Burundi
score 2.0
suf_score 1.0
rank 141.0
rank_suf 145.0
rank_change 1.0
total_points 1075.82
result 1
rank_dif 4.0
points_by_rank 0.02069
team_points 3
country_classification Classe C
Name: 2943, dtype: object
date 2022-03-29 00:00:00
team Kuwait
score 0.0
suf_score 2.0
rank 143.0
rank_suf 174.0
rank_change 1.0
total_points 1065.56
result 0
rank_dif 31.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2944, dtype: object
date 2022-03-29 00:00:00
team Libya
score 0.0
suf_score 2.0
rank 118.0
rank_suf 116.0
rank_change 1.0
total_points 1149.51
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2945, dtype: object
date 2022-03-29 00:00:00
team Germany
score 1.0
suf_score 1.0
rank 11.0
rank_suf 10.0
rank_change -1.0
total_points 1648.33
result 2
rank_dif -1.0
points_by_rank 0.1
team_points 1
country_classification Classe S-
Name: 2946, dtype: object
date 2022-03-29 00:00:00
team Hungary
score 1.0
suf_score 0.0
rank 41.0
rank_suf 54.0
rank_change 2.0
total_points 1465.62
result 1
rank_dif 13.0
points_by_rank 0.055556
team_points 3
country_classification Classe A
Name: 2947, dtype: object
date 2022-03-29 00:00:00
team Armenia
score 0.0
suf_score 9.0
rank 92.0
rank_suf 45.0
rank_change 0.0
total_points 1242.24
result 0
rank_dif -47.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2948, dtype: object
date 2022-03-29 00:00:00
team Slovenia
score 0.0
suf_score 0.0
rank 64.0
rank_suf 52.0
rank_change -1.0
total_points 1375.42
result 2
rank_dif -12.0
points_by_rank 0.019231
team_points 1
country_classification Classe B
Name: 2949, dtype: object
date 2022-03-29 00:00:00
team Lithuania
score 0.0
suf_score 1.0
rank 137.0
rank_suf 49.0
rank_change 1.0
total_points 1091.77
result 0
rank_dif -88.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2950, dtype: object
date 2022-03-29 00:00:00
team Philippines
score 0.0
suf_score 2.0
rank 129.0
rank_suf 161.0
rank_change 1.0
total_points 1129.91
result 0
rank_dif 32.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2951, dtype: object
date 2022-03-29 00:00:00
team Iceland
score 0.0
suf_score 5.0
rank 60.0
rank_suf 7.0
rank_change -2.0
total_points 1382.81
result 0
rank_dif -53.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2952, dtype: object
date 2022-03-29 00:00:00
team Kosovo
score 1.0
suf_score 1.0
rank 109.0
rank_suf 14.0
rank_change -2.0
total_points 1163.05
result 2
rank_dif -95.0
points_by_rank 0.071429
team_points 1
country_classification Classe C
Name: 2953, dtype: object
date 2022-03-29 00:00:00
team Sudan
score 1.0
suf_score 1.0
rank 133.0
rank_suf 132.0
rank_change 8.0
total_points 1118.31
result 2
rank_dif -1.0
points_by_rank 0.007576
team_points 1
country_classification Classe C
Name: 2954, dtype: object
date 2022-03-29 00:00:00
team Benin
score 1.0
suf_score 1.0
rank 83.0
rank_suf 126.0
rank_change 0.0
total_points 1282.53
result 2
rank_dif 43.0
points_by_rank 0.007937
team_points 1
country_classification Classe B
Name: 2955, dtype: object
date 2022-03-29 00:00:00
team Guyana
score 1.0
suf_score 1.0
rank 175.0
rank_suf 101.0
rank_change -1.0
total_points 958.87
result 2
rank_dif -74.0
points_by_rank 0.009901
team_points 1
country_classification Classe D
Name: 2956, dtype: object
date 2022-03-29 00:00:00
team Italy
score 3.0
suf_score 2.0
rank 6.0
rank_suf 39.0
rank_change 0.0
total_points 1740.77
result 1
rank_dif 33.0
points_by_rank 0.076923
team_points 3
country_classification Classe S
Name: 2957, dtype: object
date 2022-03-29 00:00:00
team Czech Republic
score 1.0
suf_score 1.0
rank 31.0
rank_suf 20.0
rank_change -1.0
total_points 1510.42
result 2
rank_dif -11.0
points_by_rank 0.05
team_points 1
country_classification Classe A
Name: 2958, dtype: object
date 2022-03-29 00:00:00
team Uganda
score 2.0
suf_score 4.0
rank 84.0
rank_suf 85.0
rank_change 2.0
total_points 1279.18
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2959, dtype: object
date 2022-03-29 00:00:00
team Estonia
score 0.0
suf_score 2.0
rank 106.0
rank_suf 105.0
rank_change -1.0
total_points 1176.5
result 0
rank_dif -1.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2960, dtype: object
date 2022-03-29 00:00:00
team Moldova
score 1.0
suf_score 0.0
rank 181.0
rank_suf 120.0
rank_change 0.0
total_points 926.85
result 1
rank_dif -61.0
points_by_rank 0.025
team_points 3
country_classification Classe D
Name: 2961, dtype: object
date 2022-03-29 00:00:00
team Chad
score 2.0
suf_score 2.0
rank 180.0
rank_suf 125.0
rank_change 0.0
total_points 935.0
result 2
rank_dif -55.0
points_by_rank 0.008
team_points 1
country_classification Classe D
Name: 2962, dtype: object
date 2022-03-30 00:00:00
team El Salvador
score 0.0
suf_score 2.0
rank 70.0
rank_suf 12.0
rank_change 0.0
total_points 1346.04
result 0
rank_dif -58.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2963, dtype: object
date 2022-03-30 00:00:00
team United States
score 0.0
suf_score 2.0
rank 13.0
rank_suf 42.0
rank_change 2.0
total_points 1643.34
result 0
rank_dif 29.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 2964, dtype: object
date 2022-03-30 00:00:00
team Canada
score 0.0
suf_score 1.0
rank 33.0
rank_suf 63.0
rank_change -7.0
total_points 1497.82
result 0
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2965, dtype: object
date 2022-03-30 00:00:00
team Honduras
score 1.0
suf_score 2.0
rank 78.0
rank_suf 62.0
rank_change 2.0
total_points 1303.96
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2966, dtype: object
date 2022-03-30 00:00:00
team New Zealand
score 5.0
suf_score 0.0
rank 111.0
rank_suf 142.0
rank_change 1.0
total_points 1161.66
result 1
rank_dif 31.0
points_by_rank 0.021127
team_points 3
country_classification Classe C
Name: 2967, dtype: object
date 2022-04-24 00:00:00
team Guatemala
score 4.0
suf_score 0.0
rank 118.0
rank_suf 74.0
rank_change -5.0
total_points 1147.85
result 1
rank_dif -44.0
points_by_rank 0.040541
team_points 3
country_classification Classe C
Name: 2968, dtype: object
date 2022-04-27 00:00:00
team Guatemala
score 0.0
suf_score 0.0
rank 118.0
rank_suf 9.0
rank_change -5.0
total_points 1147.85
result 2
rank_dif -109.0
points_by_rank 0.111111
team_points 1
country_classification Classe C
Name: 2969, dtype: object
date 2022-05-12 00:00:00
team Turks and Caicos Islands
score 2.0
suf_score 4.0
rank 206.0
rank_suf 201.0
rank_change 1.0
total_points 839.84
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 2970, dtype: object
date 2022-05-14 00:00:00
team Turks and Caicos Islands
score 2.0
suf_score 1.0
rank 206.0
rank_suf 201.0
rank_change 1.0
total_points 839.84
result 1
rank_dif -5.0
points_by_rank 0.014925
team_points 3
country_classification Classe D
Name: 2971, dtype: object
date 2022-05-24 00:00:00
team Eswatini
score 1.0
suf_score 0.0
rank 143.0
rank_suf 119.0
rank_change -4.0
total_points 1070.46
result 1
rank_dif -24.0
points_by_rank 0.02521
team_points 3
country_classification Classe C
Name: 2972, dtype: object
date 2022-05-24 00:00:00
team Bahrain
score 1.0
suf_score 3.0
rank 89.0
rank_suf 111.0
rank_change 0.0
total_points 1262.55
result 0
rank_dif 22.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2973, dtype: object
date 2022-05-27 00:00:00
team Myanmar
score 0.0
suf_score 2.0
rank 152.0
rank_suf 89.0
rank_change 0.0
total_points 1044.56
result 0
rank_dif -63.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2974, dtype: object
date 2022-05-27 00:00:00
team Turkmenistan
score 0.0
suf_score 1.0
rank 134.0
rank_suf 111.0
rank_change 0.0
total_points 1117.6
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2975, dtype: object
date 2022-05-28 00:00:00
team Lesotho
score 1.0
suf_score 1.0
rank 145.0
rank_suf 140.0
rank_change -1.0
total_points 1061.72
result 2
rank_dif -5.0
points_by_rank 0.007143
team_points 1
country_classification Classe C
Name: 2976, dtype: object
date 2022-05-28 00:00:00
team Jordan
score 2.0
suf_score 0.0
rank 91.0
rank_suf 106.0
rank_change 1.0
total_points 1259.84
result 1
rank_dif 15.0
points_by_rank 0.028302
team_points 3
country_classification Classe B
Name: 2977, dtype: object
date 2022-05-28 00:00:00
team Nigeria
score 1.0
suf_score 2.0
rank 30.0
rank_suf 9.0
rank_change -2.0
total_points 1504.01
result 0
rank_dif -21.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2978, dtype: object
date 2022-05-29 00:00:00
team Gambia
score 1.0
suf_score 1.0
rank 123.0
rank_suf 68.0
rank_change -2.0
total_points 1138.19
result 2
rank_dif -55.0
points_by_rank 0.014706
team_points 1
country_classification Classe C
Name: 2979, dtype: object
date 2022-05-30 00:00:00
team Lesotho
score 1.0
suf_score 1.0
rank 145.0
rank_suf 140.0
rank_change -1.0
total_points 1061.72
result 2
rank_dif -5.0
points_by_rank 0.007143
team_points 1
country_classification Classe C
Name: 2980, dtype: object
date 2022-05-31 00:00:00
team Bahrain
score 2.0
suf_score 1.0
rank 89.0
rank_suf 111.0
rank_change 0.0
total_points 1262.55
result 1
rank_dif 22.0
points_by_rank 0.027027
team_points 3
country_classification Classe B
Name: 2981, dtype: object
date 2022-06-01 00:00:00
team Argentina
score 3.0
suf_score 0.0
rank 4.0
rank_suf 6.0
rank_change 0.0
total_points 1765.13
result 1
rank_dif 2.0
points_by_rank 0.5
team_points 3
country_classification Classe S
Name: 2982, dtype: object
date 2022-06-01 00:00:00
team Ukraine
score 3.0
suf_score 1.0
rank 27.0
rank_suf 39.0
rank_change 0.0
total_points 1535.08
result 1
rank_dif 12.0
points_by_rank 0.076923
team_points 3
country_classification Classe A
Name: 2983, dtype: object
date 2022-06-01 00:00:00
team Central African Republic
score 1.0
suf_score 2.0
rank 131.0
rank_suf 126.0
rank_change 1.0
total_points 1122.08
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2984, dtype: object
date 2022-06-01 00:00:00
team Madagascar
score 0.0
suf_score 3.0
rank 102.0
rank_suf 60.0
rank_change 0.0
total_points 1205.61
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2985, dtype: object
date 2022-06-01 00:00:00
team Botswana
score 0.0
suf_score 1.0
rank 148.0
rank_suf 117.0
rank_change -1.0
total_points 1051.59
result 0
rank_dif -31.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2986, dtype: object
date 2022-06-01 00:00:00
team Wales
score 1.0
suf_score 2.0
rank 18.0
rank_suf 26.0
rank_change -2.0
total_points 1588.08
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2987, dtype: object
date 2022-06-01 00:00:00
team Jordan
score 1.0
suf_score 2.0
rank 91.0
rank_suf 42.0
rank_change 1.0
total_points 1259.84
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2988, dtype: object
date 2022-06-01 00:00:00
team Bangladesh
score 0.0
suf_score 0.0
rank 188.0
rank_suf 159.0
rank_change 2.0
total_points 903.98
result 2
rank_dif -29.0
points_by_rank 0.006289
team_points 1
country_classification Classe D
Name: 2989, dtype: object
date 2022-06-01 00:00:00
team Venezuela
score 1.0
suf_score 0.0
rank 58.0
rank_suf 169.0
rank_change 0.0
total_points 1398.14
result 1
rank_dif 111.0
points_by_rank 0.017751
team_points 3
country_classification Classe B
Name: 2990, dtype: object
date 2022-06-01 00:00:00
team Singapore
score 0.0
suf_score 0.0
rank 158.0
rank_suf 146.0
rank_change -3.0
total_points 1012.27
result 2
rank_dif -12.0
points_by_rank 0.006849
team_points 1
country_classification Classe C
Name: 2991, dtype: object
date 2022-06-01 00:00:00
team Hong Kong
score 0.0
suf_score 2.0
rank 147.0
rank_suf 154.0
rank_change -1.0
total_points 1053.39
result 0
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2992, dtype: object
date 2022-06-01 00:00:00
team Tajikistan
score 0.0
suf_score 1.0
rank 114.0
rank_suf 88.0
rank_change -1.0
total_points 1159.42
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2993, dtype: object
date 2022-06-01 00:00:00
team Morocco
score 0.0
suf_score 3.0
rank 24.0
rank_suf 15.0
rank_change 0.0
total_points 1551.88
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2994, dtype: object
date 2022-06-01 00:00:00
team Afghanistan
score 0.0
suf_score 2.0
rank 150.0
rank_suf 96.0
rank_change 0.0
total_points 1049.77
result 0
rank_dif -54.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 2995, dtype: object
date 2022-06-02 00:00:00
team Equatorial Guinea
score 0.0
suf_score 4.0
rank 99.0
rank_suf 35.0
rank_change 0.0
total_points 1210.07
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 2996, dtype: object
date 2022-06-02 00:00:00
team Rwanda
score 1.0
suf_score 1.0
rank 136.0
rank_suf 119.0
rank_change 0.0
total_points 1097.16
result 2
rank_dif -17.0
points_by_rank 0.008403
team_points 1
country_classification Classe C
Name: 2997, dtype: object
date 2022-06-02 00:00:00
team Costa Rica
score 0.0
suf_score 2.0
rank 31.0
rank_suf 61.0
rank_change -11.0
total_points 1503.09
result 0
rank_dif 30.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 2998, dtype: object
date 2022-06-02 00:00:00
team Antigua and Barbuda
score 1.0
suf_score 0.0
rank 127.0
rank_suf 163.0
rank_change -1.0
total_points 1131.07
result 1
rank_dif 36.0
points_by_rank 0.018405
team_points 3
country_classification Classe C
Name: 2999, dtype: object
date 2022-06-02 00:00:00
team Dominican Republic
score 2.0
suf_score 0.0
rank 155.0
rank_suf 173.0
rank_change -1.0
total_points 1029.42
result 1
rank_dif 18.0
points_by_rank 0.017341
team_points 3
country_classification Classe C
Name: 3000, dtype: object
date 2022-06-02 00:00:00
team Dominica
score 0.0
suf_score 0.0
rank 184.0
rank_suf 210.0
rank_change 1.0
total_points 916.72
result 2
rank_dif 26.0
points_by_rank 0.004762
team_points 1
country_classification Classe D
Name: 3001, dtype: object
date 2022-06-02 00:00:00
team Switzerland
score 1.0
suf_score 2.0
rank 14.0
rank_suf 33.0
rank_change 0.0
total_points 1635.32
result 0
rank_dif 19.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3002, dtype: object
date 2022-06-02 00:00:00
team Portugal
score 1.0
suf_score 1.0
rank 8.0
rank_suf 7.0
rank_change 0.0
total_points 1674.78
result 2
rank_dif -1.0
points_by_rank 0.142857
team_points 1
country_classification Classe S-
Name: 3003, dtype: object
date 2022-06-02 00:00:00
team Iceland
score 2.0
suf_score 2.0
rank 63.0
rank_suf 76.0
rank_change 3.0
total_points 1380.85
result 2
rank_dif 13.0
points_by_rank 0.013158
team_points 1
country_classification Classe B
Name: 3004, dtype: object
date 2022-06-02 00:00:00
team Norway
score 1.0
suf_score 0.0
rank 41.0
rank_suf 25.0
rank_change -4.0
total_points 1463.5
result 1
rank_dif -16.0
points_by_rank 0.12
team_points 3
country_classification Classe A
Name: 3005, dtype: object
date 2022-06-02 00:00:00
team Sweden
score 2.0
suf_score 0.0
rank 19.0
rank_suf 65.0
rank_change 2.0
total_points 1584.77
result 1
rank_dif 46.0
points_by_rank 0.046154
team_points 3
country_classification Classe A
Name: 3006, dtype: object
date 2022-06-02 00:00:00
team Greece
score 1.0
suf_score 0.0
rank 55.0
rank_suf 54.0
rank_change 0.0
total_points 1421.43
result 1
rank_dif -1.0
points_by_rank 0.055556
team_points 3
country_classification Classe A
Name: 3007, dtype: object
date 2022-06-02 00:00:00
team Kosovo
score 2.0
suf_score 0.0
rank 107.0
rank_suf 105.0
rank_change -2.0
total_points 1173.9
result 1
rank_dif -2.0
points_by_rank 0.028571
team_points 3
country_classification Classe C
Name: 3008, dtype: object
date 2022-06-02 00:00:00
team Gibraltar
score 0.0
suf_score 4.0
rank 203.0
rank_suf 85.0
rank_change 0.0
total_points 857.2
result 0
rank_dif -118.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3009, dtype: object
date 2022-06-02 00:00:00
team North Macedonia
score 1.0
suf_score 1.0
rank 62.0
rank_suf 73.0
rank_change -5.0
total_points 1381.07
result 2
rank_dif 11.0
points_by_rank 0.013699
team_points 1
country_classification Classe B
Name: 3010, dtype: object
date 2022-06-02 00:00:00
team San Marino
score 0.0
suf_score 2.0
rank 211.0
rank_suf 110.0
rank_change 1.0
total_points 776.97
result 0
rank_dif -101.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3011, dtype: object
date 2022-06-02 00:00:00
team Timor-Leste
score 1.0
suf_score 2.0
rank 198.0
rank_suf 171.0
rank_change 0.0
total_points 865.47
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3012, dtype: object
date 2022-06-02 00:00:00
team Nigeria
score 0.0
suf_score 1.0
rank 30.0
rank_suf 46.0
rank_change -2.0
total_points 1504.01
result 0
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3013, dtype: object
date 2022-06-02 00:00:00
team Paraguay
score 1.0
suf_score 4.0
rank 50.0
rank_suf 23.0
rank_change 0.0
total_points 1443.3
result 0
rank_dif -27.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3014, dtype: object
date 2022-06-02 00:00:00
team Brazil
score 5.0
suf_score 1.0
rank 1.0
rank_suf 29.0
rank_change -1.0
total_points 1832.69
result 1
rank_dif 28.0
points_by_rank 0.103448
team_points 3
country_classification Classe S
Name: 3015, dtype: object
date 2022-06-02 00:00:00
team Uruguay
score 3.0
suf_score 0.0
rank 13.0
rank_suf 9.0
rank_change -3.0
total_points 1635.73
result 1
rank_dif -4.0
points_by_rank 0.333333
team_points 3
country_classification Classe S-
Name: 3016, dtype: object
date 2022-06-03 00:00:00
team Eswatini
score 2.0
suf_score 2.0
rank 143.0
rank_suf 121.0
rank_change -4.0
total_points 1070.46
result 2
rank_dif -22.0
points_by_rank 0.008264
team_points 1
country_classification Classe C
Name: 3017, dtype: object
date 2022-06-03 00:00:00
team Lesotho
score 0.0
suf_score 2.0
rank 145.0
rank_suf 128.0
rank_change -1.0
total_points 1061.72
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3018, dtype: object
date 2022-06-03 00:00:00
team Honduras
score 1.0
suf_score 0.0
rank 82.0
rank_suf 79.0
rank_change 4.0
total_points 1289.47
result 1
rank_dif -3.0
points_by_rank 0.037975
team_points 3
country_classification Classe B
Name: 3019, dtype: object
date 2022-06-03 00:00:00
team Trinidad and Tobago
score 1.0
suf_score 2.0
rank 103.0
rank_suf 144.0
rank_change 2.0
total_points 1203.78
result 0
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3020, dtype: object
date 2022-06-03 00:00:00
team Cayman Islands
score 1.0
suf_score 1.0
rank 195.0
rank_suf 209.0
rank_change 0.0
total_points 873.64
result 2
rank_dif 14.0
points_by_rank 0.004785
team_points 1
country_classification Classe D
Name: 3021, dtype: object
date 2022-06-03 00:00:00
team Austria
score 3.0
suf_score 0.0
rank 34.0
rank_suf 16.0
rank_change 4.0
total_points 1500.37
result 1
rank_dif -18.0
points_by_rank 0.1875
team_points 3
country_classification Classe A
Name: 3022, dtype: object
date 2022-06-03 00:00:00
team Denmark
score 2.0
suf_score 1.0
rank 11.0
rank_suf 3.0
rank_change 2.0
total_points 1653.6
result 1
rank_dif -8.0
points_by_rank 1.0
team_points 3
country_classification Classe S-
Name: 3023, dtype: object
date 2022-06-03 00:00:00
team Netherlands
score 4.0
suf_score 1.0
rank 10.0
rank_suf 2.0
rank_change 0.0
total_points 1658.66
result 1
rank_dif -8.0
points_by_rank 1.5
team_points 3
country_classification Classe S-
Name: 3024, dtype: object
date 2022-06-03 00:00:00
team Azerbaijan
score 0.0
suf_score 2.0
rank 129.0
rank_suf 125.0
rank_change 8.0
total_points 1127.05
result 0
rank_dif -4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3025, dtype: object
date 2022-06-03 00:00:00
team Slovakia
score 1.0
suf_score 0.0
rank 45.0
rank_suf 93.0
rank_change -1.0
total_points 1454.98
result 1
rank_dif 48.0
points_by_rank 0.032258
team_points 3
country_classification Classe A
Name: 3026, dtype: object
date 2022-06-03 00:00:00
team Moldova
score 2.0
suf_score 0.0
rank 180.0
rank_suf 192.0
rank_change -1.0
total_points 932.79
result 1
rank_dif 12.0
points_by_rank 0.015625
team_points 3
country_classification Classe D
Name: 3027, dtype: object
date 2022-06-03 00:00:00
team Andorra
score 0.0
suf_score 3.0
rank 153.0
rank_suf 135.0
rank_change -2.0
total_points 1040.13
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3028, dtype: object
date 2022-06-03 00:00:00
team Oman
score 2.0
suf_score 0.0
rank 75.0
rank_suf 168.0
rank_change -4.0
total_points 1324.16
result 1
rank_dif 93.0
points_by_rank 0.017857
team_points 3
country_classification Classe B
Name: 3029, dtype: object
date 2022-06-04 00:00:00
team Burundi
score 1.0
suf_score 1.0
rank 139.0
rank_suf 112.0
rank_change -2.0
total_points 1080.62
result 2
rank_dif -27.0
points_by_rank 0.008929
team_points 1
country_classification Classe C
Name: 3030, dtype: object
date 2022-06-04 00:00:00
team Tanzania
score 1.0
suf_score 1.0
rank 130.0
rank_suf 116.0
rank_change -2.0
total_points 1123.79
result 2
rank_dif -14.0
points_by_rank 0.008621
team_points 1
country_classification Classe C
Name: 3031, dtype: object
date 2022-06-04 00:00:00
team Uganda
score 0.0
suf_score 2.0
rank 86.0
rank_suf 44.0
rank_change 2.0
total_points 1275.5
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3032, dtype: object
date 2022-06-04 00:00:00
team South Sudan
score 0.0
suf_score 1.0
rank 161.0
rank_suf 123.0
rank_change -7.0
total_points 998.45
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3033, dtype: object
date 2022-06-04 00:00:00
team Congo
score 0.0
suf_score 4.0
rank 98.0
rank_suf 52.0
rank_change 1.0
total_points 1211.33
result 0
rank_dif -46.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3034, dtype: object
date 2022-06-04 00:00:00
team Sudan
score 0.0
suf_score 3.0
rank 132.0
rank_suf 113.0
rank_change -1.0
total_points 1118.4
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3035, dtype: object
date 2022-06-04 00:00:00
team Benin
score 1.0
suf_score 3.0
rank 84.0
rank_suf 20.0
rank_change 1.0
total_points 1284.13
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3036, dtype: object
date 2022-06-04 00:00:00
team Jamaica
score 1.0
suf_score 1.0
rank 64.0
rank_suf 141.0
rank_change 2.0
total_points 1378.75
result 2
rank_dif 77.0
points_by_rank 0.007092
team_points 1
country_classification Classe B
Name: 3037, dtype: object
date 2022-06-04 00:00:00
team Grenada
score 1.0
suf_score 3.0
rank 170.0
rank_suf 74.0
rank_change 1.0
total_points 968.49
result 0
rank_dif -96.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3038, dtype: object
date 2022-06-04 00:00:00
team Haiti
score 0.0
suf_score 0.0
rank 90.0
rank_suf 167.0
rank_change 3.0
total_points 1261.86
result 2
rank_dif 77.0
points_by_rank 0.005988
team_points 1
country_classification Classe B
Name: 3039, dtype: object
date 2022-06-04 00:00:00
team Guyana
score 2.0
suf_score 1.0
rank 174.0
rank_suf 178.0
rank_change -1.0
total_points 961.07
result 1
rank_dif 4.0
points_by_rank 0.016854
team_points 3
country_classification Classe D
Name: 3040, dtype: object
date 2022-06-04 00:00:00
team England
score 0.0
suf_score 1.0
rank 5.0
rank_suf 40.0
rank_change 0.0
total_points 1761.71
result 0
rank_dif 35.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 3041, dtype: object
date 2022-06-04 00:00:00
team Germany
score 1.0
suf_score 1.0
rank 12.0
rank_suf 6.0
rank_change 1.0
total_points 1650.53
result 2
rank_dif -6.0
points_by_rank 0.166667
team_points 1
country_classification Classe S-
Name: 3042, dtype: object
date 2022-06-04 00:00:00
team Republic of Ireland
score 0.0
suf_score 1.0
rank 47.0
rank_suf 92.0
rank_change -2.0
total_points 1449.48
result 0
rank_dif 45.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3043, dtype: object
date 2022-06-04 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 1.0
rank 59.0
rank_suf 57.0
rank_change 0.0
total_points 1388.63
result 2
rank_dif -2.0
points_by_rank 0.017544
team_points 1
country_classification Classe B
Name: 3044, dtype: object
date 2022-06-04 00:00:00
team Romania
score 0.0
suf_score 2.0
rank 48.0
rank_suf 70.0
rank_change 1.0
total_points 1446.54
result 0
rank_dif 22.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3045, dtype: object
date 2022-06-04 00:00:00
team Luxembourg
score 2.0
suf_score 0.0
rank 94.0
rank_suf 138.0
rank_change 1.0
total_points 1229.6
result 1
rank_dif 44.0
points_by_rank 0.021739
team_points 3
country_classification Classe B
Name: 3046, dtype: object
date 2022-06-04 00:00:00
team Faroe Islands
score 0.0
suf_score 4.0
rank 124.0
rank_suf 43.0
rank_change 0.0
total_points 1137.4
result 0
rank_dif -81.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3047, dtype: object
date 2022-06-05 00:00:00
team Ukraine
score 0.0
suf_score 1.0
rank 27.0
rank_suf 18.0
rank_change 0.0
total_points 1535.08
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3048, dtype: object
date 2022-06-05 00:00:00
team Ethiopia
score 1.0
suf_score 2.0
rank 140.0
rank_suf 120.0
rank_change 2.0
total_points 1076.67
result 0
rank_dif -20.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3049, dtype: object
date 2022-06-05 00:00:00
team Guinea
score 0.0
suf_score 1.0
rank 80.0
rank_suf 32.0
rank_change -1.0
total_points 1293.21
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3050, dtype: object
date 2022-06-05 00:00:00
team Ghana
score 1.0
suf_score 1.0
rank 60.0
rank_suf 131.0
rank_change -1.0
total_points 1387.36
result 2
rank_dif 71.0
points_by_rank 0.007634
team_points 1
country_classification Classe B
Name: 3051, dtype: object
date 2022-06-05 00:00:00
team Angola
score 1.0
suf_score 1.0
rank 126.0
rank_suf 102.0
rank_change -1.0
total_points 1131.72
result 2
rank_dif -24.0
points_by_rank 0.009804
team_points 1
country_classification Classe C
Name: 3052, dtype: object
date 2022-06-05 00:00:00
team Tunisia
score 0.0
suf_score 0.0
rank 35.0
rank_suf 148.0
rank_change -1.0
total_points 1499.8
result 2
rank_dif 113.0
points_by_rank 0.006757
team_points 1
country_classification Classe A
Name: 3053, dtype: object
date 2022-06-05 00:00:00
team Barbados
score 0.0
suf_score 3.0
rank 163.0
rank_suf 177.0
rank_change 0.0
total_points 995.94
result 0
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3054, dtype: object
date 2022-06-05 00:00:00
team Belize
score 0.0
suf_score 2.0
rank 173.0
rank_suf 118.0
rank_change 3.0
total_points 962.21
result 0
rank_dif -55.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3055, dtype: object
date 2022-06-05 00:00:00
team Anguilla
score 1.0
suf_score 1.0
rank 210.0
rank_suf 184.0
rank_change 1.0
total_points 792.34
result 2
rank_dif -26.0
points_by_rank 0.005435
team_points 1
country_classification Classe D
Name: 3056, dtype: object
date 2022-06-05 00:00:00
team Switzerland
score 0.0
suf_score 4.0
rank 14.0
rank_suf 8.0
rank_change 0.0
total_points 1635.32
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3057, dtype: object
date 2022-06-05 00:00:00
team Spain
score 2.0
suf_score 2.0
rank 7.0
rank_suf 33.0
rank_change 0.0
total_points 1709.19
result 2
rank_dif 26.0
points_by_rank 0.030303
team_points 1
country_classification Classe S
Name: 3058, dtype: object
date 2022-06-05 00:00:00
team Slovenia
score 1.0
suf_score 4.0
rank 65.0
rank_suf 25.0
rank_change 1.0
total_points 1378.23
result 0
rank_dif -40.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3059, dtype: object
date 2022-06-05 00:00:00
team Norway
score 2.0
suf_score 1.0
rank 41.0
rank_suf 19.0
rank_change -4.0
total_points 1463.5
result 1
rank_dif -22.0
points_by_rank 0.157895
team_points 3
country_classification Classe A
Name: 3060, dtype: object
date 2022-06-05 00:00:00
team Northern Ireland
score 0.0
suf_score 0.0
rank 54.0
rank_suf 105.0
rank_change 0.0
total_points 1423.55
result 2
rank_dif 51.0
points_by_rank 0.009524
team_points 1
country_classification Classe A
Name: 3061, dtype: object
date 2022-06-05 00:00:00
team Greece
score 1.0
suf_score 0.0
rank 55.0
rank_suf 107.0
rank_change 0.0
total_points 1421.43
result 1
rank_dif 52.0
points_by_rank 0.028037
team_points 3
country_classification Classe A
Name: 3062, dtype: object
date 2022-06-05 00:00:00
team North Macedonia
score 2.0
suf_score 0.0
rank 62.0
rank_suf 203.0
rank_change -5.0
total_points 1381.07
result 1
rank_dif 141.0
points_by_rank 0.014778
team_points 3
country_classification Classe B
Name: 3063, dtype: object
date 2022-06-05 00:00:00
team Georgia
score 5.0
suf_score 2.0
rank 85.0
rank_suf 73.0
rank_change -1.0
total_points 1276.31
result 1
rank_dif -12.0
points_by_rank 0.041096
team_points 3
country_classification Classe B
Name: 3064, dtype: object
date 2022-06-05 00:00:00
team Malta
score 2.0
suf_score 0.0
rank 169.0
rank_suf 211.0
rank_change -5.0
total_points 971.56
result 1
rank_dif 42.0
points_by_rank 0.014218
team_points 3
country_classification Classe D
Name: 3065, dtype: object
date 2022-06-05 00:00:00
team Estonia
score 0.0
suf_score 5.0
rank 110.0
rank_suf 4.0
rank_change 4.0
total_points 1169.06
result 0
rank_dif -106.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3066, dtype: object
date 2022-06-05 00:00:00
team Ecuador
score 0.0
suf_score 0.0
rank 46.0
rank_suf 9.0
rank_change 2.0
total_points 1452.63
result 2
rank_dif -37.0
points_by_rank 0.111111
team_points 1
country_classification Classe A
Name: 3067, dtype: object
date 2022-06-05 00:00:00
team New Zealand
score 0.0
suf_score 1.0
rank 101.0
rank_suf 22.0
rank_change -10.0
total_points 1206.07
result 0
rank_dif -79.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3068, dtype: object
date 2022-06-05 00:00:00
team Colombia
score 1.0
suf_score 0.0
rank 17.0
rank_suf 49.0
rank_change -2.0
total_points 1600.52
result 1
rank_dif 32.0
points_by_rank 0.061224
team_points 3
country_classification Classe S-
Name: 3069, dtype: object
date 2022-06-05 00:00:00
team Uruguay
score 0.0
suf_score 0.0
rank 13.0
rank_suf 15.0
rank_change -3.0
total_points 1635.73
result 2
rank_dif 2.0
points_by_rank 0.066667
team_points 1
country_classification Classe S-
Name: 3070, dtype: object
date 2022-06-06 00:00:00
team Libya
score 0.0
suf_score 2.0
rank 117.0
rank_suf 99.0
rank_change -1.0
total_points 1149.63
result 0
rank_dif -18.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3071, dtype: object
date 2022-06-06 00:00:00
team Curaçao
score 2.0
suf_score 1.0
rank 79.0
rank_suf 82.0
rank_change -1.0
total_points 1298.39
result 1
rank_dif 3.0
points_by_rank 0.036585
team_points 3
country_classification Classe B
Name: 3072, dtype: object
date 2022-06-06 00:00:00
team Bahamas
score 0.0
suf_score 1.0
rank 201.0
rank_suf 103.0
rank_change 0.0
total_points 858.5
result 0
rank_dif -98.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3073, dtype: object
date 2022-06-06 00:00:00
team British Virgin Islands
score 1.0
suf_score 1.0
rank 209.0
rank_suf 195.0
rank_change 1.0
total_points 812.94
result 2
rank_dif -14.0
points_by_rank 0.005128
team_points 1
country_classification Classe D
Name: 3074, dtype: object
date 2022-06-06 00:00:00
team Denmark
score 2.0
suf_score 1.0
rank 11.0
rank_suf 34.0
rank_change 2.0
total_points 1653.6
result 1
rank_dif 23.0
points_by_rank 0.088235
team_points 3
country_classification Classe S-
Name: 3075, dtype: object
date 2022-06-06 00:00:00
team France
score 1.0
suf_score 1.0
rank 3.0
rank_suf 16.0
rank_change 0.0
total_points 1789.85
result 2
rank_dif 13.0
points_by_rank 0.0625
team_points 1
country_classification Classe S
Name: 3076, dtype: object
date 2022-06-06 00:00:00
team Albania
score 1.0
suf_score 1.0
rank 66.0
rank_suf 63.0
rank_change 1.0
total_points 1371.86
result 2
rank_dif -3.0
points_by_rank 0.015873
team_points 1
country_classification Classe B
Name: 3077, dtype: object
date 2022-06-06 00:00:00
team Azerbaijan
score 0.0
suf_score 0.0
rank 129.0
rank_suf 93.0
rank_change 8.0
total_points 1127.05
result 2
rank_dif -36.0
points_by_rank 0.010753
team_points 1
country_classification Classe C
Name: 3078, dtype: object
date 2022-06-06 00:00:00
team Kazakhstan
score 1.0
suf_score 0.0
rank 125.0
rank_suf 45.0
rank_change 5.0
total_points 1134.77
result 1
rank_dif -80.0
points_by_rank 0.066667
team_points 3
country_classification Classe C
Name: 3079, dtype: object
date 2022-06-06 00:00:00
team Liechtenstein
score 0.0
suf_score 1.0
rank 192.0
rank_suf 135.0
rank_change 1.0
total_points 895.08
result 0
rank_dif -57.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3080, dtype: object
date 2022-06-06 00:00:00
team Moldova
score 0.0
suf_score 0.0
rank 180.0
rank_suf 153.0
rank_change -1.0
total_points 932.79
result 2
rank_dif -27.0
points_by_rank 0.006536
team_points 1
country_classification Classe D
Name: 3081, dtype: object
date 2022-06-06 00:00:00
team Chile
score 0.0
suf_score 2.0
rank 28.0
rank_suf 29.0
rank_change 2.0
total_points 1526.4
result 0
rank_dif 1.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3082, dtype: object
date 2022-06-06 00:00:00
team Brazil
score 1.0
suf_score 0.0
rank 1.0
rank_suf 23.0
rank_change -1.0
total_points 1832.69
result 1
rank_dif 22.0
points_by_rank 0.130435
team_points 3
country_classification Classe S
Name: 3083, dtype: object
date 2022-06-07 00:00:00
team Burkina Faso
score 3.0
suf_score 1.0
rank 56.0
rank_suf 143.0
rank_change 0.0
total_points 1409.61
result 1
rank_dif 87.0
points_by_rank 0.020979
team_points 3
country_classification Classe A
Name: 3084, dtype: object
date 2022-06-07 00:00:00
team Comoros
score 1.0
suf_score 2.0
rank 128.0
rank_suf 87.0
rank_change -3.0
total_points 1130.77
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3085, dtype: object
date 2022-06-07 00:00:00
team Rwanda
score 0.0
suf_score 1.0
rank 136.0
rank_suf 20.0
rank_change 0.0
total_points 1097.16
result 0
rank_dif -116.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3086, dtype: object
date 2022-06-07 00:00:00
team Suriname
score 1.0
suf_score 3.0
rank 141.0
rank_suf 64.0
rank_change 1.0
total_points 1073.39
result 0
rank_dif -77.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3087, dtype: object
date 2022-06-07 00:00:00
team El Salvador
score 2.0
suf_score 2.0
rank 74.0
rank_suf 170.0
rank_change 4.0
total_points 1331.65
result 2
rank_dif 96.0
points_by_rank 0.005882
team_points 1
country_classification Classe B
Name: 3088, dtype: object
date 2022-06-07 00:00:00
team Bermuda
score 1.0
suf_score 2.0
rank 167.0
rank_suf 174.0
rank_change 1.0
total_points 982.43
result 0
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3089, dtype: object
date 2022-06-07 00:00:00
team Montserrat
score 2.0
suf_score 3.0
rank 178.0
rank_suf 90.0
rank_change 0.0
total_points 950.71
result 0
rank_dif -88.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3090, dtype: object
date 2022-06-07 00:00:00
team England
score 1.0
suf_score 1.0
rank 5.0
rank_suf 12.0
rank_change 0.0
total_points 1761.71
result 2
rank_dif 7.0
points_by_rank 0.083333
team_points 1
country_classification Classe S
Name: 3091, dtype: object
date 2022-06-07 00:00:00
team Hungary
score 1.0
suf_score 2.0
rank 40.0
rank_suf 6.0
rank_change -1.0
total_points 1466.08
result 0
rank_dif -34.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3092, dtype: object
date 2022-06-07 00:00:00
team Montenegro
score 0.0
suf_score 2.0
rank 70.0
rank_suf 57.0
rank_change -2.0
total_points 1342.79
result 0
rank_dif -13.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3093, dtype: object
date 2022-06-07 00:00:00
team Romania
score 0.0
suf_score 1.0
rank 48.0
rank_suf 59.0
rank_change 1.0
total_points 1446.54
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3094, dtype: object
date 2022-06-07 00:00:00
team Luxembourg
score 1.0
suf_score 0.0
rank 94.0
rank_suf 124.0
rank_change 1.0
total_points 1229.6
result 1
rank_dif 30.0
points_by_rank 0.024194
team_points 3
country_classification Classe B
Name: 3095, dtype: object
date 2022-06-07 00:00:00
team Turkey
score 6.0
suf_score 0.0
rank 43.0
rank_suf 138.0
rank_change 4.0
total_points 1461.81
result 1
rank_dif 95.0
points_by_rank 0.021739
team_points 3
country_classification Classe A
Name: 3096, dtype: object
date 2022-06-08 00:00:00
team Indonesia
score 2.0
suf_score 1.0
rank 159.0
rank_suf 146.0
rank_change -1.0
total_points 1001.61
result 1
rank_dif -13.0
points_by_rank 0.020548
team_points 3
country_classification Classe C
Name: 3097, dtype: object
date 2022-06-08 00:00:00
team Nepal
score 0.0
suf_score 2.0
rank 168.0
rank_suf 91.0
rank_change 1.0
total_points 978.86
result 0
rank_dif -77.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3098, dtype: object
date 2022-06-08 00:00:00
team Yemen
score 0.0
suf_score 0.0
rank 151.0
rank_suf 133.0
rank_change 0.0
total_points 1046.26
result 2
rank_dif -18.0
points_by_rank 0.007519
team_points 1
country_classification Classe C
Name: 3099, dtype: object
date 2022-06-08 00:00:00
team Palestine
score 1.0
suf_score 0.0
rank 100.0
rank_suf 186.0
rank_change 0.0
total_points 1208.9
result 1
rank_dif 86.0
points_by_rank 0.016129
team_points 3
country_classification Classe B
Name: 3100, dtype: object
date 2022-06-08 00:00:00
team Maldives
score 0.0
suf_score 3.0
rank 156.0
rank_suf 111.0
rank_change -1.0
total_points 1025.5
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3101, dtype: object
date 2022-06-08 00:00:00
team Sri Lanka
score 0.0
suf_score 3.0
rank 205.0
rank_suf 83.0
rank_change 1.0
total_points 842.93
result 0
rank_dif -122.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3102, dtype: object
date 2022-06-08 00:00:00
team Afghanistan
score 1.0
suf_score 2.0
rank 150.0
rank_suf 147.0
rank_change 0.0
total_points 1049.77
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3103, dtype: object
date 2022-06-08 00:00:00
team Cambodia
score 0.0
suf_score 2.0
rank 171.0
rank_suf 106.0
rank_change 0.0
total_points 966.61
result 0
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3104, dtype: object
date 2022-06-08 00:00:00
team Bangladesh
score 0.0
suf_score 2.0
rank 188.0
rank_suf 89.0
rank_change 2.0
total_points 903.98
result 0
rank_dif -99.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3105, dtype: object
date 2022-06-08 00:00:00
team Turkmenistan
score 1.0
suf_score 3.0
rank 134.0
rank_suf 154.0
rank_change 0.0
total_points 1117.6
result 0
rank_dif 20.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3106, dtype: object
date 2022-06-08 00:00:00
team Myanmar
score 0.0
suf_score 4.0
rank 152.0
rank_suf 114.0
rank_change 0.0
total_points 1044.56
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3107, dtype: object
date 2022-06-08 00:00:00
team Niger
score 1.0
suf_score 1.0
rank 116.0
rank_suf 86.0
rank_change 2.0
total_points 1153.23
result 2
rank_dif -30.0
points_by_rank 0.011628
team_points 1
country_classification Classe C
Name: 3108, dtype: object
date 2022-06-08 00:00:00
team Algeria
score 2.0
suf_score 0.0
rank 44.0
rank_suf 130.0
rank_change 1.0
total_points 1461.26
result 1
rank_dif 86.0
points_by_rank 0.023077
team_points 3
country_classification Classe A
Name: 3109, dtype: object
date 2022-06-08 00:00:00
team Gambia
score 0.0
suf_score 1.0
rank 123.0
rank_suf 98.0
rank_change -2.0
total_points 1138.19
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3110, dtype: object
date 2022-06-08 00:00:00
team Mauritania
score 0.0
suf_score 0.0
rank 113.0
rank_suf 81.0
rank_change -3.0
total_points 1162.48
result 2
rank_dif -32.0
points_by_rank 0.012346
team_points 1
country_classification Classe C
Name: 3111, dtype: object
date 2022-06-08 00:00:00
team Mozambique
score 1.0
suf_score 0.0
rank 119.0
rank_suf 84.0
rank_change 2.0
total_points 1146.09
result 1
rank_dif -35.0
points_by_rank 0.035714
team_points 3
country_classification Classe C
Name: 3112, dtype: object
date 2022-06-08 00:00:00
team Netherlands
score 2.0
suf_score 1.0
rank 10.0
rank_suf 18.0
rank_change 0.0
total_points 1658.66
result 1
rank_dif 8.0
points_by_rank 0.166667
team_points 3
country_classification Classe S-
Name: 3113, dtype: object
date 2022-06-08 00:00:00
team Poland
score 1.0
suf_score 6.0
rank 26.0
rank_suf 2.0
rank_change -2.0
total_points 1544.2
result 0
rank_dif -24.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3114, dtype: object
date 2022-06-08 00:00:00
team Ukraine
score 1.0
suf_score 0.0
rank 27.0
rank_suf 47.0
rank_change 0.0
total_points 1535.08
result 1
rank_dif 20.0
points_by_rank 0.06383
team_points 3
country_classification Classe A
Name: 3115, dtype: object
date 2022-06-08 00:00:00
team Armenia
score 0.0
suf_score 2.0
rank 92.0
rank_suf 39.0
rank_change 0.0
total_points 1245.13
result 0
rank_dif -53.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3116, dtype: object
date 2022-06-09 00:00:00
team São Tomé and Príncipe
score 1.0
suf_score 5.0
rank 183.0
rank_suf 115.0
rank_change -6.0
total_points 917.62
result 0
rank_dif -68.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3117, dtype: object
date 2022-06-09 00:00:00
team Sierra Leone
score 1.0
suf_score 2.0
rank 108.0
rank_suf 30.0
rank_change 1.0
total_points 1173.89
result 0
rank_dif -78.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3118, dtype: object
date 2022-06-09 00:00:00
team Cameroon
score 1.0
suf_score 0.0
rank 37.0
rank_suf 139.0
rank_change -1.0
total_points 1480.48
result 1
rank_dif 102.0
points_by_rank 0.021583
team_points 3
country_classification Classe A
Name: 3119, dtype: object
date 2022-06-09 00:00:00
team Egypt
score 0.0
suf_score 2.0
rank 32.0
rank_suf 140.0
rank_change -2.0
total_points 1500.67
result 0
rank_dif 108.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3120, dtype: object
date 2022-06-09 00:00:00
team Malawi
score 0.0
suf_score 1.0
rank 120.0
rank_suf 80.0
rank_change 1.0
total_points 1145.08
result 0
rank_dif -40.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3121, dtype: object
date 2022-06-09 00:00:00
team Mali
score 3.0
suf_score 1.0
rank 52.0
rank_suf 161.0
rank_change 4.0
total_points 1436.62
result 1
rank_dif 109.0
points_by_rank 0.018634
team_points 3
country_classification Classe A
Name: 3122, dtype: object
date 2022-06-09 00:00:00
team South Africa
score 1.0
suf_score 2.0
rank 69.0
rank_suf 24.0
rank_change 1.0
total_points 1356.01
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3123, dtype: object
date 2022-06-09 00:00:00
team Curaçao
score 0.0
suf_score 4.0
rank 79.0
rank_suf 38.0
rank_change -1.0
total_points 1298.39
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3124, dtype: object
date 2022-06-09 00:00:00
team Cuba
score 2.0
suf_score 0.0
rank 177.0
rank_suf 127.0
rank_change -2.0
total_points 950.91
result 1
rank_dif -50.0
points_by_rank 0.023622
team_points 3
country_classification Classe D
Name: 3125, dtype: object
date 2022-06-09 00:00:00
team Puerto Rico
score 3.0
suf_score 0.0
rank 172.0
rank_suf 195.0
rank_change 0.0
total_points 962.77
result 1
rank_dif 23.0
points_by_rank 0.015385
team_points 3
country_classification Classe D
Name: 3126, dtype: object
date 2022-06-09 00:00:00
team Czech Republic
score 0.0
suf_score 2.0
rank 33.0
rank_suf 8.0
rank_change 2.0
total_points 1500.62
result 0
rank_dif -25.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3127, dtype: object
date 2022-06-09 00:00:00
team Spain
score 1.0
suf_score 0.0
rank 7.0
rank_suf 14.0
rank_change 0.0
total_points 1709.19
result 1
rank_dif 7.0
points_by_rank 0.214286
team_points 3
country_classification Classe S
Name: 3128, dtype: object
date 2022-06-09 00:00:00
team Slovenia
score 0.0
suf_score 0.0
rank 65.0
rank_suf 41.0
rank_change 1.0
total_points 1378.23
result 2
rank_dif -24.0
points_by_rank 0.02439
team_points 1
country_classification Classe B
Name: 3129, dtype: object
date 2022-06-09 00:00:00
team Serbia
score 1.0
suf_score 0.0
rank 25.0
rank_suf 19.0
rank_change 0.0
total_points 1547.53
result 1
rank_dif -6.0
points_by_rank 0.157895
team_points 3
country_classification Classe A
Name: 3130, dtype: object
date 2022-06-09 00:00:00
team Northern Ireland
score 2.0
suf_score 3.0
rank 54.0
rank_suf 107.0
rank_change 0.0
total_points 1423.55
result 0
rank_dif 53.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3131, dtype: object
date 2022-06-09 00:00:00
team Cyprus
score 0.0
suf_score 3.0
rank 105.0
rank_suf 55.0
rank_change 0.0
total_points 1186.09
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3132, dtype: object
date 2022-06-09 00:00:00
team Bulgaria
score 1.0
suf_score 1.0
rank 73.0
rank_suf 203.0
rank_change 2.0
total_points 1338.78
result 2
rank_dif 130.0
points_by_rank 0.004926
team_points 1
country_classification Classe B
Name: 3133, dtype: object
date 2022-06-09 00:00:00
team Georgia
score 3.0
suf_score 0.0
rank 85.0
rank_suf 62.0
rank_change -1.0
total_points 1276.31
result 1
rank_dif -23.0
points_by_rank 0.048387
team_points 3
country_classification Classe B
Name: 3134, dtype: object
date 2022-06-09 00:00:00
team Estonia
score 2.0
suf_score 1.0
rank 110.0
rank_suf 169.0
rank_change 4.0
total_points 1169.06
result 1
rank_dif 59.0
points_by_rank 0.017751
team_points 3
country_classification Classe C
Name: 3135, dtype: object
date 2022-06-09 00:00:00
team Oman
score 0.0
suf_score 0.0
rank 75.0
rank_suf 101.0
rank_change -4.0
total_points 1324.16
result 2
rank_dif 26.0
points_by_rank 0.009901
team_points 1
country_classification Classe B
Name: 3136, dtype: object
date 2022-06-09 00:00:00
team Iceland
score 1.0
suf_score 0.0
rank 63.0
rank_suf 211.0
rank_change 3.0
total_points 1380.85
result 1
rank_dif 148.0
points_by_rank 0.014218
team_points 3
country_classification Classe B
Name: 3137, dtype: object
date 2022-06-09 00:00:00
team Venezuela
score 1.0
suf_score 0.0
rank 58.0
rank_suf 49.0
rank_change 0.0
total_points 1398.14
result 1
rank_dif -9.0
points_by_rank 0.061224
team_points 3
country_classification Classe B
Name: 3138, dtype: object
date 2022-06-10 00:00:00
team Grenada
score 0.0
suf_score 5.0
rank 170.0
rank_suf 15.0
rank_change 1.0
total_points 968.49
result 0
rank_dif -155.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3139, dtype: object
date 2022-06-10 00:00:00
team Nicaragua
score 2.0
suf_score 0.0
rank 144.0
rank_suf 201.0
rank_change 0.0
total_points 1062.21
result 1
rank_dif 57.0
points_by_rank 0.014925
team_points 3
country_classification Classe C
Name: 3140, dtype: object
date 2022-06-10 00:00:00
team Guatemala
score 1.0
suf_score 1.0
rank 118.0
rank_suf 155.0
rank_change -5.0
total_points 1147.85
result 2
rank_dif 37.0
points_by_rank 0.006452
team_points 1
country_classification Classe C
Name: 3141, dtype: object
date 2022-06-10 00:00:00
team France
score 1.0
suf_score 1.0
rank 3.0
rank_suf 34.0
rank_change 0.0
total_points 1789.85
result 2
rank_dif 31.0
points_by_rank 0.029412
team_points 1
country_classification Classe S
Name: 3142, dtype: object
date 2022-06-10 00:00:00
team Croatia
score 1.0
suf_score 0.0
rank 16.0
rank_suf 11.0
rank_change 1.0
total_points 1621.11
result 1
rank_dif -5.0
points_by_rank 0.272727
team_points 3
country_classification Classe S-
Name: 3143, dtype: object
date 2022-06-10 00:00:00
team Israel
score 2.0
suf_score 1.0
rank 76.0
rank_suf 66.0
rank_change -1.0
total_points 1305.92
result 1
rank_dif -10.0
points_by_rank 0.045455
team_points 3
country_classification Classe B
Name: 3144, dtype: object
date 2022-06-10 00:00:00
team Slovakia
score 1.0
suf_score 0.0
rank 45.0
rank_suf 129.0
rank_change -1.0
total_points 1454.98
result 1
rank_dif 84.0
points_by_rank 0.023256
team_points 3
country_classification Classe A
Name: 3145, dtype: object
date 2022-06-10 00:00:00
team Kazakhstan
score 1.0
suf_score 1.0
rank 125.0
rank_suf 93.0
rank_change 5.0
total_points 1134.77
result 2
rank_dif -32.0
points_by_rank 0.010753
team_points 1
country_classification Classe C
Name: 3146, dtype: object
date 2022-06-10 00:00:00
team Latvia
score 4.0
suf_score 2.0
rank 135.0
rank_suf 180.0
rank_change 0.0
total_points 1105.02
result 1
rank_dif 45.0
points_by_rank 0.016667
team_points 3
country_classification Classe C
Name: 3147, dtype: object
date 2022-06-10 00:00:00
team Liechtenstein
score 1.0
suf_score 2.0
rank 192.0
rank_suf 153.0
rank_change 1.0
total_points 895.08
result 0
rank_dif -39.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3148, dtype: object
date 2022-06-10 00:00:00
team Paraguay
score 2.0
suf_score 2.0
rank 50.0
rank_suf 29.0
rank_change 0.0
total_points 1443.3
result 2
rank_dif -21.0
points_by_rank 0.034483
team_points 1
country_classification Classe A
Name: 3149, dtype: object
date 2022-06-10 00:00:00
team Tunisia
score 2.0
suf_score 0.0
rank 35.0
rank_suf 28.0
rank_change -1.0
total_points 1499.8
result 1
rank_dif -7.0
points_by_rank 0.107143
team_points 3
country_classification Classe A
Name: 3150, dtype: object
date 2022-06-10 00:00:00
team Ghana
score 1.0
suf_score 4.0
rank 60.0
rank_suf 23.0
rank_change -1.0
total_points 1387.36
result 0
rank_dif -37.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3151, dtype: object
date 2022-06-11 00:00:00
team Nepal
score 1.0
suf_score 4.0
rank 168.0
rank_suf 146.0
rank_change 1.0
total_points 978.86
result 0
rank_dif -22.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3152, dtype: object
date 2022-06-11 00:00:00
team Jordan
score 1.0
suf_score 0.0
rank 91.0
rank_suf 159.0
rank_change 1.0
total_points 1259.84
result 1
rank_dif 68.0
points_by_rank 0.018868
team_points 3
country_classification Classe B
Name: 3153, dtype: object
date 2022-06-11 00:00:00
team Philippines
score 1.0
suf_score 0.0
rank 133.0
rank_suf 186.0
rank_change 4.0
total_points 1117.89
result 1
rank_dif 53.0
points_by_rank 0.016129
team_points 3
country_classification Classe C
Name: 3154, dtype: object
date 2022-06-11 00:00:00
team Palestine
score 5.0
suf_score 0.0
rank 100.0
rank_suf 151.0
rank_change 0.0
total_points 1208.9
result 1
rank_dif 51.0
points_by_rank 0.019868
team_points 3
country_classification Classe B
Name: 3155, dtype: object
date 2022-06-11 00:00:00
team Thailand
score 2.0
suf_score 0.0
rank 111.0
rank_suf 205.0
rank_change -1.0
total_points 1167.68
result 1
rank_dif 94.0
points_by_rank 0.014634
team_points 3
country_classification Classe C
Name: 3156, dtype: object
date 2022-06-11 00:00:00
team Maldives
score 0.0
suf_score 4.0
rank 156.0
rank_suf 83.0
rank_change -1.0
total_points 1025.5
result 0
rank_dif -73.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3157, dtype: object
date 2022-06-11 00:00:00
team Hong Kong
score 3.0
suf_score 0.0
rank 147.0
rank_suf 171.0
rank_change -1.0
total_points 1053.39
result 1
rank_dif 24.0
points_by_rank 0.017544
team_points 3
country_classification Classe C
Name: 3158, dtype: object
date 2022-06-11 00:00:00
team Afghanistan
score 1.0
suf_score 2.0
rank 150.0
rank_suf 106.0
rank_change 0.0
total_points 1049.77
result 0
rank_dif -44.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3159, dtype: object
date 2022-06-11 00:00:00
team Turkmenistan
score 2.0
suf_score 1.0
rank 134.0
rank_suf 188.0
rank_change 0.0
total_points 1117.6
result 1
rank_dif 54.0
points_by_rank 0.015957
team_points 3
country_classification Classe C
Name: 3160, dtype: object
date 2022-06-11 00:00:00
team Bahrain
score 2.0
suf_score 1.0
rank 89.0
rank_suf 154.0
rank_change 0.0
total_points 1262.55
result 1
rank_dif 65.0
points_by_rank 0.019481
team_points 3
country_classification Classe B
Name: 3161, dtype: object
date 2022-06-11 00:00:00
team Tajikistan
score 1.0
suf_score 0.0
rank 114.0
rank_suf 158.0
rank_change -1.0
total_points 1159.42
result 1
rank_dif 44.0
points_by_rank 0.018987
team_points 3
country_classification Classe C
Name: 3162, dtype: object
date 2022-06-11 00:00:00
team Suriname
score 0.0
suf_score 3.0
rank 141.0
rank_suf 9.0
rank_change 1.0
total_points 1073.39
result 0
rank_dif -132.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3163, dtype: object
date 2022-06-11 00:00:00
team Haiti
score 6.0
suf_score 2.0
rank 90.0
rank_suf 174.0
rank_change 3.0
total_points 1261.86
result 1
rank_dif 84.0
points_by_rank 0.017241
team_points 3
country_classification Classe B
Name: 3164, dtype: object
date 2022-06-11 00:00:00
team Bermuda
score 2.0
suf_score 3.0
rank 167.0
rank_suf 178.0
rank_change 1.0
total_points 982.43
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3165, dtype: object
date 2022-06-11 00:00:00
team Italy
score 0.0
suf_score 0.0
rank 6.0
rank_suf 5.0
rank_change 0.0
total_points 1723.31
result 2
rank_dif -1.0
points_by_rank 0.2
team_points 1
country_classification Classe S
Name: 3166, dtype: object
date 2022-06-11 00:00:00
team Germany
score 1.0
suf_score 1.0
rank 12.0
rank_suf 40.0
rank_change 1.0
total_points 1650.53
result 2
rank_dif 28.0
points_by_rank 0.025
team_points 1
country_classification Classe S-
Name: 3167, dtype: object
date 2022-06-11 00:00:00
team Belgium
score 1.0
suf_score 1.0
rank 2.0
rank_suf 18.0
rank_change 1.0
total_points 1827.0
result 2
rank_dif 16.0
points_by_rank 0.055556
team_points 1
country_classification Classe S
Name: 3168, dtype: object
date 2022-06-11 00:00:00
team Poland
score 2.0
suf_score 2.0
rank 26.0
rank_suf 10.0
rank_change -2.0
total_points 1544.2
result 2
rank_dif -16.0
points_by_rank 0.1
team_points 1
country_classification Classe A
Name: 3169, dtype: object
date 2022-06-11 00:00:00
team Armenia
score 0.0
suf_score 3.0
rank 92.0
rank_suf 27.0
rank_change 0.0
total_points 1245.13
result 0
rank_dif -65.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3170, dtype: object
date 2022-06-11 00:00:00
team Scotland
score 0.0
suf_score 3.0
rank 39.0
rank_suf 47.0
rank_change -1.0
total_points 1472.66
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3171, dtype: object
date 2022-06-11 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 1.0
rank 59.0
rank_suf 70.0
rank_change 0.0
total_points 1388.63
result 2
rank_dif 11.0
points_by_rank 0.014286
team_points 1
country_classification Classe B
Name: 3172, dtype: object
date 2022-06-11 00:00:00
team Finland
score 0.0
suf_score 1.0
rank 57.0
rank_suf 48.0
rank_change 0.0
total_points 1406.87
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3173, dtype: object
date 2022-06-11 00:00:00
team Lithuania
score 1.0
suf_score 2.0
rank 138.0
rank_suf 124.0
rank_change 1.0
total_points 1092.04
result 0
rank_dif -14.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3174, dtype: object
date 2022-06-11 00:00:00
team Turkey
score 2.0
suf_score 0.0
rank 43.0
rank_suf 94.0
rank_change 4.0
total_points 1461.81
result 1
rank_dif 51.0
points_by_rank 0.031915
team_points 3
country_classification Classe A
Name: 3175, dtype: object
date 2022-06-11 00:00:00
team Panama
score 0.0
suf_score 5.0
rank 61.0
rank_suf 13.0
rank_change -2.0
total_points 1382.79
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3176, dtype: object
date 2022-06-12 00:00:00
team Antigua and Barbuda
score 1.0
suf_score 3.0
rank 127.0
rank_suf 177.0
rank_change -1.0
total_points 1131.07
result 0
rank_dif 50.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3177, dtype: object
date 2022-06-12 00:00:00
team British Virgin Islands
score 0.0
suf_score 6.0
rank 209.0
rank_suf 172.0
rank_change 1.0
total_points 812.94
result 0
rank_dif -37.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3178, dtype: object
date 2022-06-12 00:00:00
team Czech Republic
score 0.0
suf_score 2.0
rank 33.0
rank_suf 7.0
rank_change 2.0
total_points 1500.62
result 0
rank_dif -26.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3179, dtype: object
date 2022-06-12 00:00:00
team Portugal
score 0.0
suf_score 1.0
rank 8.0
rank_suf 14.0
rank_change 0.0
total_points 1674.78
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3180, dtype: object
date 2022-06-12 00:00:00
team Sweden
score 2.0
suf_score 3.0
rank 19.0
rank_suf 41.0
rank_change 2.0
total_points 1584.77
result 0
rank_dif 22.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3181, dtype: object
date 2022-06-12 00:00:00
team Serbia
score 2.0
suf_score 2.0
rank 25.0
rank_suf 65.0
rank_change 0.0
total_points 1547.53
result 2
rank_dif 40.0
points_by_rank 0.015385
team_points 1
country_classification Classe A
Name: 3182, dtype: object
date 2022-06-12 00:00:00
team Cyprus
score 2.0
suf_score 2.0
rank 105.0
rank_suf 54.0
rank_change 0.0
total_points 1186.09
result 2
rank_dif -51.0
points_by_rank 0.018519
team_points 1
country_classification Classe C
Name: 3183, dtype: object
date 2022-06-12 00:00:00
team Kosovo
score 0.0
suf_score 2.0
rank 107.0
rank_suf 55.0
rank_change -2.0
total_points 1173.9
result 0
rank_dif -52.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3184, dtype: object
date 2022-06-12 00:00:00
team Gibraltar
score 0.0
suf_score 4.0
rank 203.0
rank_suf 62.0
rank_change 0.0
total_points 857.2
result 0
rank_dif -141.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3185, dtype: object
date 2022-06-12 00:00:00
team Bulgaria
score 0.0
suf_score 0.0
rank 73.0
rank_suf 85.0
rank_change 2.0
total_points 1338.78
result 2
rank_dif 12.0
points_by_rank 0.011765
team_points 1
country_classification Classe B
Name: 3186, dtype: object
date 2022-06-12 00:00:00
team San Marino
score 0.0
suf_score 1.0
rank 211.0
rank_suf 169.0
rank_change 1.0
total_points 776.97
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3187, dtype: object
date 2022-06-12 00:00:00
team Algeria
score 2.0
suf_score 1.0
rank 44.0
rank_suf 21.0
rank_change 1.0
total_points 1461.26
result 1
rank_dif -23.0
points_by_rank 0.142857
team_points 3
country_classification Classe A
Name: 3188, dtype: object
date 2022-06-13 00:00:00
team Peru
score 0.0
suf_score 0.0
rank 22.0
rank_suf 42.0
rank_change 0.0
total_points 1562.32
result 2
rank_dif 20.0
points_by_rank 0.02381
team_points 1
country_classification Classe A
Name: 3189, dtype: object
date 2022-06-13 00:00:00
team Nigeria
score 10.0
suf_score 0.0
rank 30.0
rank_suf 183.0
rank_change -2.0
total_points 1504.01
result 1
rank_dif 153.0
points_by_rank 0.016393
team_points 3
country_classification Classe A
Name: 3190, dtype: object
date 2022-06-13 00:00:00
team Guinea-Bissau
score 2.0
suf_score 2.0
rank 115.0
rank_suf 108.0
rank_change 2.0
total_points 1158.62
result 2
rank_dif -7.0
points_by_rank 0.009259
team_points 1
country_classification Classe C
Name: 3191, dtype: object
date 2022-06-13 00:00:00
team Liberia
score 0.0
suf_score 2.0
rank 149.0
rank_suf 24.0
rank_change 4.0
total_points 1050.5
result 0
rank_dif -125.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3192, dtype: object
date 2022-06-13 00:00:00
team Canada
score 1.0
suf_score 2.0
rank 38.0
rank_suf 82.0
rank_change 5.0
total_points 1479.0
result 0
rank_dif 44.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3193, dtype: object
date 2022-06-13 00:00:00
team Bahamas
score 0.0
suf_score 4.0
rank 201.0
rank_suf 144.0
rank_change 0.0
total_points 858.5
result 0
rank_dif -57.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3194, dtype: object
date 2022-06-13 00:00:00
team Dominican Republic
score 0.0
suf_score 2.0
rank 155.0
rank_suf 118.0
rank_change -1.0
total_points 1029.42
result 0
rank_dif -37.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3195, dtype: object
date 2022-06-13 00:00:00
team Austria
score 0.0
suf_score 2.0
rank 34.0
rank_suf 11.0
rank_change 4.0
total_points 1500.37
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3196, dtype: object
date 2022-06-13 00:00:00
team Croatia
score 1.0
suf_score 0.0
rank 16.0
rank_suf 3.0
rank_change 1.0
total_points 1621.11
result 1
rank_dif -13.0
points_by_rank 1.0
team_points 3
country_classification Classe S-
Name: 3197, dtype: object
date 2022-06-13 00:00:00
team Israel
score 2.0
suf_score 2.0
rank 76.0
rank_suf 63.0
rank_change -1.0
total_points 1305.92
result 2
rank_dif -13.0
points_by_rank 0.015873
team_points 1
country_classification Classe B
Name: 3198, dtype: object
date 2022-06-13 00:00:00
team Belarus
score 0.0
suf_score 2.0
rank 93.0
rank_suf 129.0
rank_change -1.0
total_points 1243.2
result 0
rank_dif 36.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3199, dtype: object
date 2022-06-13 00:00:00
team Slovakia
score 1.0
suf_score 2.0
rank 45.0
rank_suf 125.0
rank_change -1.0
total_points 1454.98
result 0
rank_dif 80.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3200, dtype: object
date 2022-06-13 00:00:00
team Estonia
score 0.0
suf_score 0.0
rank 110.0
rank_suf 66.0
rank_change 4.0
total_points 1169.06
result 2
rank_dif -44.0
points_by_rank 0.015152
team_points 1
country_classification Classe C
Name: 3201, dtype: object
date 2022-06-14 00:00:00
team New Zealand
score 0.0
suf_score 1.0
rank 101.0
rank_suf 31.0
rank_change -10.0
total_points 1206.07
result 0
rank_dif -70.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3202, dtype: object
date 2022-06-14 00:00:00
team Jordan
score 3.0
suf_score 0.0
rank 91.0
rank_suf 146.0
rank_change 1.0
total_points 1259.84
result 1
rank_dif 55.0
points_by_rank 0.020548
team_points 3
country_classification Classe B
Name: 3203, dtype: object
date 2022-06-14 00:00:00
team Nepal
score 0.0
suf_score 7.0
rank 168.0
rank_suf 159.0
rank_change 1.0
total_points 978.86
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3204, dtype: object
date 2022-06-14 00:00:00
team Philippines
score 0.0
suf_score 4.0
rank 133.0
rank_suf 100.0
rank_change 4.0
total_points 1117.89
result 0
rank_dif -33.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3205, dtype: object
date 2022-06-14 00:00:00
team Yemen
score 0.0
suf_score 2.0
rank 151.0
rank_suf 186.0
rank_change 0.0
total_points 1046.26
result 0
rank_dif 35.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3206, dtype: object
date 2022-06-14 00:00:00
team Sri Lanka
score 0.0
suf_score 1.0
rank 205.0
rank_suf 156.0
rank_change 1.0
total_points 842.93
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3207, dtype: object
date 2022-06-14 00:00:00
team Thailand
score 0.0
suf_score 2.0
rank 111.0
rank_suf 83.0
rank_change -1.0
total_points 1167.68
result 0
rank_dif -28.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3208, dtype: object
date 2022-06-14 00:00:00
team Cambodia
score 2.0
suf_score 2.0
rank 171.0
rank_suf 150.0
rank_change 0.0
total_points 966.61
result 2
rank_dif -21.0
points_by_rank 0.006667
team_points 1
country_classification Classe D
Name: 3209, dtype: object
date 2022-06-14 00:00:00
team Hong Kong
score 0.0
suf_score 4.0
rank 147.0
rank_suf 106.0
rank_change -1.0
total_points 1053.39
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3210, dtype: object
date 2022-06-14 00:00:00
team Turkmenistan
score 0.0
suf_score 1.0
rank 134.0
rank_suf 89.0
rank_change 0.0
total_points 1117.6
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3211, dtype: object
date 2022-06-14 00:00:00
team Bangladesh
score 1.0
suf_score 4.0
rank 188.0
rank_suf 154.0
rank_change 2.0
total_points 903.98
result 0
rank_dif -34.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3212, dtype: object
date 2022-06-14 00:00:00
team Singapore
score 6.0
suf_score 2.0
rank 158.0
rank_suf 152.0
rank_change -3.0
total_points 1012.27
result 1
rank_dif -6.0
points_by_rank 0.019737
team_points 3
country_classification Classe C
Name: 3213, dtype: object
date 2022-06-14 00:00:00
team Mexico
score 1.0
suf_score 1.0
rank 9.0
rank_suf 64.0
rank_change -3.0
total_points 1658.82
result 2
rank_dif 55.0
points_by_rank 0.015625
team_points 1
country_classification Classe S-
Name: 3214, dtype: object
date 2022-06-14 00:00:00
team United States
score 1.0
suf_score 1.0
rank 15.0
rank_suf 74.0
rank_change 2.0
total_points 1633.72
result 2
rank_dif 59.0
points_by_rank 0.013514
team_points 1
country_classification Classe S-
Name: 3215, dtype: object
date 2022-06-14 00:00:00
team Guyana
score 0.0
suf_score 6.0
rank 174.0
rank_suf 90.0
rank_change -1.0
total_points 961.07
result 0
rank_dif -84.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3216, dtype: object
date 2022-06-14 00:00:00
team Hungary
score 4.0
suf_score 0.0
rank 40.0
rank_suf 5.0
rank_change -1.0
total_points 1466.08
result 1
rank_dif -35.0
points_by_rank 0.6
team_points 3
country_classification Classe A
Name: 3217, dtype: object
date 2022-06-14 00:00:00
team Italy
score 2.0
suf_score 5.0
rank 6.0
rank_suf 12.0
rank_change 0.0
total_points 1723.31
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 3218, dtype: object
date 2022-06-14 00:00:00
team Wales
score 2.0
suf_score 3.0
rank 18.0
rank_suf 10.0
rank_change -2.0
total_points 1588.08
result 0
rank_dif -8.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3219, dtype: object
date 2022-06-14 00:00:00
team Belgium
score 1.0
suf_score 0.0
rank 2.0
rank_suf 26.0
rank_change 1.0
total_points 1827.0
result 1
rank_dif 24.0
points_by_rank 0.115385
team_points 3
country_classification Classe S
Name: 3220, dtype: object
date 2022-06-14 00:00:00
team Scotland
score 4.0
suf_score 1.0
rank 39.0
rank_suf 92.0
rank_change -1.0
total_points 1472.66
result 1
rank_dif 53.0
points_by_rank 0.032609
team_points 3
country_classification Classe A
Name: 3221, dtype: object
date 2022-06-14 00:00:00
team Republic of Ireland
score 1.0
suf_score 1.0
rank 47.0
rank_suf 27.0
rank_change -2.0
total_points 1449.48
result 2
rank_dif -20.0
points_by_rank 0.037037
team_points 1
country_classification Classe A
Name: 3222, dtype: object
date 2022-06-14 00:00:00
team Finland
score 2.0
suf_score 3.0
rank 57.0
rank_suf 59.0
rank_change 0.0
total_points 1406.87
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3223, dtype: object
date 2022-06-14 00:00:00
team Montenegro
score 3.0
suf_score 0.0
rank 70.0
rank_suf 48.0
rank_change -2.0
total_points 1342.79
result 1
rank_dif -22.0
points_by_rank 0.0625
team_points 3
country_classification Classe B
Name: 3224, dtype: object
date 2022-06-14 00:00:00
team Faroe Islands
score 2.0
suf_score 2.0
rank 124.0
rank_suf 94.0
rank_change 0.0
total_points 1137.4
result 2
rank_dif -30.0
points_by_rank 0.010638
team_points 1
country_classification Classe C
Name: 3225, dtype: object
date 2022-06-14 00:00:00
team Lithuania
score 0.0
suf_score 2.0
rank 138.0
rank_suf 43.0
rank_change 1.0
total_points 1092.04
result 0
rank_dif -95.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3226, dtype: object
date 2022-06-14 00:00:00
team Andorra
score 1.0
suf_score 2.0
rank 153.0
rank_suf 180.0
rank_change -2.0
total_points 1040.13
result 0
rank_dif 27.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3227, dtype: object
date 2022-06-14 00:00:00
team Latvia
score 2.0
suf_score 0.0
rank 135.0
rank_suf 192.0
rank_change 0.0
total_points 1105.02
result 1
rank_dif 57.0
points_by_rank 0.015625
team_points 3
country_classification Classe C
Name: 3228, dtype: object
date 2022-06-14 00:00:00
team Ghana
score 0.0
suf_score 0.0
rank 60.0
rank_suf 28.0
rank_change -1.0
total_points 1387.36
result 2
rank_dif -32.0
points_by_rank 0.035714
team_points 1
country_classification Classe B
Name: 3229, dtype: object
date 2022-06-14 00:00:00
team Tunisia
score 3.0
suf_score 0.0
rank 35.0
rank_suf 23.0
rank_change -1.0
total_points 1499.8
result 1
rank_dif -12.0
points_by_rank 0.130435
team_points 3
country_classification Classe A
Name: 3230, dtype: object
date 2022-06-14 00:00:00
team Egypt
score 1.0
suf_score 4.0
rank 32.0
rank_suf 29.0
rank_change -2.0
total_points 1500.67
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3231, dtype: object
date 2022-08-31 00:00:00
team Paraguay
score 1.0
suf_score 0.0
rank 50.0
rank_suf 12.0
rank_change 0.0
total_points 1440.13
result 1
rank_dif -38.0
points_by_rank 0.25
team_points 3
country_classification Classe A
Name: 3232, dtype: object
date 2022-09-17 00:00:00
team New Caledonia
score 0.0
suf_score 1.0
rank 160.0
rank_suf 163.0
rank_change 0.0
total_points 999.7
result 0
rank_dif 3.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3233, dtype: object
date 2022-09-17 00:00:00
team New Caledonia
score 0.0
suf_score 1.0
rank 160.0
rank_suf 137.0
rank_change 0.0
total_points 999.7
result 0
rank_dif -23.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3234, dtype: object
date 2022-09-21 00:00:00
team Maldives
score 3.0
suf_score 0.0
rank 156.0
rank_suf 190.0
rank_change 0.0
total_points 1018.25
result 1
rank_dif 34.0
points_by_rank 0.015789
team_points 3
country_classification Classe C
Name: 3235, dtype: object
date 2022-09-21 00:00:00
team Myanmar
score 0.0
suf_score 2.0
rank 158.0
rank_suf 147.0
rank_change 0.0
total_points 1011.91
result 0
rank_dif -11.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3236, dtype: object
date 2022-09-21 00:00:00
team Uganda
score 0.0
suf_score 0.0
rank 90.0
rank_suf 121.0
rank_change 0.0
total_points 1264.56
result 2
rank_dif 31.0
points_by_rank 0.008264
team_points 1
country_classification Classe B
Name: 3237, dtype: object
date 2022-09-21 00:00:00
team Seychelles
score 0.0
suf_score 0.0
rank 198.0
rank_suf 211.0
rank_change 3.0
total_points 860.48
result 2
rank_dif 13.0
points_by_rank 0.004739
team_points 1
country_classification Classe D
Name: 3238, dtype: object
date 2022-09-21 00:00:00
team Singapore
score 0.0
suf_score 4.0
rank 159.0
rank_suf 97.0
rank_change 0.0
total_points 1004.75
result 0
rank_dif -62.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3239, dtype: object
date 2022-09-21 00:00:00
team Ukraine
score 0.0
suf_score 3.0
rank 27.0
rank_suf 45.0
rank_change 0.0
total_points 1542.79
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3240, dtype: object
date 2022-09-22 00:00:00
team New Zealand
score 0.0
suf_score 1.0
rank 103.0
rank_suf 39.0
rank_change 0.0
total_points 1198.96
result 0
rank_dif -64.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3241, dtype: object
date 2022-09-22 00:00:00
team Bangladesh
score 1.0
suf_score 0.0
rank 192.0
rank_suf 174.0
rank_change 0.0
total_points 883.18
result 1
rank_dif -18.0
points_by_rank 0.017241
team_points 3
country_classification Classe D
Name: 3242, dtype: object
date 2022-09-22 00:00:00
team Tunisia
score 1.0
suf_score 0.0
rank 30.0
rank_suf 127.0
rank_change 0.0
total_points 1507.86
result 1
rank_dif 97.0
points_by_rank 0.023622
team_points 3
country_classification Classe A
Name: 3243, dtype: object
date 2022-09-22 00:00:00
team Venezuela
score 0.0
suf_score 1.0
rank 56.0
rank_suf 63.0
rank_change 0.0
total_points 1405.17
result 0
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3244, dtype: object
date 2022-09-22 00:00:00
team Nicaragua
score 1.0
suf_score 2.0
rank 139.0
rank_suf 143.0
rank_change 0.0
total_points 1079.18
result 0
rank_dif 4.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3245, dtype: object
date 2022-09-22 00:00:00
team Malaysia
score 1.0
suf_score 1.0
rank 148.0
rank_suf 111.0
rank_change 1.0
total_points 1057.59
result 2
rank_dif -37.0
points_by_rank 0.009009
team_points 1
country_classification Classe C
Name: 3246, dtype: object
date 2022-09-22 00:00:00
team Tajikistan
score 2.0
suf_score 1.0
rank 109.0
rank_suf 101.0
rank_change 1.0
total_points 1179.1
result 1
rank_dif -8.0
points_by_rank 0.029703
team_points 3
country_classification Classe C
Name: 3247, dtype: object
date 2022-09-22 00:00:00
team Denmark
score 1.0
suf_score 2.0
rank 10.0
rank_suf 15.0
rank_change 0.0
total_points 1665.47
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3248, dtype: object
date 2022-09-22 00:00:00
team Austria
score 0.0
suf_score 2.0
rank 33.0
rank_suf 4.0
rank_change 0.0
total_points 1502.47
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3249, dtype: object
date 2022-09-22 00:00:00
team Wales
score 1.0
suf_score 2.0
rank 19.0
rank_suf 2.0
rank_change 0.0
total_points 1582.13
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3250, dtype: object
date 2022-09-22 00:00:00
team Netherlands
score 2.0
suf_score 0.0
rank 8.0
rank_suf 26.0
rank_change 0.0
total_points 1679.41
result 1
rank_dif 18.0
points_by_rank 0.115385
team_points 3
country_classification Classe S-
Name: 3251, dtype: object
date 2022-09-22 00:00:00
team Faroe Islands
score 1.0
suf_score 1.0
rank 125.0
rank_suf 142.0
rank_change 0.0
total_points 1136.29
result 2
rank_dif 17.0
points_by_rank 0.007042
team_points 1
country_classification Classe C
Name: 3252, dtype: object
date 2022-09-22 00:00:00
team Belarus
score 1.0
suf_score 2.0
rank 96.0
rank_suf 114.0
rank_change 0.0
total_points 1226.55
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3253, dtype: object
date 2022-09-22 00:00:00
team Azerbaijan
score 2.0
suf_score 1.0
rank 128.0
rank_suf 51.0
rank_change 0.0
total_points 1127.17
result 1
rank_dif -77.0
points_by_rank 0.058824
team_points 3
country_classification Classe C
Name: 3254, dtype: object
date 2022-09-22 00:00:00
team Moldova
score 2.0
suf_score 1.0
rank 177.0
rank_suf 129.0
rank_change -1.0
total_points 944.96
result 1
rank_dif -48.0
points_by_rank 0.023256
team_points 3
country_classification Classe D
Name: 3255, dtype: object
date 2022-09-22 00:00:00
team Andorra
score 2.0
suf_score 0.0
rank 152.0
rank_suf 194.0
rank_change 0.0
total_points 1028.7
result 1
rank_dif 42.0
points_by_rank 0.015464
team_points 3
country_classification Classe C
Name: 3256, dtype: object
date 2022-09-23 00:00:00
team United States
score 0.0
suf_score 2.0
rank 14.0
rank_suf 24.0
rank_change 0.0
total_points 1635.01
result 0
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3257, dtype: object
date 2022-09-23 00:00:00
team Guinea
score 0.0
suf_score 1.0
rank 83.0
rank_suf 41.0
rank_change 0.0
total_points 1294.89
result 0
rank_dif -42.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3258, dtype: object
date 2022-09-23 00:00:00
team Honduras
score 0.0
suf_score 3.0
rank 80.0
rank_suf 3.0
rank_change 0.0
total_points 1299.69
result 0
rank_dif -77.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3259, dtype: object
date 2022-09-23 00:00:00
team Ghana
score 0.0
suf_score 3.0
rank 60.0
rank_suf 1.0
rank_change 0.0
total_points 1393.47
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3260, dtype: object
date 2022-09-23 00:00:00
team Uzbekistan
score 2.0
suf_score 0.0
rank 77.0
rank_suf 38.0
rank_change 0.0
total_points 1306.63
result 1
rank_dif -39.0
points_by_rank 0.078947
team_points 3
country_classification Classe B
Name: 3261, dtype: object
date 2022-09-23 00:00:00
team Qatar
score 0.0
suf_score 2.0
rank 48.0
rank_suf 43.0
rank_change -1.0
total_points 1441.97
result 0
rank_dif -5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3262, dtype: object
date 2022-09-23 00:00:00
team Niger
score 0.0
suf_score 3.0
rank 119.0
rank_suf 40.0
rank_change 0.0
total_points 1155.23
result 0
rank_dif -79.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3263, dtype: object
date 2022-09-23 00:00:00
team Uruguay
score 0.0
suf_score 1.0
rank 13.0
rank_suf 22.0
rank_change 0.0
total_points 1640.95
result 0
rank_dif 9.0
points_by_rank 0.0
team_points 0
country_classification Classe S-
Name: 3264, dtype: object
date 2022-09-23 00:00:00
team Oman
score 1.0
suf_score 1.0
rank 75.0
rank_suf 70.0
rank_change 0.0
total_points 1323.03
result 2
rank_dif -5.0
points_by_rank 0.014286
team_points 1
country_classification Classe B
Name: 3265, dtype: object
date 2022-09-23 00:00:00
team Syria
score 0.0
suf_score 2.0
rank 89.0
rank_suf 86.0
rank_change 0.0
total_points 1265.03
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3266, dtype: object
date 2022-09-23 00:00:00
team Costa Rica
score 2.0
suf_score 2.0
rank 34.0
rank_suf 28.0
rank_change 0.0
total_points 1500.06
result 2
rank_dif -6.0
points_by_rank 0.035714
team_points 1
country_classification Classe A
Name: 3267, dtype: object
date 2022-09-23 00:00:00
team Zambia
score 0.0
suf_score 1.0
rank 87.0
rank_suf 46.0
rank_change -1.0
total_points 1270.8
result 0
rank_dif -41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3268, dtype: object
date 2022-09-23 00:00:00
team Chile
score 0.0
suf_score 2.0
rank 29.0
rank_suf 23.0
rank_change 0.0
total_points 1514.86
result 0
rank_dif -6.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3269, dtype: object
date 2022-09-23 00:00:00
team United Arab Emirates
score 0.0
suf_score 1.0
rank 69.0
rank_suf 50.0
rank_change 0.0
total_points 1346.09
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3270, dtype: object
date 2022-09-23 00:00:00
team Equatorial Guinea
score 0.0
suf_score 0.0
rank 98.0
rank_suf 136.0
rank_change 0.0
total_points 1215.33
result 2
rank_dif 38.0
points_by_rank 0.007353
team_points 1
country_classification Classe B
Name: 3271, dtype: object
date 2022-09-23 00:00:00
team Ecuador
score 0.0
suf_score 0.0
rank 44.0
rank_suf 53.0
rank_change 0.0
total_points 1463.74
result 2
rank_dif 9.0
points_by_rank 0.018868
team_points 1
country_classification Classe A
Name: 3272, dtype: object
date 2022-09-23 00:00:00
team Hungary
score 1.0
suf_score 0.0
rank 37.0
rank_suf 11.0
rank_change 0.0
total_points 1486.76
result 1
rank_dif -26.0
points_by_rank 0.272727
team_points 3
country_classification Classe A
Name: 3273, dtype: object
date 2022-09-23 00:00:00
team England
score 0.0
suf_score 1.0
rank 5.0
rank_suf 7.0
rank_change 0.0
total_points 1737.46
result 0
rank_dif 2.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 3274, dtype: object
date 2022-09-23 00:00:00
team Montenegro
score 0.0
suf_score 1.0
rank 67.0
rank_suf 57.0
rank_change 0.0
total_points 1354.59
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3275, dtype: object
date 2022-09-23 00:00:00
team Romania
score 1.0
suf_score 1.0
rank 54.0
rank_suf 59.0
rank_change 0.0
total_points 1427.84
result 2
rank_dif 5.0
points_by_rank 0.016949
team_points 1
country_classification Classe A
Name: 3276, dtype: object
date 2022-09-23 00:00:00
team North Macedonia
score 0.0
suf_score 2.0
rank 64.0
rank_suf 82.0
rank_change 0.0
total_points 1375.2
result 0
rank_dif 18.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3277, dtype: object
date 2022-09-23 00:00:00
team Gibraltar
score 1.0
suf_score 5.0
rank 200.0
rank_suf 74.0
rank_change -1.0
total_points 856.55
result 0
rank_dif -126.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3278, dtype: object
date 2022-09-23 00:00:00
team Malta
score 1.0
suf_score 2.0
rank 169.0
rank_suf 110.0
rank_change 1.0
total_points 974.68
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3279, dtype: object
date 2022-09-24 00:00:00
team Senegal
score 2.0
suf_score 0.0
rank 18.0
rank_suf 81.0
rank_change 0.0
total_points 1584.59
result 1
rank_dif 63.0
points_by_rank 0.037037
team_points 3
country_classification Classe A
Name: 3280, dtype: object
date 2022-09-24 00:00:00
team Guatemala
score 1.0
suf_score 4.0
rank 118.0
rank_suf 17.0
rank_change 2.0
total_points 1161.96
result 0
rank_dif -101.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3281, dtype: object
date 2022-09-24 00:00:00
team Solomon Islands
score 2.0
suf_score 2.0
rank 137.0
rank_suf 163.0
rank_change 0.0
total_points 1092.56
result 2
rank_dif 26.0
points_by_rank 0.006135
team_points 1
country_classification Classe C
Name: 3282, dtype: object
date 2022-09-24 00:00:00
team Myanmar
score 0.0
suf_score 0.0
rank 158.0
rank_suf 147.0
rank_change 0.0
total_points 1011.91
result 2
rank_dif -11.0
points_by_rank 0.006803
team_points 1
country_classification Classe C
Name: 3283, dtype: object
date 2022-09-24 00:00:00
team Singapore
score 1.0
suf_score 1.0
rank 159.0
rank_suf 104.0
rank_change 0.0
total_points 1004.75
result 2
rank_dif -55.0
points_by_rank 0.009615
team_points 1
country_classification Classe C
Name: 3284, dtype: object
date 2022-09-24 00:00:00
team Curaçao
score 2.0
suf_score 3.0
rank 84.0
rank_suf 155.0
rank_change 0.0
total_points 1293.35
result 0
rank_dif 71.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3285, dtype: object
date 2022-09-24 00:00:00
team Maldives
score 3.0
suf_score 1.0
rank 156.0
rank_suf 183.0
rank_change 0.0
total_points 1018.25
result 1
rank_dif 27.0
points_by_rank 0.016393
team_points 3
country_classification Classe C
Name: 3286, dtype: object
date 2022-09-24 00:00:00
team Congo
score 3.0
suf_score 3.0
rank 99.0
rank_suf 105.0
rank_change 0.0
total_points 1215.09
result 2
rank_dif 6.0
points_by_rank 0.009524
team_points 1
country_classification Classe B
Name: 3287, dtype: object
date 2022-09-24 00:00:00
team Benin
score 0.0
suf_score 1.0
rank 91.0
rank_suf 107.0
rank_change 0.0
total_points 1258.71
result 0
rank_dif 16.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3288, dtype: object
date 2022-09-24 00:00:00
team Peru
score 0.0
suf_score 1.0
rank 21.0
rank_suf 12.0
rank_change 0.0
total_points 1562.24
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3289, dtype: object
date 2022-09-24 00:00:00
team Sierra Leone
score 0.0
suf_score 4.0
rank 113.0
rank_suf 68.0
rank_change 0.0
total_points 1169.71
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3290, dtype: object
date 2022-09-24 00:00:00
team Uganda
score 0.0
suf_score 1.0
rank 90.0
rank_suf 131.0
rank_change 0.0
total_points 1264.56
result 0
rank_dif 41.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3291, dtype: object
date 2022-09-24 00:00:00
team Papua New Guinea
score 1.0
suf_score 0.0
rank 161.0
rank_suf 164.0
rank_change 0.0
total_points 997.6
result 1
rank_dif 3.0
points_by_rank 0.018293
team_points 3
country_classification Classe D
Name: 3292, dtype: object
date 2022-09-24 00:00:00
team Portugal
score 4.0
suf_score 0.0
rank 9.0
rank_suf 32.0
rank_change 0.0
total_points 1678.65
result 1
rank_dif 23.0
points_by_rank 0.09375
team_points 3
country_classification Classe S-
Name: 3293, dtype: object
date 2022-09-24 00:00:00
team Switzerland
score 2.0
suf_score 1.0
rank 16.0
rank_suf 6.0
rank_change 0.0
total_points 1621.43
result 1
rank_dif -10.0
points_by_rank 0.5
team_points 3
country_classification Classe S-
Name: 3294, dtype: object
date 2022-09-24 00:00:00
team Ukraine
score 5.0
suf_score 0.0
rank 27.0
rank_suf 92.0
rank_change 0.0
total_points 1542.79
result 1
rank_dif 65.0
points_by_rank 0.032609
team_points 3
country_classification Classe A
Name: 3295, dtype: object
date 2022-09-24 00:00:00
team Republic of Ireland
score 1.0
suf_score 2.0
rank 47.0
rank_suf 45.0
rank_change 0.0
total_points 1442.48
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3296, dtype: object
date 2022-09-24 00:00:00
team Albania
score 1.0
suf_score 2.0
rank 66.0
rank_suf 76.0
rank_change 0.0
total_points 1361.81
result 0
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3297, dtype: object
date 2022-09-24 00:00:00
team Norway
score 1.0
suf_score 2.0
rank 36.0
rank_suf 65.0
rank_change 0.0
total_points 1488.57
result 0
rank_dif 29.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3298, dtype: object
date 2022-09-24 00:00:00
team Sweden
score 1.0
suf_score 4.0
rank 20.0
rank_suf 25.0
rank_change 0.0
total_points 1563.44
result 0
rank_dif 5.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3299, dtype: object
date 2022-09-24 00:00:00
team Kosovo
score 1.0
suf_score 2.0
rank 106.0
rank_suf 58.0
rank_change 0.0
total_points 1183.9
result 0
rank_dif -48.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3300, dtype: object
date 2022-09-24 00:00:00
team Greece
score 0.0
suf_score 1.0
rank 49.0
rank_suf 108.0
rank_change 1.0
total_points 1441.45
result 0
rank_dif 59.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3301, dtype: object
date 2022-09-25 00:00:00
team Trinidad and Tobago
score 1.0
suf_score 2.0
rank 101.0
rank_suf 111.0
rank_change 0.0
total_points 1205.85
result 0
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3302, dtype: object
date 2022-09-25 00:00:00
team Tajikistan
score 0.0
suf_score 0.0
rank 109.0
rank_suf 148.0
rank_change 1.0
total_points 1179.1
result 2
rank_dif 39.0
points_by_rank 0.006757
team_points 1
country_classification Classe C
Name: 3303, dtype: object
date 2022-09-25 00:00:00
team Australia
score 2.0
suf_score 0.0
rank 39.0
rank_suf 103.0
rank_change 0.0
total_points 1483.73
result 1
rank_dif 64.0
points_by_rank 0.029126
team_points 3
country_classification Classe A
Name: 3304, dtype: object
date 2022-09-25 00:00:00
team Liberia
score 0.0
suf_score 0.0
rank 150.0
rank_suf 119.0
rank_change 0.0
total_points 1051.25
result 2
rank_dif -31.0
points_by_rank 0.008403
team_points 1
country_classification Classe C
Name: 3305, dtype: object
date 2022-09-25 00:00:00
team Croatia
score 3.0
suf_score 1.0
rank 15.0
rank_suf 33.0
rank_change 0.0
total_points 1632.15
result 1
rank_dif 18.0
points_by_rank 0.090909
team_points 3
country_classification Classe S-
Name: 3306, dtype: object
date 2022-09-25 00:00:00
team France
score 0.0
suf_score 2.0
rank 4.0
rank_suf 10.0
rank_change 0.0
total_points 1764.85
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 3307, dtype: object
date 2022-09-25 00:00:00
team Poland
score 1.0
suf_score 0.0
rank 26.0
rank_suf 19.0
rank_change 0.0
total_points 1546.18
result 1
rank_dif -7.0
points_by_rank 0.157895
team_points 3
country_classification Classe A
Name: 3308, dtype: object
date 2022-09-25 00:00:00
team Belgium
score 0.0
suf_score 1.0
rank 2.0
rank_suf 8.0
rank_change 0.0
total_points 1821.92
result 0
rank_dif 6.0
points_by_rank 0.0
team_points 0
country_classification Classe S
Name: 3309, dtype: object
date 2022-09-25 00:00:00
team Lithuania
score 0.0
suf_score 1.0
rank 142.0
rank_suf 93.0
rank_change 0.0
total_points 1074.08
result 0
rank_dif -49.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3310, dtype: object
date 2022-09-25 00:00:00
team Belarus
score 1.0
suf_score 1.0
rank 96.0
rank_suf 51.0
rank_change 0.0
total_points 1226.55
result 2
rank_dif -45.0
points_by_rank 0.019608
team_points 1
country_classification Classe B
Name: 3311, dtype: object
date 2022-09-25 00:00:00
team Kazakhstan
score 0.0
suf_score 3.0
rank 114.0
rank_suf 128.0
rank_change 0.0
total_points 1166.28
result 0
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3312, dtype: object
date 2022-09-25 00:00:00
team Latvia
score 1.0
suf_score 1.0
rank 129.0
rank_suf 152.0
rank_change 0.0
total_points 1125.36
result 2
rank_dif 23.0
points_by_rank 0.006579
team_points 1
country_classification Classe C
Name: 3313, dtype: object
date 2022-09-25 00:00:00
team Liechtenstein
score 0.0
suf_score 2.0
rank 194.0
rank_suf 177.0
rank_change 0.0
total_points 873.99
result 0
rank_dif -17.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3314, dtype: object
date 2022-09-26 00:00:00
team Sudan
score 2.0
suf_score 2.0
rank 130.0
rank_suf 138.0
rank_change 0.0
total_points 1124.91
result 2
rank_dif 8.0
points_by_rank 0.007246
team_points 1
country_classification Classe C
Name: 3315, dtype: object
date 2022-09-26 00:00:00
team Syria
score 0.0
suf_score 1.0
rank 89.0
rank_suf 70.0
rank_change 0.0
total_points 1265.03
result 0
rank_dif -19.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3316, dtype: object
date 2022-09-26 00:00:00
team Oman
score 0.0
suf_score 1.0
rank 75.0
rank_suf 86.0
rank_change 0.0
total_points 1323.03
result 0
rank_dif 11.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3317, dtype: object
date 2022-09-26 00:00:00
team Germany
score 3.0
suf_score 3.0
rank 11.0
rank_suf 5.0
rank_change 0.0
total_points 1658.96
result 2
rank_dif -6.0
points_by_rank 0.2
team_points 1
country_classification Classe S-
Name: 3318, dtype: object
date 2022-09-26 00:00:00
team Italy
score 2.0
suf_score 0.0
rank 7.0
rank_suf 37.0
rank_change 0.0
total_points 1713.86
result 1
rank_dif 30.0
points_by_rank 0.081081
team_points 3
country_classification Classe S
Name: 3319, dtype: object
date 2022-09-26 00:00:00
team Finland
score 2.0
suf_score 0.0
rank 59.0
rank_suf 67.0
rank_change 0.0
total_points 1398.41
result 1
rank_dif 8.0
points_by_rank 0.044776
team_points 3
country_classification Classe B
Name: 3320, dtype: object
date 2022-09-26 00:00:00
team Bosnia and Herzegovina
score 1.0
suf_score 4.0
rank 57.0
rank_suf 54.0
rank_change 0.0
total_points 1403.98
result 0
rank_dif -3.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3321, dtype: object
date 2022-09-26 00:00:00
team Georgia
score 2.0
suf_score 1.0
rank 82.0
rank_suf 200.0
rank_change 0.0
total_points 1296.46
result 1
rank_dif 118.0
points_by_rank 0.015
team_points 3
country_classification Classe B
Name: 3322, dtype: object
date 2022-09-26 00:00:00
team Bulgaria
score 1.0
suf_score 0.0
rank 74.0
rank_suf 64.0
rank_change 0.0
total_points 1325.16
result 1
rank_dif -10.0
points_by_rank 0.046875
team_points 3
country_classification Classe B
Name: 3323, dtype: object
date 2022-09-26 00:00:00
team Estonia
score 4.0
suf_score 0.0
rank 110.0
rank_suf 211.0
rank_change 1.0
total_points 1177.4
result 1
rank_dif 101.0
points_by_rank 0.014218
team_points 3
country_classification Classe C
Name: 3324, dtype: object
date 2022-09-27 00:00:00
team Papua New Guinea
score 1.0
suf_score 0.0
rank 161.0
rank_suf 163.0
rank_change 0.0
total_points 997.6
result 1
rank_dif 2.0
points_by_rank 0.018405
team_points 3
country_classification Classe D
Name: 3325, dtype: object
date 2022-09-27 00:00:00
team Nigeria
score 1.0
suf_score 2.0
rank 31.0
rank_suf 41.0
rank_change 0.0
total_points 1504.7
result 0
rank_dif 10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3326, dtype: object
date 2022-09-27 00:00:00
team Jamaica
score 0.0
suf_score 3.0
rank 62.0
rank_suf 3.0
rank_change 0.0
total_points 1382.06
result 0
rank_dif -59.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3327, dtype: object
date 2022-09-27 00:00:00
team Panama
score 2.0
suf_score 0.0
rank 61.0
rank_suf 85.0
rank_change 0.0
total_points 1389.27
result 1
rank_dif 24.0
points_by_rank 0.035294
team_points 3
country_classification Classe B
Name: 3328, dtype: object
date 2022-09-27 00:00:00
team Tunisia
score 1.0
suf_score 5.0
rank 30.0
rank_suf 1.0
rank_change 0.0
total_points 1507.86
result 0
rank_dif -29.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3329, dtype: object
date 2022-09-27 00:00:00
team Laos
score 0.0
suf_score 1.0
rank 183.0
rank_suf 190.0
rank_change 0.0
total_points 914.66
result 0
rank_dif 7.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3330, dtype: object
date 2022-09-27 00:00:00
team Comoros
score 1.0
suf_score 2.0
rank 127.0
rank_suf 55.0
rank_change 1.0
total_points 1127.44
result 0
rank_dif -72.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3331, dtype: object
date 2022-09-27 00:00:00
team Uruguay
score 2.0
suf_score 0.0
rank 13.0
rank_suf 43.0
rank_change 0.0
total_points 1640.95
result 1
rank_dif 30.0
points_by_rank 0.069767
team_points 3
country_classification Classe S-
Name: 3332, dtype: object
date 2022-09-27 00:00:00
team Uzbekistan
score 1.0
suf_score 2.0
rank 77.0
rank_suf 34.0
rank_change 0.0
total_points 1306.63
result 0
rank_dif -43.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3333, dtype: object
date 2022-09-27 00:00:00
team Japan
score 0.0
suf_score 0.0
rank 24.0
rank_suf 44.0
rank_change 0.0
total_points 1554.69
result 2
rank_dif 20.0
points_by_rank 0.022727
team_points 1
country_classification Classe A
Name: 3334, dtype: object
date 2022-09-27 00:00:00
team Liberia
score 0.0
suf_score 3.0
rank 150.0
rank_suf 40.0
rank_change 0.0
total_points 1051.25
result 0
rank_dif -110.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3335, dtype: object
date 2022-09-27 00:00:00
team Togo
score 2.0
suf_score 2.0
rank 126.0
rank_suf 98.0
rank_change -1.0
total_points 1130.22
result 2
rank_dif -28.0
points_by_rank 0.010204
team_points 1
country_classification Classe C
Name: 3336, dtype: object
date 2022-09-27 00:00:00
team Nicaragua
score 0.0
suf_score 1.0
rank 139.0
rank_suf 60.0
rank_change 0.0
total_points 1079.18
result 0
rank_dif -79.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3337, dtype: object
date 2022-09-27 00:00:00
team Guatemala
score 1.0
suf_score 2.0
rank 118.0
rank_suf 80.0
rank_change 2.0
total_points 1161.96
result 0
rank_dif -38.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3338, dtype: object
date 2022-09-27 00:00:00
team Curaçao
score 1.0
suf_score 2.0
rank 84.0
rank_suf 155.0
rank_change 0.0
total_points 1293.35
result 0
rank_dif 71.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3339, dtype: object
date 2022-09-27 00:00:00
team Senegal
score 1.0
suf_score 1.0
rank 18.0
rank_suf 22.0
rank_change 0.0
total_points 1584.59
result 2
rank_dif 4.0
points_by_rank 0.045455
team_points 1
country_classification Classe A
Name: 3340, dtype: object
date 2022-09-27 00:00:00
team Cameroon
score 0.0
suf_score 1.0
rank 38.0
rank_suf 28.0
rank_change 0.0
total_points 1484.95
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3341, dtype: object
date 2022-09-27 00:00:00
team Tanzania
score 1.0
suf_score 2.0
rank 131.0
rank_suf 121.0
rank_change 0.0
total_points 1121.91
result 0
rank_dif -10.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3342, dtype: object
date 2022-09-27 00:00:00
team Benin
score 1.0
suf_score 3.0
rank 91.0
rank_suf 105.0
rank_change 0.0
total_points 1258.71
result 0
rank_dif 14.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3343, dtype: object
date 2022-09-27 00:00:00
team Israel
score 1.0
suf_score 2.0
rank 76.0
rank_suf 169.0
rank_change 0.0
total_points 1316.35
result 0
rank_dif 93.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3344, dtype: object
date 2022-09-27 00:00:00
team Congo
score 0.0
suf_score 2.0
rank 99.0
rank_suf 107.0
rank_change 0.0
total_points 1215.09
result 0
rank_dif 8.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3345, dtype: object
date 2022-09-27 00:00:00
team Colombia
score 3.0
suf_score 2.0
rank 17.0
rank_suf 12.0
rank_change 0.0
total_points 1604.07
result 1
rank_dif -5.0
points_by_rank 0.25
team_points 3
country_classification Classe S-
Name: 3346, dtype: object
date 2022-09-27 00:00:00
team Bangladesh
score 1.0
suf_score 3.0
rank 192.0
rank_suf 176.0
rank_change 0.0
total_points 883.18
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe D
Name: 3347, dtype: object
date 2022-09-27 00:00:00
team Morocco
score 0.0
suf_score 0.0
rank 23.0
rank_suf 50.0
rank_change 1.0
total_points 1558.35
result 2
rank_dif 27.0
points_by_rank 0.02
team_points 1
country_classification Classe A
Name: 3348, dtype: object
date 2022-09-27 00:00:00
team El Salvador
score 1.0
suf_score 4.0
rank 71.0
rank_suf 21.0
rank_change 0.0
total_points 1333.48
result 0
rank_dif -50.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3349, dtype: object
date 2022-09-27 00:00:00
team Chile
score 2.0
suf_score 2.0
rank 29.0
rank_suf 48.0
rank_change 0.0
total_points 1514.86
result 2
rank_dif 19.0
points_by_rank 0.020833
team_points 1
country_classification Classe A
Name: 3350, dtype: object
date 2022-09-27 00:00:00
team United States
score 0.0
suf_score 0.0
rank 14.0
rank_suf 53.0
rank_change 0.0
total_points 1635.01
result 2
rank_dif 39.0
points_by_rank 0.018868
team_points 1
country_classification Classe S-
Name: 3351, dtype: object
date 2022-09-27 00:00:00
team Botswana
score 0.0
suf_score 1.0
rank 146.0
rank_suf 68.0
rank_change -3.0
total_points 1060.17
result 0
rank_dif -78.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3352, dtype: object
date 2022-09-27 00:00:00
team Venezuela
score 4.0
suf_score 0.0
rank 56.0
rank_suf 69.0
rank_change 0.0
total_points 1405.17
result 1
rank_dif 13.0
points_by_rank 0.043478
team_points 3
country_classification Classe A
Name: 3353, dtype: object
date 2022-09-27 00:00:00
team India
score 0.0
suf_score 3.0
rank 104.0
rank_suf 97.0
rank_change 0.0
total_points 1198.65
result 0
rank_dif -7.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3354, dtype: object
date 2022-09-27 00:00:00
team Spain
score 1.0
suf_score 0.0
rank 6.0
rank_suf 9.0
rank_change 0.0
total_points 1716.93
result 1
rank_dif 3.0
points_by_rank 0.333333
team_points 3
country_classification Classe S
Name: 3355, dtype: object
date 2022-09-27 00:00:00
team Czech Republic
score 1.0
suf_score 2.0
rank 32.0
rank_suf 16.0
rank_change 0.0
total_points 1502.9
result 0
rank_dif -16.0
points_by_rank 0.0
team_points 0
country_classification Classe A
Name: 3356, dtype: object
date 2022-09-27 00:00:00
team Armenia
score 2.0
suf_score 3.0
rank 92.0
rank_suf 47.0
rank_change 0.0
total_points 1242.42
result 0
rank_dif -45.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3357, dtype: object
date 2022-09-27 00:00:00
team Scotland
score 0.0
suf_score 0.0
rank 45.0
rank_suf 27.0
rank_change 0.0
total_points 1462.96
result 2
rank_dif -18.0
points_by_rank 0.037037
team_points 1
country_classification Classe A
Name: 3358, dtype: object
date 2022-09-27 00:00:00
team Iceland
score 1.0
suf_score 1.0
rank 63.0
rank_suf 66.0
rank_change 0.0
total_points 1379.61
result 2
rank_dif 3.0
points_by_rank 0.015152
team_points 1
country_classification Classe B
Name: 3359, dtype: object
date 2022-09-27 00:00:00
team Serbia
score 2.0
suf_score 0.0
rank 25.0
rank_suf 36.0
rank_change 0.0
total_points 1549.53
result 1
rank_dif 11.0
points_by_rank 0.083333
team_points 3
country_classification Classe A
Name: 3360, dtype: object
date 2022-09-27 00:00:00
team Slovenia
score 1.0
suf_score 1.0
rank 65.0
rank_suf 20.0
rank_change 0.0
total_points 1372.48
result 2
rank_dif -45.0
points_by_rank 0.05
team_points 1
country_classification Classe B
Name: 3361, dtype: object
date 2022-09-27 00:00:00
team Cyprus
score 1.0
suf_score 5.0
rank 108.0
rank_suf 106.0
rank_change 1.0
total_points 1180.52
result 0
rank_dif -2.0
points_by_rank 0.0
team_points 0
country_classification Classe C
Name: 3362, dtype: object
date 2022-09-27 00:00:00
team Northern Ireland
score 1.0
suf_score 3.0
rank 58.0
rank_suf 49.0
rank_change 0.0
total_points 1399.1
result 0
rank_dif -9.0
points_by_rank 0.0
team_points 0
country_classification Classe B
Name: 3363, dtype: object
stats_val = []
for index, row in team_stats.iterrows():
team = row["team"]
date = row["date"]
past_games = team_stats.query("team == @team & date < @date").sort_values(by=['date'], ascending=False)
last5 = past_games.head(5)
goals = past_games["score"].mean()
goals_l5 = last5["score"].mean()
goals_suf = past_games["suf_score"].mean()
goals_suf_l5 = last5["suf_score"].mean()
rank = past_games["rank_suf"].mean()
rank_l5 = last5["rank_suf"].mean()
if len(last5) > 0:
points = past_games["total_points"].values[0] - past_games["total_points"].values[-1]#qtd de pontos ganhos
points_l5 = last5["total_points"].values[0] - last5["total_points"].values[-1]
else:
points = 0
points_l5 = 0
gp = past_games["team_points"].mean()
gp_l5 = last5["team_points"].mean()
gp_rank = past_games["points_by_rank"].mean()
gp_rank_l5 = last5["points_by_rank"].mean()
stats_val.append([goals, goals_l5, goals_suf, goals_suf_l5, rank, rank_l5, points, points_l5, gp, gp_l5, gp_rank, gp_rank_l5])stats_cols = ["goals_mean", "goals_mean_l5", "goals_suf_mean", "goals_suf_mean_l5", "rank_mean", "rank_mean_l5", "points_mean", "points_mean_l5", "game_points_mean", "game_points_mean_l5", "game_points_rank_mean", "game_points_rank_mean_l5"]
stats_df = pd.DataFrame(stats_val, columns=stats_cols)stats_df| goals_mean | goals_mean_l5 | goals_suf_mean | goals_suf_mean_l5 | rank_mean | rank_mean_l5 | points_mean | points_mean_l5 | game_points_mean | game_points_mean_l5 | game_points_rank_mean | game_points_rank_mean_l5 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | NaN | NaN | NaN | NaN | NaN | NaN | 0.00 | 0.00 | NaN | NaN | NaN | NaN |
| 1 | NaN | NaN | NaN | NaN | NaN | NaN | 0.00 | 0.00 | NaN | NaN | NaN | NaN |
| 2 | NaN | NaN | NaN | NaN | NaN | NaN | 0.00 | 0.00 | NaN | NaN | NaN | NaN |
| 3 | NaN | NaN | NaN | NaN | NaN | NaN | 0.00 | 0.00 | NaN | NaN | NaN | NaN |
| 4 | NaN | NaN | NaN | NaN | NaN | NaN | 0.00 | 0.00 | NaN | NaN | NaN | NaN |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 6723 | 1.100000 | 1.4 | 1.780000 | 1.0 | 58.660000 | 97.0 | -91.39 | -1.24 | 1.120000 | 1.8 | 0.035917 | 0.021851 |
| 6724 | 1.800000 | 2.2 | 1.111111 | 1.0 | 54.533333 | 42.0 | 90.53 | 2.00 | 1.866667 | 2.0 | 0.053327 | 0.073887 |
| 6725 | 1.380952 | 1.0 | 1.000000 | 1.8 | 76.357143 | 29.2 | -19.52 | -5.75 | 1.404762 | 1.0 | 0.026035 | 0.029545 |
| 6726 | 0.767442 | 0.6 | 1.767442 | 1.4 | 70.418605 | 63.8 | -99.48 | -5.57 | 0.767442 | 1.0 | 0.009687 | 0.019652 |
| 6727 | 1.023256 | 1.2 | 1.279070 | 1.4 | 57.906977 | 95.6 | -92.90 | -24.45 | 1.139535 | 1.0 | 0.022315 | 0.009470 |
6728 rows × 12 columns
full_df = pd.concat([team_stats.reset_index(drop=True), stats_df], axis=1, ignore_index=False)full_df| date | team | score | suf_score | rank | rank_suf | rank_change | total_points | result | rank_dif | ... | goals_suf_mean | goals_suf_mean_l5 | rank_mean | rank_mean_l5 | points_mean | points_mean_l5 | game_points_mean | game_points_mean_l5 | game_points_rank_mean | game_points_rank_mean_l5 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 2018-07-01 | Russia | 1.0 | 1.0 | 49.0 | 6.0 | -12.0 | 1758.00 | 2 | 43.0 | ... | NaN | NaN | NaN | NaN | 0.00 | 0.00 | NaN | NaN | NaN | NaN |
| 1 | 2018-07-01 | Croatia | 1.0 | 1.0 | 12.0 | 15.0 | -6.0 | 2036.00 | 2 | -3.0 | ... | NaN | NaN | NaN | NaN | 0.00 | 0.00 | NaN | NaN | NaN | NaN |
| 2 | 2018-07-02 | Brazil | 2.0 | 0.0 | 4.0 | 10.0 | 1.0 | 2160.00 | 0 | -6.0 | ... | NaN | NaN | NaN | NaN | 0.00 | 0.00 | NaN | NaN | NaN | NaN |
| 3 | 2018-07-02 | Belgium | 3.0 | 2.0 | 5.0 | 41.0 | -1.0 | 2124.00 | 0 | -36.0 | ... | NaN | NaN | NaN | NaN | 0.00 | 0.00 | NaN | NaN | NaN | NaN |
| 4 | 2018-07-03 | Sweden | 1.0 | 0.0 | 21.0 | 8.0 | -1.0 | 1955.00 | 0 | 13.0 | ... | NaN | NaN | NaN | NaN | 0.00 | 0.00 | NaN | NaN | NaN | NaN |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 6723 | 2022-09-27 | Iceland | 1.0 | 1.0 | 63.0 | 66.0 | 0.0 | 1379.61 | 2 | 3.0 | ... | 1.780000 | 1.0 | 58.660000 | 97.0 | -91.39 | -1.24 | 1.120000 | 1.8 | 0.035917 | 0.021851 |
| 6724 | 2022-09-27 | Serbia | 2.0 | 0.0 | 25.0 | 36.0 | 0.0 | 1549.53 | 1 | 11.0 | ... | 1.111111 | 1.0 | 54.533333 | 42.0 | 90.53 | 2.00 | 1.866667 | 2.0 | 0.053327 | 0.073887 |
| 6725 | 2022-09-27 | Slovenia | 1.0 | 1.0 | 65.0 | 20.0 | 0.0 | 1372.48 | 2 | -45.0 | ... | 1.000000 | 1.8 | 76.357143 | 29.2 | -19.52 | -5.75 | 1.404762 | 1.0 | 0.026035 | 0.029545 |
| 6726 | 2022-09-27 | Cyprus | 1.0 | 5.0 | 108.0 | 106.0 | 1.0 | 1180.52 | 0 | -2.0 | ... | 1.767442 | 1.4 | 70.418605 | 63.8 | -99.48 | -5.57 | 0.767442 | 1.0 | 0.009687 | 0.019652 |
| 6727 | 2022-09-27 | Northern Ireland | 1.0 | 3.0 | 58.0 | 49.0 | 0.0 | 1399.10 | 0 | -9.0 | ... | 1.279070 | 1.4 | 57.906977 | 95.6 | -92.90 | -24.45 | 1.139535 | 1.0 | 0.022315 | 0.009470 |
6728 rows × 25 columns
home_team_stats = full_df.iloc[:int(full_df.shape[0]/2),:]
away_team_stats = full_df.iloc[int(full_df.shape[0]/2):,:]The new columns:
home_team_stats.columns[-12:]Index(['goals_mean', 'goals_mean_l5', 'goals_suf_mean', 'goals_suf_mean_l5',
'rank_mean', 'rank_mean_l5', 'points_mean', 'points_mean_l5',
'game_points_mean', 'game_points_mean_l5', 'game_points_rank_mean',
'game_points_rank_mean_l5'],
dtype='object')
home_team_stats = home_team_stats[home_team_stats.columns[-12:]]
away_team_stats = away_team_stats[away_team_stats.columns[-12:]]home_team_stats.columns = ['home_'+str(col) for col in home_team_stats.columns]
away_team_stats.columns = ['away_'+str(col) for col in away_team_stats.columns]Para unirmos os dataframes mas sabermos de qual seleção está se referindo o DataFrams, iremos adicionar os sufixos “home_” e “away_”
match_stats = pd.concat([home_team_stats, away_team_stats.reset_index(drop=True)], axis=1, ignore_index=False)full_df = pd.concat([df, match_stats.reset_index(drop=True)], axis=1, ignore_index=False)full_df.tail(5)| date | home_team | away_team | home_score | away_score | tournament | city | country | neutral | total_points_home | ... | away_goals_suf_mean | away_goals_suf_mean_l5 | away_rank_mean | away_rank_mean_l5 | away_points_mean | away_points_mean_l5 | away_game_points_mean | away_game_points_mean_l5 | away_game_points_rank_mean | away_game_points_rank_mean_l5 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3359 | 2022-09-27 | Albania | Iceland | 1.0 | 1.0 | UEFA Nations League | Tirana | Albania | False | 1361.81 | ... | 1.780000 | 1.0 | 58.660000 | 97.0 | -91.39 | -1.24 | 1.120000 | 1.8 | 0.035917 | 0.021851 |
| 3360 | 2022-09-27 | Norway | Serbia | 0.0 | 2.0 | UEFA Nations League | Oslo | Norway | False | 1488.57 | ... | 1.111111 | 1.0 | 54.533333 | 42.0 | 90.53 | 2.00 | 1.866667 | 2.0 | 0.053327 | 0.073887 |
| 3361 | 2022-09-27 | Sweden | Slovenia | 1.0 | 1.0 | UEFA Nations League | Stockholm | Sweden | False | 1563.44 | ... | 1.000000 | 1.8 | 76.357143 | 29.2 | -19.52 | -5.75 | 1.404762 | 1.0 | 0.026035 | 0.029545 |
| 3362 | 2022-09-27 | Kosovo | Cyprus | 5.0 | 1.0 | UEFA Nations League | Pristina | Kosovo | False | 1183.90 | ... | 1.767442 | 1.4 | 70.418605 | 63.8 | -99.48 | -5.57 | 0.767442 | 1.0 | 0.009687 | 0.019652 |
| 3363 | 2022-09-27 | Greece | Northern Ireland | 3.0 | 1.0 | UEFA Nations League | Athens | Greece | False | 1441.45 | ... | 1.279070 | 1.4 | 57.906977 | 95.6 | -92.90 | -24.45 | 1.139535 | 1.0 | 0.022315 | 0.009470 |
5 rows × 50 columns
full_df.columnsIndex(['date', 'home_team', 'away_team', 'home_score', 'away_score',
'tournament', 'city', 'country', 'neutral', 'total_points_home',
'previous_points_home', 'rank_home', 'rank_change_home',
'country_classification_home', 'total_points_away',
'previous_points_away', 'rank_away', 'rank_change_away',
'country_classification_away', 'result', 'home_team_points',
'away_team_points', 'rank_dif', 'sg', 'points_home_by_rank',
'points_away_by_rank', 'home_goals_mean', 'home_goals_mean_l5',
'home_goals_suf_mean', 'home_goals_suf_mean_l5', 'home_rank_mean',
'home_rank_mean_l5', 'home_points_mean', 'home_points_mean_l5',
'home_game_points_mean', 'home_game_points_mean_l5',
'home_game_points_rank_mean', 'home_game_points_rank_mean_l5',
'away_goals_mean', 'away_goals_mean_l5', 'away_goals_suf_mean',
'away_goals_suf_mean_l5', 'away_rank_mean', 'away_rank_mean_l5',
'away_points_mean', 'away_points_mean_l5', 'away_game_points_mean',
'away_game_points_mean_l5', 'away_game_points_rank_mean',
'away_game_points_rank_mean_l5'],
dtype='object')
Quantificando a importância do jogo: simplesmente dizendo se o jogo é amistoso ou não.
def find_friendly(x):
if x == "Friendly":
return 1
else: return 0
full_df["is_friendly"] = full_df["tournament"].apply(lambda x: find_friendly(x)) full_df = pd.get_dummies(full_df, columns=["is_friendly"])full_df.columnsIndex(['date', 'home_team', 'away_team', 'home_score', 'away_score',
'tournament', 'city', 'country', 'neutral', 'total_points_home',
'previous_points_home', 'rank_home', 'rank_change_home',
'country_classification_home', 'total_points_away',
'previous_points_away', 'rank_away', 'rank_change_away',
'country_classification_away', 'result', 'home_team_points',
'away_team_points', 'rank_dif', 'sg', 'points_home_by_rank',
'points_away_by_rank', 'home_goals_mean', 'home_goals_mean_l5',
'home_goals_suf_mean', 'home_goals_suf_mean_l5', 'home_rank_mean',
'home_rank_mean_l5', 'home_points_mean', 'home_points_mean_l5',
'home_game_points_mean', 'home_game_points_mean_l5',
'home_game_points_rank_mean', 'home_game_points_rank_mean_l5',
'away_goals_mean', 'away_goals_mean_l5', 'away_goals_suf_mean',
'away_goals_suf_mean_l5', 'away_rank_mean', 'away_rank_mean_l5',
'away_points_mean', 'away_points_mean_l5', 'away_game_points_mean',
'away_game_points_mean_l5', 'away_game_points_rank_mean',
'away_game_points_rank_mean_l5', 'is_friendly_0', 'is_friendly_1'],
dtype='object')
And, after that, we select only columns that will help in Features’ analysis.
Vamos retirar as seguintes variáveis:
tournament, city, country, neutral, total_points_home, previous_points_home, total_points_away, previous_points_away, home_team_points, away_team_points, sg, points_home_by_rank, points_away_by_rank, rank_change_home e rank_change_away
base_df = full_df[["date", "home_team", "away_team", "rank_home", "rank_away","home_score", "away_score","result", "rank_dif", "rank_change_home", "rank_change_away", 'home_goals_mean',
'country_classification_home', 'country_classification_away',
'home_goals_mean_l5', 'home_goals_suf_mean', 'home_goals_suf_mean_l5',
'home_rank_mean', 'home_rank_mean_l5', 'home_points_mean',
'home_points_mean_l5', 'away_goals_mean', 'away_goals_mean_l5',
'away_goals_suf_mean', 'away_goals_suf_mean_l5', 'away_rank_mean',
'away_rank_mean_l5', 'away_points_mean', 'away_points_mean_l5','home_game_points_mean', 'home_game_points_mean_l5',
'home_game_points_rank_mean', 'home_game_points_rank_mean_l5','away_game_points_mean',
'away_game_points_mean_l5', 'away_game_points_rank_mean',
'away_game_points_rank_mean_l5',
'is_friendly_0', 'is_friendly_1']]
base_df.tail()| date | home_team | away_team | rank_home | rank_away | home_score | away_score | result | rank_dif | rank_change_home | ... | home_game_points_mean | home_game_points_mean_l5 | home_game_points_rank_mean | home_game_points_rank_mean_l5 | away_game_points_mean | away_game_points_mean_l5 | away_game_points_rank_mean | away_game_points_rank_mean_l5 | is_friendly_0 | is_friendly_1 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 3359 | 2022-09-27 | Albania | Iceland | 66.0 | 63.0 | 1.0 | 1.0 | 2 | 3.0 | 0.0 | ... | 1.365854 | 0.6 | 0.019776 | 0.007318 | 1.120000 | 1.8 | 0.035917 | 0.021851 | 1 | 0 |
| 3360 | 2022-09-27 | Norway | Serbia | 36.0 | 25.0 | 0.0 | 2.0 | 1 | 11.0 | 0.0 | ... | 1.833333 | 2.0 | 0.041984 | 0.090235 | 1.866667 | 2.0 | 0.053327 | 0.073887 | 1 | 0 |
| 3361 | 2022-09-27 | Sweden | Slovenia | 20.0 | 65.0 | 1.0 | 1.0 | 2 | -45.0 | 0.0 | ... | 1.603774 | 0.6 | 0.053765 | 0.009231 | 1.404762 | 1.0 | 0.026035 | 0.029545 | 1 | 0 |
| 3362 | 2022-09-27 | Kosovo | Cyprus | 106.0 | 108.0 | 5.0 | 1.0 | 0 | -2.0 | 0.0 | ... | 1.326087 | 1.2 | 0.018478 | 0.016825 | 0.767442 | 1.0 | 0.009687 | 0.019652 | 1 | 0 |
| 3363 | 2022-09-27 | Greece | Northern Ireland | 49.0 | 58.0 | 3.0 | 1.0 | 0 | -9.0 | 1.0 | ... | 1.590909 | 2.4 | 0.050090 | 0.028040 | 1.139535 | 1.0 | 0.022315 | 0.009470 | 1 | 0 |
5 rows × 39 columns
base_df.isna().sum()date 0
home_team 0
away_team 0
rank_home 0
rank_away 0
home_score 0
away_score 0
result 0
rank_dif 0
rank_change_home 0
rank_change_away 0
home_goals_mean 105
country_classification_home 0
country_classification_away 0
home_goals_mean_l5 105
home_goals_suf_mean 105
home_goals_suf_mean_l5 105
home_rank_mean 105
home_rank_mean_l5 105
home_points_mean 0
home_points_mean_l5 0
away_goals_mean 96
away_goals_mean_l5 96
away_goals_suf_mean 96
away_goals_suf_mean_l5 96
away_rank_mean 96
away_rank_mean_l5 96
away_points_mean 0
away_points_mean_l5 0
home_game_points_mean 105
home_game_points_mean_l5 105
home_game_points_rank_mean 105
home_game_points_rank_mean_l5 105
away_game_points_mean 96
away_game_points_mean_l5 96
away_game_points_rank_mean 96
away_game_points_rank_mean_l5 96
is_friendly_0 0
is_friendly_1 0
dtype: int64
The games with NA are the ones who mean could not be calculated (games from the beginning of the dataset). Those will be dropped.
base_df_no_fg = base_df.dropna()Data Analysis
Now, we need to analyze all features that were created and check if they have predictive power. Also, if they don’t have, we need to create some that have, like differences of home and away teams. To analyze the predictive power, I’ll assign draw games as a lose of the home team and will create a binary problem.
df = base_df_no_fgdf = df.query("result != 2")df['result'].value_counts()0 1561
1 914
Name: result, dtype: int64
def no_draw(x):
if x == 2:
return 1
else:
return x
df["target"] = df["result"].apply(lambda x: no_draw(x))C:\Users\user\AppData\Local\Temp\ipykernel_18204\1906038641.py:7: SettingWithCopyWarning:
A value is trying to be set on a copy of a slice from a DataFrame.
Try using .loc[row_indexer,col_indexer] = value instead
See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy
df["target"] = df["result"].apply(lambda x: no_draw(x))
Analysis that will be made:
- Violin and boxplot to analyze if the features have different distributions according to the target
- Scatter plots to analyze correlations
data1 = df[list(df.columns[8:20].values) + ["target"]]
data2 = df[df.columns[20:]]scaled = (data1[:-1] - data1[:-1].mean()) / data1[:-1].std()
scaled["target"] = data1["target"]
violin1 = pd.melt(scaled,id_vars="target", var_name="features", value_name="value")
scaled = (data2[:-1] - data2[:-1].mean()) / data2[:-1].std()
scaled["target"] = data2["target"]
violin2 = pd.melt(scaled,id_vars="target", var_name="features", value_name="value")C:\Users\user\AppData\Local\Temp\ipykernel_18204\2229707586.py:1: FutureWarning: The default value of numeric_only in DataFrame.mean is deprecated. In a future version, it will default to False. In addition, specifying 'numeric_only=None' is deprecated. Select only valid columns or specify the value of numeric_only to silence this warning.
scaled = (data1[:-1] - data1[:-1].mean()) / data1[:-1].std()
C:\Users\user\AppData\Local\Temp\ipykernel_18204\2229707586.py:1: FutureWarning: The default value of numeric_only in DataFrame.std is deprecated. In a future version, it will default to False. In addition, specifying 'numeric_only=None' is deprecated. Select only valid columns or specify the value of numeric_only to silence this warning.
scaled = (data1[:-1] - data1[:-1].mean()) / data1[:-1].std()
plt.figure(figsize=(15,10))
sns.violinplot(x="features", y="value", hue="target", data=violin1,split=True, inner="quart")
plt.xticks(rotation=90)
plt.show()ValueError: object arrays are not supported
<Figure size 1500x1000 with 0 Axes>
plt.figure(figsize=(15,10))
sns.violinplot(x="features", y="value", hue="target", data=violin2,split=True, inner="quart")
plt.xticks(rotation=90)
plt.show()
With the plots, we find that rank difference is the only good separator of the data. But, we can create features that get the differences between home and away team and analyze if they are good separating the data.
dif = df.copy()
dif.loc[:, "goals_dif"] = dif["home_goals_mean"] - dif["away_goals_mean"]
dif.loc[:, "goals_dif_l5"] = dif["home_goals_mean_l5"] - dif["away_goals_mean_l5"]
dif.loc[:, "goals_suf_dif"] = dif["home_goals_suf_mean"] - dif["away_goals_suf_mean"]
dif.loc[:, "goals_suf_dif_l5"] = dif["home_goals_suf_mean_l5"] - dif["away_goals_suf_mean_l5"]
dif.loc[:, "goals_made_suf_dif"] = dif["home_goals_mean"] - dif["away_goals_suf_mean"]
dif.loc[:, "goals_made_suf_dif_l5"] = dif["home_goals_mean_l5"] - dif["away_goals_suf_mean_l5"]
dif.loc[:, "goals_suf_made_dif"] = dif["home_goals_suf_mean"] - dif["away_goals_mean"]
dif.loc[:, "goals_suf_made_dif_l5"] = dif["home_goals_suf_mean_l5"] - dif["away_goals_mean_l5"]data_difs = dif.iloc[:, -8:]
scaled = (data_difs - data_difs.mean()) / data_difs.std()
scaled["target"] = data2["target"]
violin = pd.melt(scaled,id_vars="target", var_name="features", value_name="value")
plt.figure(figsize=(10,10))
sns.violinplot(x="features", y="value", hue="target", data=violin,split=True, inner="quart")
plt.xticks(rotation=90)
plt.show()
With that plot, we see that goal differences are good separator, and goals suffered difference too. Differences between goals made and goals suffered of the teams are not very good separators.
Now, we have 5 features:
- rank_dif
- goals_dif
- goals_dif_l5
- goals_suf_dif
- goals_suf_dif_l5
We can create other features, like differences of points made, differences of points made by rank faced and differences of rank faced.
dif.loc[:, "dif_points"] = dif["home_game_points_mean"] - dif["away_game_points_mean"]
dif.loc[:, "dif_points_l5"] = dif["home_game_points_mean_l5"] - dif["away_game_points_mean_l5"]
dif.loc[:, "dif_points_rank"] = dif["home_game_points_rank_mean"] - dif["away_game_points_rank_mean"]
dif.loc[:, "dif_points_rank_l5"] = dif["home_game_points_rank_mean_l5"] - dif["away_game_points_rank_mean_l5"]dif.loc[:, "dif_rank_agst"] = dif["home_rank_mean"] - dif["away_rank_mean"]
dif.loc[:, "dif_rank_agst_l5"] = dif["home_rank_mean_l5"] - dif["away_rank_mean_l5"]Also, we can calculate goals made and suffered by rank, and check this difference.
dif.loc[:, "goals_per_ranking_dif"] = (dif["home_goals_mean"] / dif["home_rank_mean"]) - (dif["away_goals_mean"] / dif["away_rank_mean"])
dif.loc[:, "goals_per_ranking_suf_dif"] = (dif["home_goals_suf_mean"] / dif["home_rank_mean"]) - (dif["away_goals_suf_mean"] / dif["away_rank_mean"])
dif.loc[:, "goals_per_ranking_dif_l5"] = (dif["home_goals_mean_l5"] / dif["home_rank_mean"]) - (dif["away_goals_mean_l5"] / dif["away_rank_mean"])
dif.loc[:, "goals_per_ranking_suf_dif_l5"] = (dif["home_goals_suf_mean_l5"] / dif["home_rank_mean"]) - (dif["away_goals_suf_mean_l5"] / dif["away_rank_mean"])data_difs = dif.iloc[:, -10:]
scaled = (data_difs - data_difs.mean()) / data_difs.std()
scaled["target"] = data2["target"]
violin = pd.melt(scaled,id_vars="target", var_name="features", value_name="value")
plt.figure(figsize=(15,10))
sns.violinplot(x="features", y="value", hue="target", data=violin,split=True, inner="quart")
plt.xticks(rotation=90)
plt.show()
Due to the low values, the violin plot was not a good choice to analyze if features are really separating the data in this case. We will see then the boxplot:
plt.figure(figsize=(15,10))
sns.boxplot(x="features", y="value", hue="target", data=violin)
plt.xticks(rotation=90)
plt.show()
Difference of points (full and last 5 games), difference of points by ranking faced (full and last 5 games) and difference of rank faced (full and last 5 games) are good features. Also, some of the generated features have very similar distributions which will be analyzed using scatterplots.
sns.jointplot(data = data_difs, x = 'goals_per_ranking_dif', y = 'goals_per_ranking_dif_l5', kind="reg")
plt.show()
Goals difference by ranking faced and its last 5 games version has very similar distributions. So, we will use only the full version (goals_per_ranking_dif).
sns.jointplot(data = data_difs, x = 'dif_rank_agst', y = 'dif_rank_agst_l5', kind="reg")
plt.show()
sns.jointplot(data = data_difs, x = 'dif_points', y = 'dif_points_l5', kind="reg")
plt.show()
sns.jointplot(data = data_difs, x = 'dif_points_rank', y = 'dif_points_rank_l5', kind="reg")
plt.show()
For the differences of rank faced, game points by rank faced and mean game points by rank faced, the two versions (full and 5 games) are not so similar. So, we will use both.
Based on that, final features are:
- rank_dif
- goals_dif
- goals_dif_l5
- goals_suf_dif
- goals_suf_dif_l5
- dif_rank_agst
- dif_rank_agst_l5
- goals_per_ranking_dif
- dif_points_rank
- dif_points_rank_l5
- is_friendly
def create_db(df):
columns = ["home_team", "away_team", "result", "rank_dif", "home_goals_mean", "home_rank_mean", "away_goals_mean", "away_rank_mean", "home_rank_mean_l5", "away_rank_mean_l5", "home_goals_suf_mean", "away_goals_suf_mean", "home_goals_mean_l5", "away_goals_mean_l5", "home_goals_suf_mean_l5", "away_goals_suf_mean_l5", "home_game_points_rank_mean", "home_game_points_rank_mean_l5", "away_game_points_rank_mean", "away_game_points_rank_mean_l5","is_friendly_0", "is_friendly_1"]
base = df.loc[:, columns]
base.loc[:, "goals_dif"] = base["home_goals_mean"] - base["away_goals_mean"]
base.loc[:, "goals_dif_l5"] = base["home_goals_mean_l5"] - base["away_goals_mean_l5"]
base.loc[:, "goals_suf_dif"] = base["home_goals_suf_mean"] - base["away_goals_suf_mean"]
base.loc[:, "goals_suf_dif_l5"] = base["home_goals_suf_mean_l5"] - base["away_goals_suf_mean_l5"]
base.loc[:, "goals_per_ranking_dif"] = (base["home_goals_mean"] / base["home_rank_mean"]) - (base["away_goals_mean"] / base["away_rank_mean"])
base.loc[:, "dif_rank_agst"] = base["home_rank_mean"] - base["away_rank_mean"]
base.loc[:, "dif_rank_agst_l5"] = base["home_rank_mean_l5"] - base["away_rank_mean_l5"]
base.loc[:, "dif_points_rank"] = base["home_game_points_rank_mean"] - base["away_game_points_rank_mean"]
base.loc[:, "dif_points_rank_l5"] = base["home_game_points_rank_mean_l5"] - base["away_game_points_rank_mean_l5"]
model_df = base[["home_team", "away_team", "result", "rank_dif", "goals_dif", "goals_dif_l5", "goals_suf_dif", "goals_suf_dif_l5", "goals_per_ranking_dif", "dif_rank_agst", "dif_rank_agst_l5", "dif_points_rank", "dif_points_rank_l5", "is_friendly_0", "is_friendly_1"]]
return model_df
# Onde era target coloquei resultmodel_db = create_db(df)model_db| home_team | away_team | result | rank_dif | goals_dif | goals_dif_l5 | goals_suf_dif | goals_suf_dif_l5 | goals_per_ranking_dif | dif_rank_agst | dif_rank_agst_l5 | dif_points_rank | dif_points_rank_l5 | is_friendly_0 | is_friendly_1 | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 8 | Brazil | Belgium | 1 | -1.0 | -1.000000 | -1.000000 | -2.000000 | -2.000000 | 0.126829 | -31.000000 | -31.0 | 0.226829 | 0.226829 | 1 | 0 |
| 9 | Sweden | England | 1 | 14.0 | 0.000000 | 0.000000 | -1.000000 | -1.000000 | 0.066176 | -9.000000 | -9.0 | 0.316176 | 0.316176 | 1 | 0 |
| 11 | France | Belgium | 0 | -3.0 | -0.500000 | -0.500000 | -1.500000 | -1.500000 | 0.031746 | -8.500000 | -8.5 | -0.197300 | -0.197300 | 1 | 0 |
| 12 | Croatia | England | 0 | 5.0 | 0.000000 | 0.000000 | 1.000000 | 1.000000 | -0.032072 | 13.000000 | 13.0 | -0.057303 | -0.057303 | 1 | 0 |
| 13 | Belgium | England | 0 | -2.0 | 0.333333 | 0.333333 | 0.333333 | 0.333333 | 0.026383 | -1.000000 | -1.0 | 0.207163 | 0.207163 | 1 | 0 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 3356 | Switzerland | Czech Republic | 0 | -16.0 | 0.358418 | 0.000000 | -0.231718 | -0.600000 | 0.008882 | -0.212160 | 3.4 | 0.064932 | 0.103571 | 1 | 0 |
| 3357 | Republic of Ireland | Armenia | 0 | -45.0 | -0.181872 | 0.600000 | -1.293381 | -1.800000 | 0.002826 | -21.721527 | 10.2 | 0.035339 | 0.010026 | 1 | 0 |
| 3360 | Norway | Serbia | 1 | 11.0 | -0.038095 | -0.800000 | -0.230159 | 0.000000 | -0.005282 | 9.014286 | -3.4 | -0.011343 | 0.016348 | 1 | 0 |
| 3362 | Kosovo | Cyprus | 0 | -2.0 | 0.667341 | 0.600000 | -0.463094 | 0.000000 | 0.007625 | 7.037917 | 1.6 | 0.008791 | -0.002827 | 1 | 0 |
| 3363 | Greece | Northern Ireland | 0 | -9.0 | 0.067653 | 0.200000 | -0.369979 | -1.200000 | -0.002915 | 16.024841 | 0.6 | 0.027775 | 0.018570 | 1 | 0 |
2475 rows × 15 columns
The model
Now that we have a database ready and with columns with predictive power, we can start our modelling.
Two models will be tested: Random Forest and Gradient Boosting. The selected will be the one with best recall.
factor_result = pd.factorize(model_db['result'])model_db['result'] = factor_result[0]
definitions = factor_result[1]X = model_db.iloc[:, 3:]
y = model_db[["result"]]from sklearn.ensemble import RandomForestClassifier, GradientBoostingClassifier
from sklearn.model_selection import train_test_split, GridSearchCVX_train, X_test, y_train, y_test = train_test_split(X, y, test_size= 0.2, random_state=1)gb = GradientBoostingClassifier(random_state=5)
params = {"learning_rate": [0.01, 0.1, 0.5],
"min_samples_split": [5, 10],
"min_samples_leaf": [3, 5],
"max_depth":[3,5,10],
"max_features":["sqrt"],
"n_estimators":[100, 200]
}
gb_cv = GridSearchCV(gb, params, cv = 3, n_jobs = -1, verbose = False)print(gb_cv)GridSearchCV(cv=3, estimator=GradientBoostingClassifier(random_state=5),
n_jobs=-1,
param_grid={'learning_rate': [0.01, 0.1, 0.5],
'max_depth': [3, 5, 10], 'max_features': ['sqrt'],
'min_samples_leaf': [3, 5],
'min_samples_split': [5, 10],
'n_estimators': [100, 200]},
verbose=False)
gb_cv.fit(X_train.values, np.ravel(y_train))GridSearchCV(cv=3, estimator=GradientBoostingClassifier(random_state=5),
n_jobs=-1,
param_grid={'learning_rate': [0.01, 0.1, 0.5],
'max_depth': [3, 5, 10], 'max_features': ['sqrt'],
'min_samples_leaf': [3, 5],
'min_samples_split': [5, 10],
'n_estimators': [100, 200]},
verbose=False)In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
GridSearchCV(cv=3, estimator=GradientBoostingClassifier(random_state=5),
n_jobs=-1,
param_grid={'learning_rate': [0.01, 0.1, 0.5],
'max_depth': [3, 5, 10], 'max_features': ['sqrt'],
'min_samples_leaf': [3, 5],
'min_samples_split': [5, 10],
'n_estimators': [100, 200]},
verbose=False)GradientBoostingClassifier(random_state=5)
GradientBoostingClassifier(random_state=5)
gb = gb_cv.best_estimator_gbGradientBoostingClassifier(learning_rate=0.01, max_features='sqrt',
min_samples_leaf=3, min_samples_split=10,
n_estimators=200, random_state=5)In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
GradientBoostingClassifier(learning_rate=0.01, max_features='sqrt',
min_samples_leaf=3, min_samples_split=10,
n_estimators=200, random_state=5)print(len(y_pred), len(y_test))645 645
np.ravel(y_test)array([0, 1, 0, 1, 0, 0, 2, 2, 2, 2, 0, 0, 1, 2, 1, 2, 2, 2, 2, 1, 0, 2,
2, 0, 2, 2, 2, 2, 0, 1, 1, 2, 2, 1, 2, 2, 1, 2, 2, 2, 2, 2, 2, 2,
2, 0, 2, 1, 2, 0, 1, 2, 2, 0, 2, 0, 2, 2, 0, 2, 2, 1, 2, 1, 0, 1,
0, 2, 2, 2, 1, 1, 2, 0, 2, 0, 2, 1, 0, 2, 0, 2, 1, 0, 0, 0, 1, 1,
2, 1, 2, 0, 0, 2, 0, 2, 0, 2, 2, 0, 0, 0, 2, 0, 2, 2, 2, 1, 2, 2,
2, 2, 2, 2, 2, 0, 0, 0, 2, 0, 0, 0, 2, 0, 1, 2, 0, 0, 2, 0, 0, 1,
2, 2, 2, 0, 1, 2, 2, 2, 2, 1, 1, 2, 1, 2, 2, 2, 1, 0, 1, 0, 2, 2,
0, 2, 0, 1, 1, 2, 2, 1, 1, 0, 0, 1, 0, 2, 0, 1, 1, 2, 2, 0, 2, 0,
2, 0, 2, 0, 0, 2, 2, 2, 2, 0, 2, 2, 0, 0, 1, 2, 2, 1, 2, 2, 2, 2,
2, 0, 1, 2, 1, 0, 0, 0, 0, 1, 1, 2, 0, 0, 1, 0, 2, 2, 1, 0, 1, 2,
0, 0, 1, 2, 0, 2, 0, 0, 2, 2, 0, 2, 2, 0, 2, 1, 0, 1, 1, 2, 2, 2,
2, 2, 1, 1, 0, 1, 1, 1, 0, 0, 1, 0, 2, 0, 2, 1, 2, 2, 1, 0, 2, 2,
0, 0, 1, 2, 0, 1, 1, 1, 2, 2, 0, 0, 2, 2, 1, 2, 1, 0, 2, 1, 2, 2,
1, 2, 2, 0, 1, 1, 2, 0, 0, 2, 0, 2, 0, 2, 1, 0, 2, 0, 2, 0, 0, 1,
1, 2, 1, 0, 2, 2, 2, 0, 1, 0, 2, 1, 2, 2, 1, 0, 1, 2, 2, 2, 0, 2,
2, 0, 0, 2, 2, 2, 0, 2, 1, 2, 0, 0, 2, 0, 0, 2, 2, 0, 1, 1, 0, 2,
2, 0, 1, 1, 1, 1, 1, 2, 0, 1, 1, 2, 2, 0, 2, 0, 1, 0, 0, 0, 2, 0,
0, 2, 1, 0, 2, 1, 1, 2, 1, 0, 1, 2, 0, 2, 2, 1, 0, 0, 2, 2, 1, 1,
0, 1, 2, 2, 2, 1, 1, 2, 2, 0, 1, 2, 0, 2, 2, 2, 2, 0, 1, 2, 2, 1,
1, 1, 0, 0, 2, 2, 2, 1, 1, 2, 2, 1, 0, 0, 0, 2, 0, 2, 2, 2, 0, 0,
2, 0, 1, 1, 2, 2, 1, 1, 2, 0, 2, 0, 2, 2, 2, 1, 1, 0, 1, 1, 0, 1,
0, 0, 0, 2, 1, 2, 1, 1, 1, 2, 2, 1, 2, 1, 0, 0, 0, 2, 0, 1, 0, 0,
1, 0, 0, 0, 2, 1, 0, 0, 0, 2, 1, 1, 1, 1, 0, 0, 2, 0, 1, 0, 2, 2,
1, 2, 1, 0, 0, 0, 2, 1, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2, 2, 0, 1,
0, 1, 0, 2, 1, 2, 0, 2, 0, 0, 0, 2, 1, 2, 0, 2, 2, 1, 2, 1, 0, 2,
2, 2, 1, 2, 2, 1, 1, 1, 2, 2, 2, 0, 1, 2, 2, 2, 2, 2, 2, 0, 0, 2,
1, 2, 2, 0, 2, 0, 0, 2, 0, 0, 2, 0, 1, 2, 2, 2, 1, 0, 0, 2, 2, 2,
2, 2, 1, 1, 1, 1, 2, 0, 0, 2, 0, 2, 0, 2, 2, 2, 2, 1, 2, 0, 2, 1,
1, 0, 1, 0, 2, 0, 1, 0, 2, 2, 1, 2, 2, 2, 2, 0, 1, 1, 0, 2, 0, 2,
2, 2, 0, 0, 0, 0, 2])
# Predicting the Test set results
y_pred = gb.predict(X_test)
#Reverse factorize (converting y_pred from 0s,1s and 2s to Iris-setosa, Iris-versicolor and Iris-virginica
# reversefactor = dict(zip(range(3),definitions))
# y_test = np.vectorize(reversefactor.get)(y_test)
# y_pred = np.vectorize(reversefactor.get)(y_pred)
# Making the Confusion Matrix
pd.crosstab(np.ravel(y_test), y_pred)e:\repos\FIFA_WC_22_Predictions\venv\lib\site-packages\sklearn\base.py:443: UserWarning: X has feature names, but GradientBoostingClassifier was fitted without feature names
warnings.warn(
| col_0 | 0 | 1 |
|---|---|---|
| row_0 | ||
| 0 | 271 | 36 |
| 1 | 74 | 114 |
params_rf = {"max_depth": [20],
"min_samples_split": [10],
"max_leaf_nodes": [175],
"min_samples_leaf": [5],
"n_estimators": [250],
"max_features": ["sqrt"],
}
rf = RandomForestClassifier(random_state=1)
rf_cv = GridSearchCV(rf, params_rf, cv = 3, n_jobs = -1, verbose = False)
rf_cv.fit(X_train.values, np.ravel(y_train))GridSearchCV(cv=3, estimator=RandomForestClassifier(random_state=1), n_jobs=-1,
param_grid={'max_depth': [20], 'max_features': ['sqrt'],
'max_leaf_nodes': [175], 'min_samples_leaf': [5],
'min_samples_split': [10], 'n_estimators': [250]},
verbose=False)In a Jupyter environment, please rerun this cell to show the HTML representation or trust the notebook. On GitHub, the HTML representation is unable to render, please try loading this page with nbviewer.org.
GridSearchCV(cv=3, estimator=RandomForestClassifier(random_state=1), n_jobs=-1,
param_grid={'max_depth': [20], 'max_features': ['sqrt'],
'max_leaf_nodes': [175], 'min_samples_leaf': [5],
'min_samples_split': [10], 'n_estimators': [250]},
verbose=False)RandomForestClassifier(random_state=1)
RandomForestClassifier(random_state=1)
rf = rf_cv.best_estimator_# Predicting the Test set results
y_pred = rf.predict(X_test)
#Reverse factorize (converting y_pred from 0s,1s and 2s to Iris-setosa, Iris-versicolor and Iris-virginica
# reversefactor = dict(zip(range(3),definitions))
# y_test = np.vectorize(reversefactor.get)(y_test)
# y_pred = np.vectorize(reversefactor.get)(y_pred)
# Making the Confusion Matrix
pd.crosstab(np.ravel(y_test), y_pred)e:\repos\FIFA_WC_22_Predictions\venv\lib\site-packages\sklearn\base.py:443: UserWarning: X has feature names, but RandomForestClassifier was fitted without feature names
warnings.warn(
| col_0 | 0 | 1 |
|---|---|---|
| row_0 | ||
| 0 | 264 | 43 |
| 1 | 71 | 117 |
from sklearn.metrics import confusion_matrix, roc_curve, roc_auc_scoredef analyze(model):
fpr, tpr, _ = roc_curve(y_test, model.predict_proba(X_test.values)[:,1]) #test AUC
plt.figure(figsize=(15,10))
plt.plot([0, 1], [0, 1], 'k--')
plt.plot(fpr, tpr, label="test")
fpr_train, tpr_train, _ = roc_curve(y_train, model.predict_proba(X_train.values)[:,1]) #train AUC
plt.plot(fpr_train, tpr_train, label="train")
auc_test = roc_auc_score(y_test, model.predict_proba(X_test.values)[:,1])
auc_train = roc_auc_score(y_train, model.predict_proba(X_train.values)[:,1])
plt.legend()
plt.title('AUC score is %.2f on test and %.2f on training'%(auc_test, auc_train))
plt.show()
plt.figure(figsize=(15, 10))
cm = confusion_matrix(y_test, model.predict(X_test.values))
sns.heatmap(cm, annot=True, fmt="d")analyze(gb)

analyze(rf)

The Random Forest model is a little bit better but seems to underfit. So, we will use the Gradient Boosting Model.
from operator import itemgetterWC Simulation
The first thing is to create FIFA World Cup games. To do this, I’ll get in the wikipedia the teams and group phase matches.
import lxmldfs = pd.read_html(r"https://en.wikipedia.org/wiki/2022_FIFA_World_Cup#Teams")dfs[12]| Pos | Team.mw-parser-output .navbar{display:inline;font-size:88%;font-weight:normal}.mw-parser-output .navbar-collapse{float:left;text-align:left}.mw-parser-output .navbar-boxtext{word-spacing:0}.mw-parser-output .navbar ul{display:inline-block;white-space:nowrap;line-height:inherit}.mw-parser-output .navbar-brackets::before{margin-right:-0.125em;content:"[ "}.mw-parser-output .navbar-brackets::after{margin-left:-0.125em;content:" ]"}.mw-parser-output .navbar li{word-spacing:-0.125em}.mw-parser-output .navbar a>span,.mw-parser-output .navbar a>abbr{text-decoration:inherit}.mw-parser-output .navbar-mini abbr{font-variant:small-caps;border-bottom:none;text-decoration:none;cursor:inherit}.mw-parser-output .navbar-ct-full{font-size:114%;margin:0 7em}.mw-parser-output .navbar-ct-mini{font-size:114%;margin:0 4em}vte | Pld | W | D | L | GF | GA | GD | Pts | Qualification | |
|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 1 | Qatar (H) | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | Advance to knockout stage |
| 1 | 2 | Ecuador | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | Advance to knockout stage |
| 2 | 3 | Senegal | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NaN |
| 3 | 4 | Netherlands | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | NaN |
[[a.split(" ")[0]] for a in list(dfs[12].iloc[:, 1].values)][['Qatar'], ['Ecuador'], ['Senegal'], ['Netherlands']]
matches = []
groups = ["A", "B", "C", "D", "E", "F", "G", "H"]
group_count = 0
table = {}
#TABLE -> TEAM, POINTS, WIN PROBS (CRITERIO DE DESEMPATE)
table[groups[group_count]] = [[a.split(" ")[0], 0, []] for a in list(dfs[12].iloc[:, 1].values)]table{'A': [['England', 0, []],
['Iran', 0, []],
['United', 0, []],
['Wales', 0, []]]}
for i in range(13, 68, 1):
if len(dfs[i].columns) == 3:
team_1 = dfs[i].columns.values[0]
team_2 = dfs[i].columns.values[-1]
matches.append((groups[group_count], team_1, team_2))
else:
group_count+=1
table[groups[group_count]] = [[a, 0, []] for a in list(dfs[i].iloc[:, 1].values)]table{'A': [['Qatar', 0, []],
['Ecuador', 0, []],
['Senegal', 0, []],
['Netherlands', 0, []]],
'B': [['England', 0, []],
['Iran', 0, []],
['United States', 0, []],
['Wales', 0, []]],
'C': [['Argentina', 0, []],
['Saudi Arabia', 0, []],
['Mexico', 0, []],
['Poland', 0, []]],
'D': [['France', 0, []],
['Australia', 0, []],
['Denmark', 0, []],
['Tunisia', 0, []]],
'E': [['Spain', 0, []],
['Costa Rica', 0, []],
['Germany', 0, []],
['Japan', 0, []]],
'F': [['Belgium', 0, []],
['Canada', 0, []],
['Morocco', 0, []],
['Croatia', 0, []]],
'G': [['Brazil', 0, []],
['Serbia', 0, []],
['Switzerland', 0, []],
['Cameroon', 0, []]],
'H': [['Portugal', 0, []],
['Ghana', 0, []],
['Uruguay', 0, []],
['South Korea', 0, []]]}
Above, we also store the team’s points at the group and its probabilities of win in each game. The mean of team’s wins probabilities will be used as tiebreaker when two teams have the same number of points.
matches[:10][('A', 'Qatar', 'Ecuador'),
('A', 'Senegal', 'Netherlands'),
('A', 'Qatar', 'Senegal'),
('A', 'Netherlands', 'Ecuador'),
('A', 'Ecuador', 'Senegal'),
('A', 'Netherlands', 'Qatar'),
('B', 'England', 'Iran'),
('B', 'United States', 'Wales'),
('B', 'Wales', 'Iran'),
('B', 'England', 'United States')]
I will use last game stats as the stats for each team involved in the game. Like, for Brazil vs Serbia, the stats of Brazil is the ones they had in the last game and for Serbia too.
def find_stats(team_1):
#team_1 = "Qatar"
past_games = team_stats_raw[(team_stats_raw["team"] == team_1)].sort_values("date")
last5 = team_stats_raw[(team_stats_raw["team"] == team_1)].sort_values("date").tail(5)
team_1_rank = past_games["rank"].values[-1]
team_1_goals = past_games.score.mean()
team_1_goals_l5 = last5.score.mean()
team_1_goals_suf = past_games.suf_score.mean()
team_1_goals_suf_l5 = last5.suf_score.mean()
team_1_rank_suf = past_games.rank_suf.mean()
team_1_rank_suf_l5 = last5.rank_suf.mean()
team_1_gp_rank = past_games.points_by_rank.mean()
team_1_gp_rank_l5 = last5.points_by_rank.mean()
return [team_1_rank, team_1_goals, team_1_goals_l5, team_1_goals_suf, team_1_goals_suf_l5, team_1_rank_suf, team_1_rank_suf_l5, team_1_gp_rank, team_1_gp_rank_l5]def find_features(team_1, team_2):
rank_dif = team_1[0] - team_2[0]
goals_dif = team_1[1] - team_2[1]
goals_dif_l5 = team_1[2] - team_2[2]
goals_suf_dif = team_1[3] - team_2[3]
goals_suf_dif_l5 = team_1[4] - team_2[4]
goals_per_ranking_dif = (team_1[1]/team_1[5]) - (team_2[1]/team_2[5])
dif_rank_agst = team_1[5] - team_2[5]
dif_rank_agst_l5 = team_1[6] - team_2[6]
dif_gp_rank = team_1[7] - team_2[7]
dif_gp_rank_l5 = team_1[8] - team_2[8]
return [rank_dif, goals_dif, goals_dif_l5, goals_suf_dif, goals_suf_dif_l5, goals_per_ranking_dif, dif_rank_agst, dif_rank_agst_l5, dif_gp_rank, dif_gp_rank_l5, 1, 0]Now, we are able to simulate.
Since the model simulates if team 1 will win or not win, it’s needed to create some criteria to define a draw. Also, since we have not home advantage at World Cup, the idea is to predict game two times, changing team 1 and team 2. The team with the highest mean of probabilities will be assigned as winner. At the group phase, if “home team” win as team 1 and loses as team 2, or if “home team” win as team 2 and loses at team 1, there will be assigned a draw in that match.
advanced_group = []
last_group = ""
for k in table.keys():
for t in table[k]:
t[1] = 0
t[2] = []
for teams in matches:
draw = False
team_1 = find_stats(teams[1])
team_2 = find_stats(teams[2])
features_g1 = find_features(team_1, team_2)
features_g2 = find_features(team_2, team_1)
probs_g1 = gb.predict_proba([features_g1])
probs_g2 = gb.predict_proba([features_g2])
team_1_prob_g1 = probs_g1[0][0]
team_1_prob_g2 = probs_g2[0][1]
team_2_prob_g1 = probs_g1[0][1]
team_2_prob_g2 = probs_g2[0][0]
team_1_prob = (probs_g1[0][0] + probs_g2[0][1])/2
team_2_prob = (probs_g2[0][0] + probs_g1[0][1])/2
if ((team_1_prob_g1 > team_2_prob_g1) & (team_2_prob_g2 > team_1_prob_g2)) | ((team_1_prob_g1 < team_2_prob_g1) & (team_2_prob_g2 < team_1_prob_g2)):
draw=True
for i in table[teams[0]]:
if i[0] == teams[1] or i[0] == teams[2]:
i[1] += 1
elif team_1_prob > team_2_prob:
winner = teams[1]
winner_proba = team_1_prob
for i in table[teams[0]]:
if i[0] == teams[1]:
i[1] += 3
elif team_2_prob > team_1_prob:
winner = teams[2]
winner_proba = team_2_prob
for i in table[teams[0]]:
if i[0] == teams[2]:
i[1] += 3
for i in table[teams[0]]: #adding criterio de desempate (probs por jogo)
if i[0] == teams[1]:
i[2].append(team_1_prob)
if i[0] == teams[2]:
i[2].append(team_2_prob)
if last_group != teams[0]:
if last_group != "":
print("\n")
print("Group %s advanced: "%(last_group))
for i in table[last_group]: #adding crieterio de desempate
i[2] = np.mean(i[2])
final_points = table[last_group]
final_table = sorted(final_points, key=itemgetter(1, 2), reverse = True)
advanced_group.append([final_table[0][0], final_table[1][0]])
for i in final_table:
print("%s -------- %d"%(i[0], i[1]))
print("\n")
print("-"*10+" Starting Analysis for Group %s "%(teams[0])+"-"*10)
if draw == False:
print("Group %s - %s vs. %s: Winner %s with %.2f probability"%(teams[0], teams[1], teams[2], winner, winner_proba))
else:
print("Group %s - %s vs. %s: Draw"%(teams[0], teams[1], teams[2]))
last_group = teams[0]
print("\n")
print("Group %s advanced: "%(last_group))
for i in table[last_group]: #adding crieterio de desempate
i[2] = np.mean(i[2])
final_points = table[last_group]
final_table = sorted(final_points, key=itemgetter(1, 2), reverse = True)
advanced_group.append([final_table[0][0], final_table[1][0]])
for i in final_table:
print("%s -------- %d"%(i[0], i[1]))
---------- Starting Analysis for Group A ----------
Group A - Qatar vs. Ecuador: Winner Ecuador with 0.67 probability
Group A - Senegal vs. Netherlands: Winner Netherlands with 0.72 probability
Group A - Qatar vs. Senegal: Winner Senegal with 0.65 probability
Group A - Netherlands vs. Ecuador: Winner Netherlands with 0.80 probability
Group A - Ecuador vs. Senegal: Draw
Group A - Netherlands vs. Qatar: Winner Netherlands with 0.82 probability
Group A advanced:
Netherlands -------- 9
Senegal -------- 4
Ecuador -------- 4
Qatar -------- 0
---------- Starting Analysis for Group B ----------
Group B - England vs. Iran: Winner England with 0.72 probability
Group B - United States vs. Wales: Draw
Group B - Wales vs. Iran: Draw
Group B - England vs. United States: Winner England with 0.64 probability
Group B - Wales vs. England: Winner England with 0.74 probability
Group B - Iran vs. United States: Winner United States with 0.64 probability
Group B advanced:
England -------- 9
United States -------- 4
Wales -------- 2
Iran -------- 1
---------- Starting Analysis for Group C ----------
Group C - Argentina vs. Saudi Arabia: Winner Argentina with 0.82 probability
Group C - Mexico vs. Poland: Draw
Group C - Poland vs. Saudi Arabia: Winner Poland with 0.73 probability
Group C - Argentina vs. Mexico: Winner Argentina with 0.65 probability
Group C - Poland vs. Argentina: Winner Argentina with 0.73 probability
Group C - Saudi Arabia vs. Mexico: Winner Mexico with 0.75 probability
Group C advanced:
Argentina -------- 9
Mexico -------- 4
Poland -------- 4
Saudi Arabia -------- 0
---------- Starting Analysis for Group D ----------
Group D - Denmark vs. Tunisia: Winner Denmark with 0.74 probability
Group D - France vs. Australia: Winner France with 0.78 probability
Group D - Tunisia vs. Australia: Draw
Group D - France vs. Denmark: Draw
Group D - Australia vs. Denmark: Winner Denmark with 0.77 probability
Group D - Tunisia vs. France: Winner France with 0.72 probability
Group D advanced:
France -------- 7
Denmark -------- 7
Tunisia -------- 1
Australia -------- 1
---------- Starting Analysis for Group E ----------
Group E - Germany vs. Japan: Winner Germany with 0.70 probability
Group E - Spain vs. Costa Rica: Winner Spain with 0.80 probability
Group E - Japan vs. Costa Rica: Winner Japan with 0.71 probability
Group E - Spain vs. Germany: Draw
Group E - Japan vs. Spain: Winner Spain with 0.70 probability
Group E - Costa Rica vs. Germany: Winner Germany with 0.73 probability
Group E advanced:
Spain -------- 7
Germany -------- 7
Japan -------- 3
Costa Rica -------- 0
---------- Starting Analysis for Group F ----------
Group F - Morocco vs. Croatia: Draw
Group F - Belgium vs. Canada: Winner Belgium with 0.77 probability
Group F - Belgium vs. Morocco: Winner Belgium with 0.74 probability
Group F - Croatia vs. Canada: Draw
Group F - Croatia vs. Belgium: Winner Belgium with 0.69 probability
Group F - Canada vs. Morocco: Draw
Group F advanced:
Belgium -------- 9
Croatia -------- 2
Canada -------- 2
Morocco -------- 2
---------- Starting Analysis for Group G ----------
Group G - Switzerland vs. Cameroon: Winner Switzerland with 0.76 probability
Group G - Brazil vs. Serbia: Winner Brazil with 0.75 probability
Group G - Cameroon vs. Serbia: Winner Serbia with 0.72 probability
Group G - Brazil vs. Switzerland: Winner Brazil with 0.64 probability
Group G - Serbia vs. Switzerland: Winner Switzerland with 0.60 probability
Group G - Cameroon vs. Brazil: Winner Brazil with 0.86 probability
Group G advanced:
Brazil -------- 9
Switzerland -------- 6
Serbia -------- 3
Cameroon -------- 0
---------- Starting Analysis for Group H ----------
Group H - Uruguay vs. South Korea: Winner Uruguay with 0.72 probability
Group H - Portugal vs. Ghana: Winner Portugal with 0.86 probability
Group H - South Korea vs. Ghana: Winner South Korea with 0.82 probability
Group H - Portugal vs. Uruguay: Winner Portugal with 0.65 probability
Group H - Ghana vs. Uruguay: Winner Uruguay with 0.78 probability
Group H - South Korea vs. Portugal: Winner Portugal with 0.72 probability
Group H advanced:
Portugal -------- 9
Uruguay -------- 6
South Korea -------- 3
Ghana -------- 0
The group phase predicted no surprises, or maybe the draw between Brazil and Switzerland or France and Denmark. For the playoffs phase, I’ll predict and show it graphically as made here.
advanced = advanced_groupplayoffs = {"Round of 16": [], "Quarter-Final": [], "Semi-Final": [], "Final": []}for p in playoffs.keys():
playoffs[p] = []
actual_round = ""
next_rounds = []
for p in playoffs.keys():
if p == "Round of 16":
control = []
for a in range(0, len(advanced*2), 1):
if a < len(advanced):
if a % 2 == 0:
control.append((advanced*2)[a][0])
else:
control.append((advanced*2)[a][1])
else:
if a % 2 == 0:
control.append((advanced*2)[a][1])
else:
control.append((advanced*2)[a][0])
playoffs[p] = [[control[c], control[c+1]] for c in range(0, len(control)-1, 1) if c%2 == 0]
for i in range(0, len(playoffs[p]), 1):
game = playoffs[p][i]
home = game[0]
away = game[1]
team_1 = find_stats(home)
team_2 = find_stats(away)
features_g1 = find_features(team_1, team_2)
features_g2 = find_features(team_2, team_1)
probs_g1 = gb.predict_proba([features_g1])
probs_g2 = gb.predict_proba([features_g2])
team_1_prob = (probs_g1[0][0] + probs_g2[0][1])/2
team_2_prob = (probs_g2[0][0] + probs_g1[0][1])/2
if actual_round != p:
print("-"*10)
print("Starting simulation of %s"%(p))
print("-"*10)
print("\n")
if team_1_prob < team_2_prob:
print("%s vs. %s: %s advances with prob %.2f"%(home, away, away, team_2_prob))
next_rounds.append(away)
else:
print("%s vs. %s: %s advances with prob %.2f"%(home, away, home, team_1_prob))
next_rounds.append(home)
game.append([team_1_prob, team_2_prob])
playoffs[p][i] = game
actual_round = p
else:
playoffs[p] = [[next_rounds[c], next_rounds[c+1]] for c in range(0, len(next_rounds)-1, 1) if c%2 == 0]
next_rounds = []
for i in range(0, len(playoffs[p])):
game = playoffs[p][i]
home = game[0]
away = game[1]
team_1 = find_stats(home)
team_2 = find_stats(away)
features_g1 = find_features(team_1, team_2)
features_g2 = find_features(team_2, team_1)
probs_g1 = gb.predict_proba([features_g1])
probs_g2 = gb.predict_proba([features_g2])
team_1_prob = (probs_g1[0][0] + probs_g2[0][1])/2
team_2_prob = (probs_g2[0][0] + probs_g1[0][1])/2
if actual_round != p:
print("-"*10)
print("Starting simulation of %s"%(p))
print("-"*10)
print("\n")
if team_1_prob < team_2_prob:
print("%s vs. %s: %s advances with prob %.2f"%(home, away, away, team_2_prob))
next_rounds.append(away)
else:
print("%s vs. %s: %s advances with prob %.2f"%(home, away, home, team_1_prob))
next_rounds.append(home)
game.append([team_1_prob, team_2_prob])
playoffs[p][i] = game
actual_round = p
----------
Starting simulation of Round of 16
----------
Netherlands vs. United States: Netherlands advances with prob 0.57
Argentina vs. Denmark: Argentina advances with prob 0.63
Spain vs. Croatia: Spain advances with prob 0.62
Brazil vs. Uruguay: Brazil advances with prob 0.73
Senegal vs. England: England advances with prob 0.72
Mexico vs. France: France advances with prob 0.67
Germany vs. Belgium: Belgium advances with prob 0.58
Switzerland vs. Portugal: Portugal advances with prob 0.53
----------
Starting simulation of Quarter-Final
----------
Netherlands vs. Argentina: Argentina advances with prob 0.52
Spain vs. Brazil: Brazil advances with prob 0.54
England vs. France: France advances with prob 0.56
Belgium vs. Portugal: Belgium advances with prob 0.60
----------
Starting simulation of Semi-Final
----------
Argentina vs. Brazil: Argentina advances with prob 0.52
France vs. Belgium: France advances with prob 0.54
----------
Starting simulation of Final
----------
Argentina vs. France: Argentina advances with prob 0.57
import networkx as nx
from networkx.drawing.nx_pydot import graphviz_layoutplt.figure(figsize=(15, 10))
G = nx.balanced_tree(2, 3)
labels = []
for p in playoffs.keys():
for game in playoffs[p]:
label = f"{game[0]}({round(game[2][0], 2)}) \n {game[1]}({round(game[2][1], 2)})"
labels.append(label)
labels_dict = {}
labels_rev = list(reversed(labels))
for l in range(len(list(G.nodes))):
labels_dict[l] = labels_rev[l]
pos = graphviz_layout(G, prog='twopi')
labels_pos = {n: (k[0], k[1]-0.08*k[1]) for n,k in pos.items()}
center = pd.DataFrame(pos).mean(axis=1).mean()
nx.draw(G, pos = pos, with_labels=False, node_color=range(15), edge_color="#bbf5bb", width=10, font_weight='bold',cmap=plt.cm.Greens, node_size=5000)
nx.draw_networkx_labels(G, pos = labels_pos, bbox=dict(boxstyle="round,pad=0.3", fc="white", ec="black", lw=.5, alpha=1),
labels=labels_dict)
texts = ["Round \nof 16", "Quarter \n Final", "Semi \n Final", "Final\n"]
pos_y = pos[0][1] + 55
for text in reversed(texts):
pos_x = center
pos_y -= 75
plt.text(pos_y, pos_x, text, fontsize = 18)
plt.axis('equal')
plt.show()FileNotFoundError: [WinError 2] "twopi" not found in path.
<Figure size 1500x1000 with 0 Axes>
And that’s the final simulation! Brazil has won the 6th title! Hoping that my predictions are correct now.
It’s nice to analyze too the possible upsets. Belgium passed against Germany, and were defeated by Portugal. Argentina - Netherlands game is very tight, with Netherlands passing by nearly 1%. The same happens between France and England, with England passing. I think England as finalist was the biggest upset of the simulation.
Conclusion
The goal of this was to improve my knowledge with Machine Learning simulating something that I love (Football World Cup). I think that’s amazing to create models that we can see the result in real life, and that’s what is going to happen!
In general, I think that the model predicted like the common sense of people who watch football. There are not huge surprises in the simulation. It’s also nice to see games with teams that are more unkown in group phase, like Iran vs. Wales or Senegal vs. Ecuador. I think that in games like that, the model is a good guidance to betting, since the knowledge of most people second tier national teams is not great.